Search found 39 matches

by kausmone
Wed Mar 05, 2008 4:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job status 99
Replies: 3
Views: 2109

Ray, thanks for the reply and sorry for causing some confusion. What I was intending to say was, when I gave the command on the UNIX command prompt it returned 0 whereas running through shell script returned 99...
by kausmone
Wed Mar 05, 2008 4:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job status 99
Replies: 3
Views: 2109

job status 99

Hi, Before executing a multiple instance job through a shell script, we are checking its status using the below command: $DSHOME/bin/dsjob -server :31539 -jobinfo svtt_dev SQ_SVTT_Main.11 When executing this from command-line, it gives a return value 0 when the job is already running. However, when ...
by kausmone
Thu Nov 29, 2007 9:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX job with Teradata Mload taking too long to execute
Replies: 7
Views: 4425

Yep, works like a charm after removing duplicate rows. The same set of data (without the approx 13,000 duplicates, i.e.) got loaded in 1 minute 51 seconds.

Thanks..!! :)
by kausmone
Thu Nov 29, 2007 9:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX job with Teradata Mload taking too long to execute
Replies: 7
Views: 4425

Hello,

THanks for your thoughts. As predicted in the reply from the DS_FocusGroup ID above, an error table is being created and it shows that duplicate rows are being inserted. I'll try it with a remove-duplicates and hopefully it should be resolved.

Thanks,
Kaus
by kausmone
Wed Nov 28, 2007 11:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX job with Teradata Mload taking too long to execute
Replies: 7
Views: 4425

Hi there,

Thanks for your reply. Unfortunately, I'm a first timer, so I do not know how the specification of the nodes or AMPs is done. Could you guide me please?

Thanks,
kaus
by kausmone
Wed Nov 28, 2007 10:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX job with Teradata Mload taking too long to execute
Replies: 7
Views: 4425

PX job with Teradata Mload taking too long to execute

Hello, I have a job that combines data from three datasets using a funnel, this merged data is then loaded into a teradata table using the Teradata Multiload stage. When I tried running the job, it took 8 hours to load 334,000 records, which is obviously way too long a time. On checking the director...
by kausmone
Thu Nov 22, 2007 2:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Weird behavior of routine when reading hashfile
Replies: 4
Views: 1181

Hi Ray, Thanks for your your reply; unfortunately it was cut off since I am not a premium member, but from what I could see, it is not possible to control in what sequence the data is stored inside the hash-file. The hash-file being talked about below is created from a database table using an order-...
by kausmone
Wed Nov 21, 2007 11:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Weird behavior of routine when reading hashfile
Replies: 4
Views: 1181

Weird behavior of routine when reading hashfile

Hello, I have a server routine that reads all values of the key-field of a hash-file into an array using the code as below: (note that STAGING_FOLDER and ARRAY_ELEMENT are arguments passed to the routine) DIM SubFileRunListArray(300) MAT SubFileRunListArray=0 Openpath STAGING_FOLDER:"/SubFileRu...
by kausmone
Tue Nov 20, 2007 2:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Equivalent of 'sleep' in a server routine
Replies: 4
Views: 1478

Great! Thanks Ray. :)
by kausmone
Tue Nov 20, 2007 2:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Equivalent of 'sleep' in a server routine
Replies: 4
Views: 1478

Thanks :oops: :D
by kausmone
Tue Nov 20, 2007 2:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Equivalent of 'sleep' in a server routine
Replies: 4
Views: 1478

Equivalent of 'sleep' in a server routine

Hi, I need to pause processing that is happening in a loop for a few seconds. This is the best scenario for a UNIX 'sleep' command but I want to avoid that since the command will be given inside a loop. A call to UNIX multiple times inside a loop would drastically affect performance, so am looking f...
by kausmone
Wed Nov 14, 2007 7:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle OCI Load stage gives fatal error
Replies: 1
Views: 850

Hi,

Managed to fix this. The "Service Name" was given incorrectly in the first case.

Rgds,
Kaus
by kausmone
Wed Nov 14, 2007 6:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle OCI Load stage gives fatal error
Replies: 1
Views: 850

Oracle OCI Load stage gives fatal error

Hi, We are trying to load data to an Oracle 10g table using Oracle OCI Load stage in a server job but the jobs is failing as described below: The job-log shows a warning as "ora_bulk..Oracle_OCI_Load_0: Internal Error: COracleOCI::Initialize failed" and then a fatal error: "ora_bulk.....
by kausmone
Mon Nov 05, 2007 2:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: server routine for eliminating headers
Replies: 7
Views: 2209

Hi Ray,

Thanks for the input; but I need to do this before the job that reads the file. Hence the routine/UNIX script.

Rgds,
Kaus
by kausmone
Fri Nov 02, 2007 7:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: server routine for eliminating headers
Replies: 7
Views: 2209

Its more a case of trying to use a new thing as much as possible just to get to know it better :) , hence trying the routine instead of 'sed'

Anyways, thanks for your help!