Search found 5168 matches

by kumar_s
Tue Mar 06, 2007 11:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance Statistics not Showing for Parallel Job
Replies: 24
Views: 5593

Where do you find the disk usage? Are you sure that its not the case again?
Have you tried restarting Job monitor
goto $DSHOME/PXEngine.
and then run
./jobmoninit stop - to stop
./jobmoninit start - to start.
by kumar_s
Tue Mar 06, 2007 11:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORA-12154 Error and Possible Job Corruption
Replies: 17
Views: 5695

What information you pass from sequential file to STP stage?
What other information you get apart from this error?
by kumar_s
Tue Mar 06, 2007 11:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join stage is not giving expected result.
Replies: 17
Views: 4846

Are you sure its sorted and Hash partitioned on the keys and maintained as SAME partition to join stage?
Could you post the list of stages used and the partition used in each stage in the job.
by kumar_s
Tue Mar 06, 2007 11:09 pm
Forum: Site/Forum
Topic: "kumar_s" hits 4000 !!!
Replies: 15
Views: 7622

Thanks for your support guys. :D
by kumar_s
Tue Mar 06, 2007 11:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to export /import jobs from DS using command lines
Replies: 4
Views: 1071

dsjob as server command has -import option but not export.
BTW: why dont you have access to these commands?
by kumar_s
Tue Mar 06, 2007 10:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Checking the Date Modified of a flat file
Replies: 8
Views: 2601

What you execute "ls -l" from Execute command activity?
Else you need to use DIR with the file name, and the output need to be parsed. I dont find any straight fwd simple method as of now.
by kumar_s
Tue Mar 06, 2007 10:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join stage is not giving expected result.
Replies: 17
Views: 4846

What is the output that you have got?
Are they both key are of same datatype and length? Varchar type will make most of the hidden issues resolved.
by kumar_s
Tue Mar 06, 2007 10:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Checking the Date Modified of a flat file
Replies: 8
Views: 2601

If you have MKS tool kit installed, you can use "ls -l" command and grep for the time porting and check if the file is for the current "date", if so you can process it.
You can acheive this using ExecuteCommand Activity stage.
by kumar_s
Tue Mar 06, 2007 10:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataSet against Sequential file
Replies: 2
Views: 778

Yes, dataset has its own conversion algorithm.
And more over the fields like varchar are assigned the full length of its max value. In order to improve the access efficiency. Where as sequential files will have the whitspace truncated.
by kumar_s
Tue Mar 06, 2007 10:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to find the version number of an executable job?
Replies: 2
Views: 926

It is a part of Design information. Not stored in Executables. Perhaps you can find the Timestamp using the dsx file.
May be atleast not a straight fwd method.
by kumar_s
Tue Mar 06, 2007 10:31 pm
Forum: General
Topic: ORAOCIBL STAGE
Replies: 5
Views: 1966

ORAOCI Load stage can be used for both local as well as remote load.
Pls refer the Plug in document.
You need to have the oracle client to be configured in the datastage server to connect the remote Oracle server.
by kumar_s
Tue Mar 06, 2007 10:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup
Replies: 13
Views: 6192

Due to some reason, you were not able to give the full details, or perhaps you were not able to find related to what the is data type and value of data from Lookup as well as from main stream. Let me do that work for you. Let me repharse the structre of your job as, Input is sequential file, with th...
by kumar_s
Tue Mar 06, 2007 9:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup
Replies: 13
Views: 6192

Try StringToTimestamp(DSLink77.B,"%YYYY%MM%DD") and let me know the output of the sequential file.
by kumar_s
Tue Mar 06, 2007 9:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup
Replies: 13
Views: 6192

The function you used to convert is incomplete.
There is no time portion in the given value.
Before let you know that, could you give the value of the lookup data (key)?
by kumar_s
Tue Mar 06, 2007 9:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: exception
Replies: 3
Views: 770

What is the length given to that field while reading?
Is it delimited or fixed width?
In case of delimiter, and if its last column, the data will be truncated.
In that case you can read the data, and use the Len() function to calculate the length in Transformer and reject based on the result.