Search found 5168 matches

by kumar_s
Fri Mar 02, 2007 8:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Status of DS JObs
Replies: 18
Views: 7804

The above information is available in "dsjob -jobinfo" as well as Job Status .
by kumar_s
Fri Mar 02, 2007 8:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: export jobs from unix
Replies: 8
Views: 2642

DSguru2B wrote:That's one hilarious statement by kumar. Can't stop laughing...

No, its actually a hilarious delivery from Ray. Because my original post was not intentional, its typo. :lol:
by kumar_s
Fri Mar 02, 2007 8:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extracting data from a File in the Mainframe system
Replies: 8
Views: 2505

You need to compromise either of the one. FTP stage is not tuned to read mainframe files. Atleast as far as I have seen, it doesn't support all the functionality available in CFF stage. So either you need to transfer the whole file into Datastage and read it using CFF and apply you rules, or you nee...
by kumar_s
Fri Mar 02, 2007 8:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: string splitting
Replies: 15
Views: 3978

Yup... it will be certainly efficient. I had a different approach when started, but ended with this. Suresh, try using this Stage variable : vCount = Dcount(Input.Field,' ') vField2 = Field(Input.field,' ',2) Use the following derivation for each column. Firstname : Field(Input.f...
by kumar_s
Fri Mar 02, 2007 8:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Engine brought up but don't brought up
Replies: 9
Views: 4794

Its complaining "User name and/or password incorrect"
If its problem with client, check if you can loging into the UV account from your server.
cd `cat /.dshome`
. ./dsenv
/bin/uv
This should give you the ">" UV prompt.
by kumar_s
Fri Mar 02, 2007 8:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Info in an job about SAP BAPI stage
Replies: 7
Views: 3253

Generally there wont be any problem during reading a data. Because datastage can read only to its possible extend. As you say, if it may be due to writing the data to SAP, you can do a test, by eliminating the stage and replace by an sequential file.
by kumar_s
Fri Mar 02, 2007 4:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help on dsexport
Replies: 40
Views: 15946

That may be helpful. But not to Andal after an year. :wink:
by kumar_s
Fri Mar 02, 2007 4:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Improper data type
Replies: 10
Views: 3563

Could you locate "Line 265" in what? Was there any job no given in at any place?
by kumar_s
Fri Mar 02, 2007 3:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Improper data type
Replies: 10
Views: 3563

What if you comment that assignment line and compile?
by kumar_s
Fri Mar 02, 2007 3:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extracting data from a File in the Mainframe system
Replies: 8
Views: 2505

USS deployment in Mainframe server will improve performance.
Or ConnectDirect as mentioned in this post
by kumar_s
Fri Mar 02, 2007 3:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Info in an job about SAP BAPI stage
Replies: 7
Views: 3253

Hi Loucas, Welcome to Dsxchange :D !!! Is it every time when you try to use more data, you job aborts? Try to reset you job and check if it gives any more details in "From Previous run...()" log entry. Or log int to RT_BP113 folder available in your project folder, and look at the lines around 70 to...
by kumar_s
Fri Mar 02, 2007 3:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: string splitting
Replies: 15
Views: 3978

In transformer, Stage variable : vCount = Dcount(Input.Field,' ') Use the following derivation for each column. Firstname : Field(Input.field,' ',1) MiddleName : If vCount > 1 Then Field(Input.field,' ',2) Else '' LastName : If vCount > 1 Then Field(Input.field,' ',3)...
by kumar_s
Fri Mar 02, 2007 3:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: string splitting
Replies: 15
Views: 3978

There are several ways, but what is the logic on the second record?
Either "donald " goes to middle name or last name??
by kumar_s
Fri Mar 02, 2007 3:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: alias Id for Job Name
Replies: 2
Views: 1017

Where ever you find "job|job_id", alias can be used, example dsjob -jobinfo can be used to get the latest info about the job using alais.
by kumar_s
Fri Mar 02, 2007 3:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Status of DS JObs
Replies: 18
Views: 7804

dsjob -log is used to log the information rather retrieving information.