Search found 22 matches

by saiwelcomes
Tue Jul 01, 2014 10:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job got aborted due to failure during the execution of logic
Replies: 6
Views: 4137

Please post the logic written for all columns inside the transformer
by saiwelcomes
Wed Jun 25, 2014 3:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Expected identifier; got: "*"
Replies: 6
Views: 5837

Check the field L_In.ConvDate1 for any special characters like * or blanks.
by saiwelcomes
Wed Jun 25, 2014 10:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Want to know the values passed to stored procedure stage
Replies: 1
Views: 1485

Want to know the values passed to stored procedure stage

Hi All,

I want to know the values being passed to the stored procedure triggered using stored procedure stage in a parallel job. The job is currently running in production. Please let me know how to know what values are being passed as arguments to that procedure.

Thanks in advance.
by saiwelcomes
Thu Nov 15, 2012 6:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential file "delimiter not seen" error
Replies: 15
Views: 26698

I believe the order of the columns in the sequential file stage and the order of the columns in the file are incorrect. That might be the case. Plz check.
by saiwelcomes
Wed Oct 31, 2012 8:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between 'Oracle OCI' and 'Oracle Connector'
Replies: 7
Views: 7729

Better use Oracle Connector stage to handle large volumes of data. It is 20% faster than OCI stage.
by saiwelcomes
Wed Oct 31, 2012 7:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between 'Oracle OCI' and 'Oracle Connector'
Replies: 7
Views: 7729

With Oracle OCI, you can: Generate your SQL statement. Use a file name to contain your SQL statement. Clear a table before loading by using a TRUNCATE statement. (Clear table) Select how often to commit rows to the database. (Transaction size) Input multiple rows of data in one call to the database...
by saiwelcomes
Thu Oct 25, 2012 6:15 am
Forum: General
Topic: Test Routine, infinite loop
Replies: 6
Views: 5736

Go to /tmp/ folder in your unix server box. Try searching for a file starting with Capture*. ls -l Capture* It will list some file whose names starting with Capture* Try the same command again and again for multiple times. If any of the file size is getting increased, forcibly delete the file. Other...
by saiwelcomes
Thu Oct 25, 2012 6:09 am
Forum: General
Topic: Job compiled but not visible in director
Replies: 12
Views: 10667

Try using 'Force Compile' option.
by saiwelcomes
Wed May 02, 2012 4:37 am
Forum: General
Topic: Datastage Connection failure
Replies: 2
Views: 2278

Is this the same machine you are connecting to datastage designer?

If you are using a new/different machine other than earlier one, try adding the host entry of datastager server in your machine's drivers/etc/hosts file and try..
by saiwelcomes
Wed May 02, 2012 4:29 am
Forum: General
Topic: dsjob command getting hanged when -jobstatus option is used.
Replies: 8
Views: 6810

Hi ray, This is the code snippet used to get the jobinfo in my routine. cmd$DSENV = "cd '":p_DSHOME_DIR:"'":char(10) ; cmd$DSENV := ". ./dsenv":char(10) ; reconJob$Status = cmd$DSENV reconJob$Status := "dsjob -file '":EV_SCRIPTS_DIR:"'/'":DS_ENV_INFO...
by saiwelcomes
Wed May 02, 2012 12:41 am
Forum: General
Topic: dsjob command getting hanged when -jobstatus option is used.
Replies: 8
Views: 6810

Yes. I have placed many DSLogInfo command after each step in my routine.

This problem is occurring when -file switch is used to retrive the domain, server, user, password from a file.

Any help plz..
by saiwelcomes
Mon Apr 30, 2012 2:26 pm
Forum: General
Topic: dsjob command getting hanged when -jobstatus option is used.
Replies: 8
Views: 6810

Yes. I am sorry. I am using -jobinfo to get the status of the job. dsjob command is not resulting any status and getting hanged.
by saiwelcomes
Mon Apr 30, 2012 2:08 pm
Forum: General
Topic: dsjob command getting hanged when -jobstatus option is used.
Replies: 8
Views: 6810

dsjob command getting hanged when -jobstatus option is used.

Hi, I have used dsjob command to trigger the job in my server routine. First of all I am checking the whether the job is in compiled/finished/aborted status using dsjob -jobstatus command. If the job is in aborted state, i am going to reset the job. But my problem is the dsjob -jobstatus which i hav...
by saiwelcomes
Mon Apr 30, 2012 3:18 am
Forum: General
Topic: dsjob command not executing in my deployment environment
Replies: 10
Views: 5056

Hi All, I have added the below code snippets in my routine code before the dsjob call: cmd$DSENV = "cd '":p_DSHOME_DIR:"'":char(10) ; cmd$DSENV := ". ./dsenv":char(10) ; Then to the above statements the actual dsjob command will be appended as below: outputJob$Trigger =...
by saiwelcomes
Fri Apr 27, 2012 10:47 am
Forum: General
Topic: dsjob command not executing in my deployment environment
Replies: 10
Views: 5056

yes It worked... :D Thanks a ton chulett!!!