Search found 6797 matches

by DSguru2B
Tue Dec 19, 2006 4:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling Function From STP stage
Replies: 6
Views: 1545

Call to the stored procedure can be made in the before/after sql tab.
by DSguru2B
Tue Dec 19, 2006 2:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Assigning Job Parameters in a UNIX script
Replies: 29
Views: 8555

Cat them together with a delimiter in between say a hypen (-) and return a single string with all the values you need. Read that and manipulate that within datastage using Field() or someother function.
by DSguru2B
Tue Dec 19, 2006 9:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RE: Date column in DB2
Replies: 16
Views: 3770

Ok, i want you to build a test job for me with three output columns. Read only the date and provide the following derivations for the output columns Col1 | Iconv(in.col, "D-YMD[4,2,2]") Col2 | Iconv(in.col, "D/MDY[2,2,4]") Col3 | in.Col Col3 will be a straight pul...
by DSguru2B
Tue Dec 19, 2006 9:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invoke Job depending upon the Identifier
Replies: 2
Views: 796

Two ways that i can think of at the moment. Job control or via a unix script. Well one more, maybe a server job if you dont mind that. Build a job to dump the table into a file. Read that file in JobControl and Run the jobs you want to depending upon whatever the group value is. Same can be done in ...
by DSguru2B
Tue Dec 19, 2006 9:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with loading sequential file of DB2 table
Replies: 10
Views: 6160

Fix the quote character (not the delimiter) for the entire file, you cant do it for a portion of the file.
by DSguru2B
Tue Dec 19, 2006 8:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RE: Date column in DB2
Replies: 16
Views: 3770

When you view data, how do you see the date, is it in internal format or in MM/DD/YYYY format?
by DSguru2B
Tue Dec 19, 2006 8:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Probelm triggering job via Sequence
Replies: 15
Views: 3608

Craig, even for a before-job activity, doesnt the job start first and then kick off the before job acitivity. It still shows the status as Running even though the before job activity is running.
by DSguru2B
Tue Dec 19, 2006 8:21 am
Forum: General
Topic: Schedule datastage job using command line
Replies: 5
Views: 8718

Hehe.... :P
by DSguru2B
Tue Dec 19, 2006 8:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DATASTAGE ERROR
Replies: 5
Views: 2242

Do an exact search on 'Unexpected termination by Unix signal 10'.
by DSguru2B
Tue Dec 19, 2006 8:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To get count(*) from tables
Replies: 10
Views: 3425

Did i forget to mention ETLStats. :oops:
by DSguru2B
Tue Dec 19, 2006 7:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Seq Status vs Activity Status
Replies: 6
Views: 1204

You can read about their functionality in detail in Designer Guide .
by DSguru2B
Tue Dec 19, 2006 7:53 am
Forum: General
Topic: Commands to be used in the DataStage administrator
Replies: 2
Views: 3691

Commands to be run from DataStage administrator are uv commands. Like LIST.READU (to list all current users logged on and a little more info..) There is no list as such, but any uv command, provided its in your VOCabulary, and provided you have the priviliges to run those commands, you can run it fr...
by DSguru2B
Tue Dec 19, 2006 7:49 am
Forum: General
Topic: need advices to pass job from PX to server
Replies: 5
Views: 2004

IMHO, you need to develop all the jobs as stages are very different for the two engines.
by DSguru2B
Tue Dec 19, 2006 7:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicates while inserting in to target
Replies: 7
Views: 2351

How can you update based on the surrogate key when your generating those as you insert? You need to update based on the natural key. Also, if the surrogate key is the only key column defined, how are you getting duplicates? How many columns have unique indices on them? I am confused :roll:
by DSguru2B
Tue Dec 19, 2006 7:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Seq Status vs Activity Status
Replies: 6
Views: 1204

Go to sequence job properties, under the General tab, check the box that says 'Log Warnings after activities that finish with status other than OK'. This way if any child job finishes with status 2, the parent sequence will also finish with status 2.