Search found 15603 matches
- Tue Mar 14, 2006 10:36 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Can dsjob be copied and ran remotely?
- Replies: 2
- Views: 793
- Tue Mar 14, 2006 9:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: reject file from oracle target
- Replies: 11
- Views: 2346
Mirja, in a transform stage that writes out to your table, put another output link for your rejects and reject handling. You have stage values for DBMSCODE, LASTERROR, REJECTED, REJECTEDCODE, SQLSTATE to choose from. This at least lets you identify the errors and separate them out. What exactly do y...
- Tue Mar 14, 2006 8:16 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: some of the warnings that we suppress and are not harmful
- Replies: 9
- Views: 1581
You mean like "Character string truncation" warnings? (this is a harmful one) or "Warning: column name does not match SQL name!" (which might be harmful)? You can enter TCL or use the ADMIN tool and do a "SELECT * FROM DS_RESENU;" (or "LIST DS_RESENU" for non-sql type query) to get a list of the mes...
- Tue Mar 14, 2006 7:57 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: some of the warnings that we suppress and are not harmful
- Replies: 9
- Views: 1581
- Tue Mar 14, 2006 1:47 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unable to run DS job with new executables
- Replies: 7
- Views: 1569
- Mon Mar 13, 2006 1:47 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Lookup warning
- Replies: 4
- Views: 1275
- Mon Mar 13, 2006 9:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: when using DB2 UDB records are dropped No warnings
- Replies: 13
- Views: 3768
- Mon Mar 13, 2006 9:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: REG : Writing Logs From Director to Sequential File
- Replies: 11
- Views: 4634
- Mon Mar 13, 2006 9:06 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: REG : Writing Logs From Director to Sequential File
- Replies: 11
- Views: 4634
I started to put a shell program together and then realized that certainly this has already been described - click here to the get FAQ answer to your question.
- Mon Mar 13, 2006 8:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: REG : Writing Logs From Director to Sequential File
- Replies: 11
- Views: 4634
Vinod, unless you are using DSXchange from your telephone or other PDA without a full keyboard, I would be very appreciative if you could write It would be great if you could help me out on this... Thanks for your prompt reply instead of It wld be gr8 if u cld help me out on this... Thnx 4 ur prompt...
- Mon Mar 13, 2006 8:35 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: REG : Writing Logs From Director to Sequential File
- Replies: 11
- Views: 4634
Vindodand, I assume you mean "let me know" when you posted "lemme knw". There are two main ways to do this and both involve a bit of work. If you like shell or batch programming then you can use the "dsjob" executable to get a list of jobs in the project and then list out their log file contents, yo...
- Mon Mar 13, 2006 7:33 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: TIme out message while calling a job
- Replies: 6
- Views: 2417
- Mon Mar 13, 2006 6:12 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Is it possible to read Excel files from routine
- Replies: 2
- Views: 874
No, it is not. The excel format needs to be parsed. Either create a .csv (comma separated variable) file from the Excel sheet(s) or declare the Excel as an ODBC data source and use the ODBC stage to read it; this will only work on Windows server DataStage. On UNIX your option is only to create a tex...
- Mon Mar 13, 2006 4:24 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Round Robin method in Link Partitioner
- Replies: 5
- Views: 923
The basic concept is the same in server as it is in parallel. The random method will use the system's internal pseudo-random number generator to give a good distribution. A sample of 12 records is too small, if you had 1000 records you would most likely get a relatively even distribution, the higher...
- Mon Mar 13, 2006 3:54 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Warning during execution of StringToDecimal Function
- Replies: 20
- Views: 8455
Trim also works for Char... Kumar, what does TRIM() on a CHAR(10) field containing "hello " return? For a char field Len(Trim(field_name)) will return the count without whitspace. Kumar, doing a "LEN(<char field>)" does an implicit conversion to VarChar, which is why it works. A Char column has no ...