Search found 42189 matches
- Wed Oct 12, 2005 7:18 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Conversion of date from (Mon dd yyyy hh:mmAM) to (dd-mon-yyy
- Replies: 18
- Views: 5773
What do you mean by 'work with the sql being generated'? You've done the right thing in my book - treat the Oracle DATE field as a Timestamp datatype and format what you received into what Oracle was expecting. I wouldn't go switching to user defined sql or anything. And handling the two pieces (dat...
- Wed Oct 12, 2005 7:12 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: unable to connect
- Replies: 4
- Views: 1122
Well... the first thing to check would be the problem it suggested - is the RPC 'daemon' running on your server? Less certain on a Windows server but it would be running as a service there and you'd need to see if it shows as Started. Assuming, of course, that you cannot connect at all - not just ha...
- Tue Oct 11, 2005 9:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Sequencer Problem
- Replies: 11
- Views: 5798
Drop a Sequence object on the canvas and set it to 'Any'. Drag a new (second) link from each of your Job Activity stages to the Sequence. Change the trigger value in each to 'Otherwise' - this will catch any other status other than 'Finished Ok'. From the Sequence, run a link to a Routine Activity s...
- Tue Oct 11, 2005 8:38 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Sequencer Problem
- Replies: 11
- Views: 5798
Actually, this is a very typical problem people run into when first having Sequencers running sequencers. You see, S3 hasn't failed - one of the jobs S3 was responsible for running failed. S3 finished without error - and that's the crux of your problem. A child Sequencer needs to propogate any error...
- Tue Oct 11, 2005 9:32 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routine to validate US State Codes
- Replies: 9
- Views: 1829
- Tue Oct 11, 2005 9:31 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: make changes to a shared container
- Replies: 8
- Views: 2963
- Tue Oct 11, 2005 9:25 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Scheduling Sequencer
- Replies: 13
- Views: 3158
- Tue Oct 11, 2005 9:09 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routine to validate US State Codes
- Replies: 9
- Views: 1829
- Tue Oct 11, 2005 8:55 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routine to validate US State Codes
- Replies: 9
- Views: 1829
- Tue Oct 11, 2005 7:19 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Fixed width columns (Non Delimited file)
- Replies: 8
- Views: 1802
- Tue Oct 11, 2005 6:44 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reusable Job to be used Concurrently
- Replies: 6
- Views: 1602
- Tue Oct 11, 2005 6:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: hash file
- Replies: 6
- Views: 1573
The answer will only be Yes if the hashed misses are actually written back to the hashed file in question. I got the impression that the two hashed stages in the 'diagram' were both lookups: We look up HASH twice . one for update and other for insert. If that's the case, they'll need to add another ...
- Tue Oct 11, 2005 6:35 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Fixed width columns (Non Delimited file)
- Replies: 8
- Views: 1802
Re: Fixed width columns (Non Delimited file)
Also the column lengths are included correctly. As a guess, I would say - no, you didn't. All it takes is one wrong one to hork the whole thing up. The other tidbit - assuming it works the same as the Sequential File stage - is it uses the information in the Display Size column - not the Size size ...
- Mon Oct 10, 2005 8:56 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: $CommandOutput
- Replies: 13
- Views: 7182
Unfortunately, that's the way the Execute Command stage works - and it's confusing as all get out. Your job parameters are translated in everything that it logs, so it looks great there - however, the actual command sent to the O/S doesn't get the parameters translated so it fails. Stupid. You eithe...
- Sun Oct 09, 2005 8:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to rollback transaction?
- Replies: 10
- Views: 2881
No, the key point here is that if you want to rollback the entire transaction, you must make the job abort. Job reset should be handled automatically by your job control, and restart is as easy as it gets in an all-or-nothing load - just run the job again. If there's something in your job design pre...