Search found 6797 matches

by DSguru2B
Thu Mar 08, 2007 10:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Select Privileges & Sox compliance
Replies: 12
Views: 3189

Re: Select Privileges & Sox compliance

Since these databases are constantly audited for any unwarrented /undue privileges, the DBA has raised his concern. I have been there. I was questioned DataStage's privilige to go directly to my source systems. Just a select to the tables that were to be transformed. They wanted DataStage to call a...
by DSguru2B
Thu Mar 08, 2007 10:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: auto clear log
Replies: 17
Views: 3770

Stick to the auto-purge property.
by DSguru2B
Thu Mar 08, 2007 10:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: default length of a string in job parameter
Replies: 2
Views: 538

It can be anything. Ive seen folks put complex sql as job parameters. How many bytes do you want to send? Best way to deal with such questions is, perform a test.
by DSguru2B
Thu Mar 08, 2007 10:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Subrecord to Varchar
Replies: 23
Views: 7262

Give an example of your data, as I've previously requested, and show me how you want it to look like.
by DSguru2B
Thu Mar 08, 2007 10:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating Multiple records from one Record from the source
Replies: 4
Views: 721

So all these checks will be done outside the external plugin, (c routine, stored proc. whatever) right? If thats the case then it would be really easy to duplicate the store id in a few lines of C code.
by DSguru2B
Thu Mar 08, 2007 10:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Abort After 50 warnings
Replies: 13
Views: 5230

If sequence job limit is set to 50, the sequence job will abort at 50 warnings.
If the child job's limit is set to 50, then the child job will abort at the 50th warning.
by DSguru2B
Thu Mar 08, 2007 10:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: load Problem from sequential file
Replies: 14
Views: 5074

Do you have any error/warning messages in the Log. Give us more details, on what stages your using and stuff.
by DSguru2B
Thu Mar 08, 2007 8:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: C++ routine
Replies: 12
Views: 3626

Without the "test.c" portion :wink:
by DSguru2B
Wed Mar 07, 2007 8:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reject Records and Abend Handling
Replies: 6
Views: 1107

No really, stick to the transformer, and get rid of the notion that a transformer is bottleneck.
by DSguru2B
Wed Mar 07, 2007 8:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Promblem compiling parallel transformer
Replies: 3
Views: 1105

Try searching on key words 'ORCHESTRATE job does not start up correctly'.
by DSguru2B
Wed Mar 07, 2007 8:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reject Records and Abend Handling
Replies: 6
Views: 1107

BuildOp maybe. But really, usage of transformer is'nt really all that much overhead.
by DSguru2B
Wed Mar 07, 2007 8:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with execute_command activity
Replies: 32
Views: 10003

As Craig mentioned, maybe a bug :?
by DSguru2B
Wed Mar 07, 2007 8:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating Multiple records from one Record from the source
Replies: 4
Views: 721

These 118 records, how are they going to be different from the incoming record? Is it going to be the same record duplicated 118 times or with some difference?
by DSguru2B
Wed Mar 07, 2007 4:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: call stored procedure repeatly
Replies: 11
Views: 2496

Thats an awful design. If I were you I would push back. Can you invoke sql tool to talk to Informix from command line? If you can then you can probably write a routine which has DSExecute() command and fires a script at the unix level which logs into Informix, fires the stored procedure and returns ...
by DSguru2B
Wed Mar 07, 2007 4:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: info for dynamic RDBMS
Replies: 5
Views: 1056

I am not sure if sparse lookup is the right way to go as your data volume is huge. Are both the links originating from the same schema? If yes then you can do a sql join. If they are in different schemas then probably best to do a join using the Join stage.