Search found 6797 matches

by DSguru2B
Fri May 04, 2007 12:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple date format
Replies: 8
Views: 2912

Its not do-able. I would love to be proven wrong. But its not possible. You tell me, what date is "09-05-2006"? Is it "9th of May, 2006" or "5th of September, 2006".
by DSguru2B
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

I guess we both are saying the same thing "half glass empty, half glass full" :)
I was referring to the signed decimal fields. As per ebcdic format files, that might require binary transfer.
by DSguru2B
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 ...
by DSguru2B
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

What is your source? Is it a flat file or a database?
by DSguru2B
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...
by DSguru2B
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

Brad, do you really have to go against the database. dsjob -lprojects run in all the environments, wont work for you?
by DSguru2B
Fri May 04, 2007 10:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple date format
Replies: 8
Views: 2912

What are all the possible formats? Can you provide a list. ICONV with Date option should work for most of them. Thats why I requested for a list of all formats so that the odd one out can be factored in.
by DSguru2B
Fri May 04, 2007 8:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Conversion
Replies: 24
Views: 6450

Is it really showing two digits or the display of that particular column is set to 8 instead of 10?
by DSguru2B
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

For the first, do an exact search on key words "floating point decimal is not fully supported".
And for the second one on "A sequential operator cannot preserve the partitioning of the parallel data set on input port 0"
by DSguru2B
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

That command is to be run from OS command prompt and not from the Administrator.
by DSguru2B
Fri May 04, 2007 7:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Conversion
Replies: 24
Views: 6450

O ok. Always love your "to the point" answers :D
There has to be an explanation for this then. Thats the best that I could come up with.
by DSguru2B
Fri May 04, 2007 7:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: huge RT_LOG
Replies: 8
Views: 6028

If the job got deleted then its RT_LOG should have disappeared too. If your wondering whether you can get it back, then the answer is,
"only from a backup", else its gone.
by DSguru2B
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

Have you tried searching on error messages. I did a quick search and both your error returned results.
by DSguru2B
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.

Code: Select all

SELECT NAME FROM DS_JOBS WHERE JOBNO = 'nnn';
where nnn= your job number
by DSguru2B
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...