Search found 53125 matches
- Wed Dec 13, 2006 2:42 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Calling subroutine on a different machine
- Replies: 2
- Views: 890
You can not do it that way (Q pointers). DataStage and UniVerse are separate products, and their compiled code is incompatible - even though they can compile the same source code successfully the magic number in the header of the object code is different. So if you were to compile in DataStage the s...
- Wed Dec 13, 2006 2:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: FTP a file using FTP Stage from Windows to Mainframes
- Replies: 2
- Views: 978
Learn patience. Transferring 1GB via FTP is NOT going to happen in a couple of seconds. Like Craig, I'd suggest using a Sequential File stage to write the file to disk locally at the DataStage server, and an FTP script (BAT file) from there. The FTP stage streams data straight into the transfer, and...
- Wed Dec 13, 2006 2:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DS User Name
- Replies: 2
- Views: 1091
- Wed Dec 13, 2006 1:25 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Can We calculate the no. of Alpha Char. in a string
- Replies: 6
- Views: 2570
You don't need to count them to validate that only the appropriate types are in the string. Alpha() will work on the entire string, returning 1 if every character in the string is alphabetic. The easiest way to test for a set of valid characters is to convert them all to "" then test the length of t...
- Wed Dec 13, 2006 1:20 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: ExecSH using after-job subroutine
- Replies: 6
- Views: 3664
To run ExecSH itself as the after-job subroutine, simply put the command line argument after the command pathname in the Input Values field. To call ExecSH from your own routine you need simply add the command line argument to the command line issued. If you mean "job parameter" here, rather than co...
- Wed Dec 13, 2006 1:16 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Db2 Bulk Load (TEMP_FILE) Error
- Replies: 9
- Views: 9233
- Wed Dec 13, 2006 1:12 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to count the number of delimiters in a reord
- Replies: 14
- Views: 9213
- Wed Dec 13, 2006 1:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Partitioner Stage outputs zeros
- Replies: 8
- Views: 2491
- Wed Dec 13, 2006 1:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job returns different values for the same query
- Replies: 13
- Views: 3298
You are going to need to debug it systematically. Are the correct and consistent number of rows being extracted from source? If not, then whether you have zero or 100 lookups is irrelevant; you are going to have to solve this issue first. Then start adding lookups one at a time, and observing the be...
- Wed Dec 13, 2006 1:05 am
- Forum: General
- Topic: What is the best way to truncate source table.
- Replies: 5
- Views: 2223
One possible reason is looking ahead to the day when/if it's converted to a parallel job, in which it is not possible to do it in the same job. Another reason is philosophical - the original requirement specified "after" - having separate jobs makes it easy to make this "after" relationship obvious ...
- Wed Dec 13, 2006 1:03 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Stages in Enterprise Edition
- Replies: 3
- Views: 1143
- Tue Dec 12, 2006 10:15 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Db2 Bulk Load (TEMP_FILE) Error
- Replies: 9
- Views: 9233
- Tue Dec 12, 2006 10:15 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: not able to use load method
- Replies: 9
- Views: 4008
- Tue Dec 12, 2006 10:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Calling Script from DS Routine
- Replies: 2
- Views: 1043
Yes.
The first two arguments are input, the final two are output. Output is any output from the script, ExitStatus is the exit status of the script.
Code: Select all
Call DSExecute("UNIX", path_of_script, Output, ExitStatus)The first two arguments are input, the final two are output. Output is any output from the script, ExitStatus is the exit status of the script.
- Tue Dec 12, 2006 10:11 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSJobReportDb
- Replies: 9
- Views: 1527