Search found 15603 matches
- Wed Jul 25, 2007 7:34 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Archiving DataStage PX DataSets
- Replies: 6
- Views: 3937
- Wed Jul 25, 2007 7:26 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Maximum Number of Lookups in single transformer
- Replies: 4
- Views: 1098
There is no particular reason for '7' references. What I will do with a particularly complex transform stage on a multi-cpu system is monitor the %CPU of that tranform stage. If it is close to 100% then the job can be made somewhat faster by splitting into 2 transforms stages (assuming interprocess ...
- Wed Jul 25, 2007 7:15 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Records Getting dropped
- Replies: 9
- Views: 1802
- Wed Jul 25, 2007 7:10 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Export XML
- Replies: 9
- Views: 2356
I played around earlier at work and couldn't find a way to do it. You might try to take a look at the dscmdexport.exe in your favorite binary editor and find the constants section and search that for a possible command line option for xml. Failing that, I'd go through your support provider and see i...
- Wed Jul 25, 2007 6:35 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Records Getting dropped
- Replies: 9
- Views: 1802
- Wed Jul 25, 2007 1:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Handling multiple commands inside FilterCommand in Seq File?
- Replies: 15
- Views: 5653
- Wed Jul 25, 2007 1:36 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Convert 'YYYY-MM-DD hh:nn:ss' format to 'YYYY-MON-DD' in PX
- Replies: 10
- Views: 5179
- Wed Jul 25, 2007 1:27 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Convert 'YYYY-MM-DD hh:nn:ss' format to 'YYYY-MON-DD' in PX
- Replies: 10
- Views: 5179
No, there is no single function call which will do this, which is why Maveric proposed his solution. You can get the month number then do a single to get the month string.
Code: Select all
FIELD('JAN,FEB,MAR,APR,MAY,JUN,JUL,AUG,SEP,OCT,NOV,DEC',',',{month number})- Wed Jul 25, 2007 12:13 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Failed to open project - Status code 81015
- Replies: 13
- Views: 6566
- Tue Jul 24, 2007 11:24 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Failed to open project - Status code 81015
- Replies: 13
- Views: 6566
- Tue Jul 24, 2007 11:06 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Failed to open project - Status code 81015
- Replies: 13
- Views: 6566
- Tue Jul 24, 2007 10:35 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Failed to open project - Status code 81015
- Replies: 13
- Views: 6566
- Tue Jul 24, 2007 10:26 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Failed to open project - Status code 81015
- Replies: 13
- Views: 6566
- Tue Jul 24, 2007 10:12 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Pick up new files only
- Replies: 6
- Views: 1399
Gomez - you will need to produce some code to do this logic. There are many different ways in which people have done this. If you can modify the files in that directory once you have picked them up (i.e. chmod to remove read access) you can use simple UNIX commands to select only those with appropri...
- Tue Jul 24, 2007 10:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Saving xls in Pipe delimited format
- Replies: 4
- Views: 3611
If you do a "save as csv" in Excel you will get a comma separated file, and any columns that contain embedded commas will be double-quoted; so you will get a well-formed CSV file. You can read that in DataStage without a problem. Could you explain ...I tried to change the ',' in the file to "|" but ...