Search found 6797 matches
- Fri May 04, 2007 12:54 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Multiple date format
- Replies: 8
- Views: 2912
- Fri May 04, 2007 12:52 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Mainframe and Datastge
- Replies: 7
- Views: 1799
- Fri May 04, 2007 10:57 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Mainframe and Datastge
- Replies: 7
- Views: 1799
I beg to differ. The signed decimal fields from mainframe have their last byte the "sign deciding byte". It might look like junk but its actually not. I have done this before. The file is NDM'd in ascii format so that the ftp does the right switch between mainframe and unix file formats. As for the ...
- Fri May 04, 2007 10:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reg. Sort command in Windows
- Replies: 8
- Views: 2219
- Fri May 04, 2007 10:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Multiple date format
- Replies: 8
- Views: 2912
You will have to request for a consistent format. This is going to be a challenge as per programming. For example, how can you tell which part is day and which part is month in "01/01/2004". It could be either DD/MM/YYYY or MM/DD/YYYY. You will have to either ask for a consistent date format per dat...
- Fri May 04, 2007 10:23 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Querying DS database for a master list of projects
- Replies: 2
- Views: 486
- Fri May 04, 2007 10:19 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Multiple date format
- Replies: 8
- Views: 2912
- Fri May 04, 2007 8:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date Conversion
- Replies: 24
- Views: 6450
- Fri May 04, 2007 8:26 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Warning messages
- Replies: 3
- Views: 706
- Fri May 04, 2007 8:02 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Verb not present in VOC
- Replies: 3
- Views: 1475
- Fri May 04, 2007 7:29 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date Conversion
- Replies: 24
- Views: 6450
- Fri May 04, 2007 7:28 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: huge RT_LOG
- Replies: 8
- Views: 6028
- Fri May 04, 2007 7:21 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Warning messages
- Replies: 3
- Views: 706
- Fri May 04, 2007 7:19 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: huge RT_LOG
- Replies: 8
- Views: 6028
RT_LOG will be suffixed by a three digit number. Use that number to find what job it is (use the below query in the Administrator) and then go clear that jobs log from the director.
where nnn= your job number
Code: Select all
SELECT NAME FROM DS_JOBS WHERE JOBNO = 'nnn';
- Fri May 04, 2007 7:10 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Command Stage Help
- Replies: 3
- Views: 752
Did you try to get your script running from command line first? If it does not work outside datastage, it will certainly not from within datastage. Get some scripting help if you have to, a lot of resources present on the web. Once it works from command prompt, call it from datastage. It will work t...