Search found 5168 matches

by kumar_s
Tue Oct 17, 2006 4:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Monitoring DataStage Sessions
Replies: 2
Views: 1348

DS_AUDIT will have information only if the jobs are modified or created.
All these are of OS related query which can be tracked by Unix admin.
by kumar_s
Tue Oct 17, 2006 4:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dateformat
Replies: 1
Views: 528

Other way is, you can produce the file as DD_SAP_1.CSV and you can use

Code: Select all

mv #ROOT#/DD_SAP_1.CSV #ROOT#/DD_SAP_`date +"%Y%m%d%H%M%S"`_1.CSV
in after job subroutine in ExecSH.
by kumar_s
Tue Oct 17, 2006 4:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to read records from DB2 table through routines
Replies: 10
Views: 3449

Are you refering to BASIC Routine?
If so Call DSExecute can be used to call OS commands. Through which you can call DB2 commands.
by kumar_s
Tue Oct 17, 2006 4:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Execute command not returning correctly
Replies: 2
Views: 758

What trigger condition is mentioned?
You can use ReturnValue [Conditional] as trigger and specify the exact value that is retured by the script. May be "0" in your case.
by kumar_s
Tue Oct 17, 2006 4:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: encrypted pw from parm file to EE oracle stage
Replies: 15
Views: 5248

Hope you are using the password that has been encrypted by Datastage.
Check the job properties is also enabled with Encryption.
Will the job work if the same password is passed from the job when triggered indivudually?
by kumar_s
Tue Oct 17, 2006 3:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error: Could not load drsoci.dll
Replies: 10
Views: 5414

Was you OCI stage loaded later after installaion or not installed properly. Try with proper reinstallaion.
Try the dspackinst available under $DSHOME/bin by passing the corresponding project directory.
Or the same available in your server software CD.
by kumar_s
Tue Oct 17, 2006 3:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to read records from DB2 table through routines
Replies: 10
Views: 3449

Hi Ragunathan,
Pls delete the other duplicate post created on the Server forum.
by kumar_s
Tue Oct 17, 2006 3:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to read records from DB2 table through routines
Replies: 10
Views: 3449

It is very much like you execute your OS command.
You have Command line call facility avaialble in DB2.
>db2 connect to database.....
>db2 "select * from .....";
You need to wrap this command as the OS comand call.
by kumar_s
Mon Oct 16, 2006 3:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Heap allocation failed.
Replies: 17
Views: 5559

This is really horrible :evil: .
I guess there is some change going on in the home page. I got the same multiple post in other thread, but deleted it. Not it is not possible in this one. :?
by kumar_s
Mon Oct 16, 2006 3:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Heap allocation failed.
Replies: 17
Views: 5559

Dont you have the buffering property to edit in Database stage output tab?
by kumar_s
Mon Oct 16, 2006 3:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Heap allocation failed.
Replies: 17
Views: 5559

Dont you have the buffering property to edit in Database stage output tab?
by kumar_s
Mon Oct 16, 2006 3:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Migration of DS Installation
Replies: 18
Views: 4305

I was refering to the file which actually refer the node name.
I think, I got some ample time to do Export/Import . :wink:
by kumar_s
Mon Oct 16, 2006 3:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Phantom 7491 Error
Replies: 4
Views: 1058

Dont just get carried away from the work Panthom. It is just the DataStage internal representaiton of the each processes.
Look at "Square root of a negative number" and check your transformation logic in transformer.
by kumar_s
Sun Oct 15, 2006 6:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to avoid warngs when convert from varchar(10) to char(4)
Replies: 16
Views: 7008

Perhaps using the same Transofrmer stage to fetch first 4 char(may be after Trim()) and map to Char(4). If its sure that, the input may not contain more that 4 char.
by kumar_s
Sun Oct 15, 2006 6:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer - Send STOP requests to all the running Jobs
Replies: 2
Views: 3161

As mentioned by Craid, the time taken by STOP signal to activate will the big impact, if the jobs are triggered in parallely. You assure about the stopping of process. It also depends on the volume of the data that been processed during that time. Which inturns decides the time of the job run.