Search found 53125 matches
- Thu Apr 20, 2006 4:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: calling oracle SP which returns ref.cursor using STP
- Replies: 14
- Views: 7804
- Thu Apr 20, 2006 4:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Link Partitioner, Link Collector satges
- Replies: 3
- Views: 1153
- Thu Apr 20, 2006 4:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: dssmtpmail.exe
- Replies: 5
- Views: 1599
- Thu Apr 20, 2006 4:39 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Iconv internal date format after migration v7.5
- Replies: 6
- Views: 1859
If you have NLS installed and enabled you set your default date format in the TIME locale category. If you do not have NLS installed, or if it is installed but not enabled, then the default date format is set at field LOC0020 in a file called msg.text in the Engine (or DSEngine) directory. Alternate...
- Thu Apr 20, 2006 4:36 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Validating a Job
- Replies: 3
- Views: 852
- Thu Apr 20, 2006 4:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: RenameAllJobs - Easy ?
- Replies: 22
- Views: 5265
- Thu Apr 20, 2006 4:34 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Virtual Memory Warning
- Replies: 2
- Views: 1294
- Thu Apr 20, 2006 4:32 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: aborting jobs when data source empty
- Replies: 13
- Views: 3183
kumar_s wrote:Iam still thinking a way to capture the file size (alone) from dos prompt.
Code: Select all
test -z $filenameYou have MKS Toolkit installed, so you have the test command. This can also be used in an if construct in a shell script using square brackets.
Code: Select all
if [ -z $filename ] ...- Thu Apr 20, 2006 4:26 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Performance issue with pivot stage
- Replies: 3
- Views: 1141
- Thu Apr 20, 2006 5:47 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Type Conversion Using Modify Stage
- Replies: 4
- Views: 2993
There are quite a few errors in this Chapter. For example it gives the Transformer stage function for null handling rather than the Modify stage function. There are also errors of omission, such as the fix_zero option for decimal numbers. Be very, very careful. Check anything you propose to do with ...
- Thu Apr 20, 2006 5:43 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: UniVerse Databse
- Replies: 2
- Views: 786
Welcome aboard. :D In the Manager client select the table definition then click on the Usage Analysis tool (it looks like a chemist's beaker). Provided you've been professional about metadata management - never changing table definitions in jobs after you've loaded them - this should show all the jo...
- Thu Apr 20, 2006 5:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Compilation problem
- Replies: 8
- Views: 1518
- Thu Apr 20, 2006 5:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: RenameAllJobs - Easy ?
- Replies: 22
- Views: 5265
It's still an easy change with SQL, even though you need a pair of UPDATE statements per job. You could use inline prompting to create a stored procedure (paragraph, that is) to effect the change for one job, and another that looped through all jobs. PA * <<I2,Old Name>> UPDATE DSJOBS SET NAME = 'pr...
- Thu Apr 20, 2006 5:32 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Phantom Job error with multiple instance
- Replies: 9
- Views: 2340
I too have been programming in this language since the early 1980's and have always used READSEQ in this fashion. It is not used as a function. One is using the "Boolean context" of READSEQ - the same context that drives the THEN/ELSE decision can also be used to drive the WHILE decision. It is perf...
- Thu Apr 20, 2006 5:23 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: aborting jobs when data source empty
- Replies: 13
- Views: 3183
Yes, but prefer to issue a warning (UtilityWarningToLog routine) and exit (Terminator activity) rather than to abort. Create a small job that selects COUNT(*) from source into a text file, then read this text file (Execute Command activity) then, depending on the result, either continue with regular...