Search found 42189 matches

by chulett
Tue May 03, 2011 6:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data string does not match format error???
Replies: 5
Views: 6782

In other words, the mask much match the incoming data so it knows how to parse it, not what you think the output should be.
by chulett
Tue May 03, 2011 6:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: current date () - 6 months
Replies: 17
Views: 6812

You can't simply drop the month value by six without regard for the day.
by chulett
Tue May 03, 2011 6:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Variables DSWaitStartup and DSWaitResetStartup
Replies: 4
Views: 3427

My understanding is those values are not user editable but would require a 'patch' from IBM to change them. As Ray noted, however, you are much better off treating the disease rather than the symptom.
by chulett
Tue May 03, 2011 6:18 am
Forum: General
Topic: Extracting files from unix
Replies: 24
Views: 6198

I guess we'll see... hopefully by now they've got it sorted out, however. :wink:
by chulett
Mon May 02, 2011 5:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Quick question on querying DS_JOBS table
Replies: 17
Views: 13434

greggknight wrote:I run this code in a batch job.
That looks like KBA code to me... and I've always wondered how much of the things like that people have done "under the covers" would still work in the 8.x world.
by chulett
Mon May 02, 2011 7:33 am
Forum: General
Topic: ERROR Unable to open the Job
Replies: 8
Views: 8599

I'd start with this message and your DBA:

[IBM][SQLServer JDBC Driver][SQLServer]The transaction log for database 'XMeta' is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases
by chulett
Mon May 02, 2011 7:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DEFFUN error
Replies: 13
Views: 4683

I don't see what the error you posted has to do with the code you posted before that. Post the entire code for this 'RunNumber' routine.
by chulett
Mon May 02, 2011 7:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DEFFUN error
Replies: 13
Views: 4683

ray.wurlod wrote:This really belongs in a different thread.
Done. Nagac, please start threads properly rather than jumping on things you stumble across while searching.
by chulett
Sun May 01, 2011 10:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job hangs intermediately
Replies: 10
Views: 3535

A stop or 'hang' usually means a blocking lock, have your DBA trace the sessions. Another test - run on a single node.
by chulett
Sun May 01, 2011 4:45 pm
Forum: General
Topic: Execution sequence number
Replies: 12
Views: 5301

You need to decide on the approach that works for you. And since we're talking about something that happens once per job run, I don't see that "most efficient" has much play here. Me, I would include a Routine Activity stage in a Sequence that runs one of the "KeyMgtGetNextValue"...
by chulett
Sun May 01, 2011 9:09 am
Forum: General
Topic: Execution sequence number
Replies: 12
Views: 5301

Sure. More than one way to skin that cat.
by chulett
Sun May 01, 2011 6:35 am
Forum: General
Topic: Execution sequence number
Replies: 12
Views: 5301

Checkpoints.
by chulett
Sat Apr 30, 2011 6:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CONFIG_FILE
Replies: 8
Views: 3922

It's been discussed here before, so other posts should have additional information. Biggest thing to take away is that 'node' in the config file is more akin to 'thread' than machine or CPU.
by chulett
Sat Apr 30, 2011 6:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read Rejected Rows and Format the Rows
Replies: 3
Views: 2204

There's no "reject reason" recorded so (AFAIK) this is strictly a manual process. Compare the rejected rows to the metadata you've defined in the stage to see which fields have data that do not fit their metadata, for example a date column with an invalid date in it. If you want them proce...