Search found 42189 matches
- Fri Dec 24, 2004 9:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequncer Execution
- Replies: 4
- Views: 1218
- Thu Dec 23, 2004 2:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Oracle Time Stamp conversion
- Replies: 2
- Views: 1040
- Thu Dec 23, 2004 10:33 am
- Forum: Site/Forum
- Topic: Problem searching
- Replies: 3
- Views: 2462
Problem searching
Or perhaps I should say I'm having a problem displaying search results and I'm wondering if it's me or not.
I can search and get a list of results, but clicking on a topic gets me a 'The page cannot be displayed' error. Something going on with the site?
I can search and get a list of results, but clicking on a topic gets me a 'The page cannot be displayed' error. Something going on with the site?
- Thu Dec 23, 2004 8:17 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error in executing Datastage job
- Replies: 8
- Views: 6353
- Thu Dec 23, 2004 8:13 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Variable file length when used in Datastage fails
- Replies: 2
- Views: 1336
If you don't care about the data in the file that exceeds your current record length, there is a check-box in the stage to 'Ignore row truncation'. That should stop it from aborting. Other than the columns that Ogmios mentions, you could also try setting your record length large and bringing it in a...
- Thu Dec 23, 2004 8:03 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Use of DSSendMail in Transformer
- Replies: 2
- Views: 1305
- Wed Dec 22, 2004 3:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Numeric Validation
- Replies: 10
- Views: 1803
- Wed Dec 22, 2004 1:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Finding a job
- Replies: 7
- Views: 2128
Check this post for the syntax you are looking for. 
- Wed Dec 22, 2004 11:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Numeric Validation
- Replies: 10
- Views: 1803
- Wed Dec 22, 2004 10:20 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: oracle date problem
- Replies: 7
- Views: 2236
Assuming that you are using one of the OCI stages to write to your target, you need to know that the OCI stages need Date or Timestamp data in a specific format. You can read the Oracle OCI Technical Bulletin that ships with the product for the gory details, but dates should be in this format: YYYY...
- Wed Dec 22, 2004 10:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Numeric Validation
- Replies: 10
- Views: 1803
- Wed Dec 22, 2004 8:22 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Difference between Insert else Update and Update else insert
- Replies: 4
- Views: 5022
- Tue Dec 21, 2004 6:09 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: UNIX sort on multiple keys
- Replies: 8
- Views: 2384
That's an interesting thought. In essence, build a 'sort key' - a single concatenated field strictly for the sort process to use that could be pitched after that. As you said, one would have to make sure the fields that make up the key are formatted appropriately. Certainly an option to keep in mind.
- Tue Dec 21, 2004 2:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: UNIX sort on multiple keys
- Replies: 8
- Views: 2384
I've done that in the past, using two files and all. Nowadays, it's pretty cool to use the Filter option in the Sequential stage to do the sorting 'on the fly' and not need the second file. The output of the sort command goes to Standard Out and the stage picks that up and processes it just as if it...
- Tue Dec 21, 2004 11:54 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: UNIX sort on multiple keys
- Replies: 8
- Views: 2384
UNIX sort on multiple keys
Looking for a little syntax help for a Filter command I am using in a Sequential File stage... I am dropping a delimited file to disk in order to leverage the UNIX sort command rather than the Sort plugin as it can be orders of magnitude faster. It's fairly simply when sorting on character fields, a...