Search found 6797 matches

by DSguru2B
Thu Dec 14, 2006 7:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datetime field overflow error
Replies: 17
Views: 11614

I believe DB2 requires date in internal format. Try ICONV(DSJobStartDate,"D-YMD")
by DSguru2B
Thu Dec 14, 2006 7:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to access metadata using Universe stage
Replies: 5
Views: 1531

use dsn as localuv.
by DSguru2B
Thu Dec 14, 2006 7:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to assign job status into variable in shell programing
Replies: 5
Views: 1553

If you want the retrieve the status code of the dsjob command then do as Craig advised. And, if you want to retrieve the status code of the job then add -jobstatus to Craigs advised commands. i.e, dsjob -run -jobstatus blah-blah-blah X=$? exit $X This way you will get a status code of 1 if job is su...
by DSguru2B
Thu Dec 14, 2006 6:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Save doublon
Replies: 22
Views: 5972

Welcome Aboard Get rid of the 'var' and replace it with input key column. One less stage varialbe Var1 = If in.key = Var2 Then "Cons Double File" Esle "Cons Insert Target" Var2 = Key If you get any key violation, the warning will be created. Thats why you need to explicitly handl...
by DSguru2B
Wed Dec 13, 2006 2:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OS error 104
Replies: 3
Views: 3543

Try to google 'sgslufread'. See what it retrieves.
by DSguru2B
Wed Dec 13, 2006 2:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Number of rows in a data set
Replies: 23
Views: 5240

Go to your dsenv file in $DSHOME and make a backup copy for it. VI the dsenv file and add the following to SHLIB_PATH SHLIB_PATH=/home/dsadm/Ascential/DataStage/PXEngine/lib:SHLIB_PATH; export SHLIB_PATH save it and then execute it as follows . ./dsenv then try the following $APT_ORCHHOME/bin/dsreco...
by DSguru2B
Wed Dec 13, 2006 1:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Number of rows in a data set
Replies: 23
Views: 5240

The id you are using to log into unix, is that the same id you use to log into datastage?
by DSguru2B
Wed Dec 13, 2006 1:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Number of rows in a data set
Replies: 23
Views: 5240

ok then try this

Code: Select all

cd $DSHOME
sh dsenv
by DSguru2B
Wed Dec 13, 2006 1:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date conversion
Replies: 3
Views: 909

You can use ICONV/OCONV functions. Search for specific details or look into DataStage help.
by DSguru2B
Wed Dec 13, 2006 11:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Waiting for job to start
Replies: 8
Views: 2228

I am no dos expert but here is what i found on google. Maybe a batch file expert can throw some more light.
by DSguru2B
Wed Dec 13, 2006 10:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Waiting for job to start
Replies: 8
Views: 2228

Its a good idea. Search for something like files older than 7 days, and delete them. Search this forum, i think Ray has a piece of code out here to do that.
by DSguru2B
Wed Dec 13, 2006 9:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: rounding to lowest integer
Replies: 7
Views: 2050

Welcome Aboard :P
Use the Int() function.
by DSguru2B
Wed Dec 13, 2006 9:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Waiting for job to start
Replies: 8
Views: 2228

Try to clear the &PH& folder. See if that helps.
by DSguru2B
Wed Dec 13, 2006 9:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSJobReportDb
Replies: 9
Views: 1527

Read this.
by DSguru2B
Wed Dec 13, 2006 8:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Debugging in Ascential
Replies: 8
Views: 2026

what is your job design. What if you replace the IPC stage with sequential file stage or just get rid of the IPC stage?