Search found 42189 matches

by chulett
Wed Apr 16, 2008 9:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invoking DS jobs real-time
Replies: 8
Views: 1557

You'd need a user you could ssh to on the DataStage server, yes. Or something equivalent.
by chulett
Wed Apr 16, 2008 9:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence execution contrl based on file data value
Replies: 14
Views: 3650

Check what I posted and what you implemented - they ain't the same.
by chulett
Wed Apr 16, 2008 8:45 am
Forum: General
Topic: ds job stats
Replies: 10
Views: 2303

ETLStats. 'Nuff said.
by chulett
Wed Apr 16, 2008 8:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invoking DS jobs real-time
Replies: 8
Views: 1557

Remote system triggers job, dsjob or API. UNIX script polls for files and launches job. Looping Sequence job with Wait For File or scripted poll. All kinds of ways.
by chulett
Wed Apr 16, 2008 7:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: oracle decimal issue
Replies: 3
Views: 1874

I got 22 matches doing an Exact search for "Possible range/precision limitation", how are you "unable" to do the same? :?
by chulett
Wed Apr 16, 2008 7:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Audit information of DS Jobs
Replies: 2
Views: 788

Search the forums for discussions of the DS_AUDIT table.
by chulett
Wed Apr 16, 2008 7:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Execution of API Calls from DS Admin Command line
Replies: 4
Views: 1658

Read the Command Line Interface chapter in either Developer's Guide, you'll find both 'dsjob' and the internal API documented there.
by chulett
Tue Apr 15, 2008 10:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle Bulk Load stage
Replies: 6
Views: 1962

Neither the 'manual' or 'automatic' options in the Bulk stage require the Oracle database to be co-resident with DataStage, in spite of what the docs say. Nor does sqlldr.
by chulett
Tue Apr 15, 2008 5:26 pm
Forum: General
Topic: Counting number of records in Hashed File
Replies: 4
Views: 1746

Oh, and welcome to the Dark Side AJ. :P
by chulett
Tue Apr 15, 2008 1:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: capture -jobinfo result in windows batch
Replies: 4
Views: 1609

What exact information are you looking for? Just to know if the job is aborted? I use grep for that in a shell script, something like this: eCount=`grep '(3)' /tmp/dsjob$$.out |wc -l` if [ $eCount -eq 1 ] ;then echo "Job is aborted and must be reset..." <run reset> I just have no c...
by chulett
Tue Apr 15, 2008 12:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: capture -jobinfo result in windows batch
Replies: 4
Views: 1609

For UNIX, sure. Under Windows? Nope, sorry, my DOS days are well and truly behind me.
by chulett
Tue Apr 15, 2008 12:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: filter command in sequentiak file stage
Replies: 3
Views: 1224

Re: filter command in sequentiak file stage

mail2hfz wrote:I used wc -l aud_d_*...it throws error..Cant we use * to read multiple file using filter command..please advice

No. While I believe you should be able to, it doesn't seem to work.
by chulett
Tue Apr 15, 2008 10:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: capture -jobinfo result in windows batch
Replies: 4
Views: 1609

Redirect the output to a file, then check the file.
by chulett
Tue Apr 15, 2008 10:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence execution contrl based on file data value
Replies: 14
Views: 3650

Output like that is returned in a dynamic array, so you need to either remove any Field Marks (@FM) or just reference the first element. Try:

Code: Select all

UpCase(trim(Execute_Command_16.$CommandOutput<1>)) = 'XML' 

For example.
by chulett
Tue Apr 15, 2008 9:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence execution contrl based on file data value
Replies: 14
Views: 3650

Parallel routine? Nope, not my bag baby. However, you don't need one - just some piped OS commands using DSExecute will work: "head -1" and "cut" for example.