Search found 53125 matches

by ray.wurlod
Thu Nov 02, 2006 8:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Seqeunce Trigger Expression
Replies: 7
Views: 2451

Each job activity should have a Custom trigger firing on finished OK or finished with warnings.

Code: Select all

JobA.$JobStatus = DSJS.RUNOK Or JobA.$JobStatus = DSJS.RUNWARN
by ray.wurlod
Thu Nov 02, 2006 8:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Determining Update or Insert New
Replies: 5
Views: 1969

Perform a lookup against the target table. If the row exists it's an update; if the row does not exist it's an insert. You may find it more efficient to perform the lookup against a hashed file containing the keys from the target table.
by ray.wurlod
Thu Nov 02, 2006 8:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence reset
Replies: 12
Views: 3262

No.

You could always create one. More arguments, more variables in a COMMON area.
by ray.wurlod
Thu Nov 02, 2006 8:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD.SEQOpen Failed
Replies: 23
Views: 6775

Execute the following command on the server (not on the client)

Code: Select all

DIR D:\sdp\ps057\infiles.\Mon_Ecscob.csv 
Post the results.
by ray.wurlod
Thu Nov 02, 2006 8:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can I pass the DB name,user id and pwd in Sequencer?
Replies: 8
Views: 1947

Post a picture of the Job tab in the Job activity so we can see exactly what you are attempting.
by ray.wurlod
Thu Nov 02, 2006 8:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PeopleTools Process Scheduler set-up to execute dsjob
Replies: 1
Views: 788

Welcome aboard. :D

Search can be your friend. The command line interface for running DataStage jobs is dsjob
by ray.wurlod
Thu Nov 02, 2006 8:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup or Join or Merge
Replies: 10
Views: 4409

Michael's contribution does hold true in most, if not all, databases. This is usually because common practice is to index foreign key columns.
by ray.wurlod
Thu Nov 02, 2006 8:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handle multiple out links from transformation
Replies: 2
Views: 1020

Congratulations for solving. Now you can mark the post as resolved.
by ray.wurlod
Thu Nov 02, 2006 8:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capturing Rejected Rows in DB2/UDB API stage
Replies: 6
Views: 1836

Search can be your friend. You are not the first to have had this requirement.
by ray.wurlod
Thu Nov 02, 2006 8:18 am
Forum: General
Topic: General- DataStage Help
Replies: 2
Views: 2640

There are no books. The two main web sites for developers are this one and IBM DeveloperWorks IBM also have sales information, product announcements, etc. Other than that, fire up your favourite search engine - DataStage is not a name that will get too many false positives. You might also like to le...
by ray.wurlod
Thu Nov 02, 2006 8:15 am
Forum: General
Topic: Enabling NLS after Installation
Replies: 3
Views: 3922

Set NLSMODE to 0 in $DSHOME/uvconfig using any text editor.
Make sure nothing is happening. Stop DataStage. uv -admin -stop
Regenerate the shared memory segment. cd $DSHOME ; bin/uvregen
Start DataStage. uv -admin -start
by ray.wurlod
Wed Nov 01, 2006 11:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Duplicates to CDC stage
Replies: 12
Views: 6152

Surely the Change Capture stage requires identical key partitioning (so that valid matches can be made) AND identical sorting (so that memory can be efficiently used). Try adding sorting on both input links, using the key column(s) as the one(s) to be sorted. That way, out of order rows will not be ...
by ray.wurlod
Wed Nov 01, 2006 11:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: passing parameter values to Job Activity
Replies: 13
Views: 5786

Continue to search back in the code, to find out what IdV0S27%%UserVar%%4 through IdV0S27%%UserVar%%7 map to - they should be variables in your User Variables activity. It is clear from the code already posted that the generated code appears to assign these properly to the p$... variables that are u...
by ray.wurlod
Wed Nov 01, 2006 11:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup or Join or Merge
Replies: 10
Views: 4409

Lookup stage is to be preferred if the reference data set will fit in memory. It does not "reduce the performance". And the inputs do not need to be sorted. Partitioning must ensure that every valid lookup will succeed. Join stage does not support reject link. But you could employ a Join stage with ...
by ray.wurlod
Wed Nov 01, 2006 11:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Querying a hashed File
Replies: 15
Views: 3864

This indicates that the @SELECT phrase, or @ phrase if you do not have an @SELECT phrase, in the dictionary does not refer to Department_Number. It has to be there in order for it to be accessible to SQL queries. @SELECT has the task, officially, of describing what fields will replace "*" (so that d...