Search found 53125 matches
- Mon Oct 17, 2005 7:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to Capture the SQL Code?
- Replies: 10
- Views: 2881
SQLSTATE is specific to ODBC. Use DBMSCODE if you want the error code generated by DB2/UDB, and use LASTERR if you want the text associated with that code. Remember to specify the link that connects to DB2 when selecting these link variables in your design - not the link that connects to the rejects...
- Mon Oct 17, 2005 7:40 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Abort the job when source file is empty in FTP
- Replies: 5
- Views: 1597
- Mon Oct 17, 2005 7:38 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: $CommandOutput
- Replies: 13
- Views: 7182
- Mon Oct 17, 2005 4:30 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: multi record processing
- Replies: 6
- Views: 1450
In DataStage you draw a picture of what you want to happen. lookup | | V source ---> transformer ---> target | | V rejects Each word represents a "stage". Then you edit each stage to fill in the details, for example which file is the source, what its format is, and so on. Your lookup will probably n...
- Mon Oct 17, 2005 4:19 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Merge Stage
- Replies: 4
- Views: 965
Run the job in the Debugger. Set a breakpoint on the output link. Edit the breakpoint so that the expression is
Code: Select all
IsNull(ODS_GENERAL_LEDGER_KEY)- Mon Oct 17, 2005 4:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: dsjob not showing the same status as Director
- Replies: 4
- Views: 1970
Put some diagnostic DSLogInfo calls into the code to figure out whether any of it gets executed. I think you will find that it doesn't even get that far. Copy the job control code from the job sequence and paste it onto the job control tab of a new server job, and add diagnostic calls in that also. ...
- Mon Oct 17, 2005 4:11 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Clear the contents of a Hash file.
- Replies: 11
- Views: 2906
- Mon Oct 17, 2005 4:09 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Diff between server Job Parallel Job
- Replies: 30
- Views: 9759
- Mon Oct 17, 2005 4:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Multi Format Flatfile
- Replies: 9
- Views: 3744
Welcome aboard! :D That behaviour usually only occurs where there is an OCCURS clause in the file definition. Can you check the FD manually to determine whether there is an OCCURS clause? You might also inspect (or even post) the generated COBOL code to try to ascertain why these repeats are occurri...
- Mon Oct 17, 2005 4:03 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Abort the job when source file is empty in FTP
- Replies: 5
- Views: 1597
- Mon Oct 17, 2005 3:59 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: $CommandOutput
- Replies: 13
- Views: 7182
- Mon Oct 17, 2005 3:57 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: runlocally()
- Replies: 6
- Views: 1941
It may be - and I'm guessing here - that the XML stage you've used is limited to 2GB and the file is actually slightly larger. The error message indicates that the process failed to reach end-of-file. If, for example, the XML stage had been written with a signed 32-bit offset pointer, it could not r...
- Mon Oct 17, 2005 3:53 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Effective partition type for sorted input in Transformer
- Replies: 22
- Views: 7915
Partitioning is completely irrelevant for output links. Partitioning (and, perhaps, sorting) is relevant on input links. If you're writing to a sequential file, it must run in sequential mode. If you don't need to sort, don't. You don't need to sort to write rows into a sequential file, unless the c...
- Mon Oct 17, 2005 3:49 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Parallel Extraction - non-collocated joins
- Replies: 3
- Views: 1073
Can't be done unless the data are partitioned on the join key(s) using the same partitioning algorithm or the Entire partitioning algorithm for the probe table. Otherwise you can't be certain that you will find the row in the probe table on the partition where the driver row exists. Given that the p...
- Mon Oct 17, 2005 12:37 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Incremental loading in PX
- Replies: 1
- Views: 721
Based on your assertion that there is no suitable stage type it appears that you will need to create your own stage. Read the chapter on custom stages in the Parallel Job Developer's Guide. Come along to the Server to Parallel Transition class immediately following II LIVE in Las Vegas. Sounds like ...