Search found 6797 matches

by DSguru2B
Tue Jun 05, 2007 11:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Initialize parameter
Replies: 3
Views: 1076

I dont think that exists in a parallel job.
For a sequential file you can have an after job subroutine to rename your output file suffixed with date. If you want date in the table then you will have to pass it as a parameter from outside the job before it even starts.
by DSguru2B
Tue Jun 05, 2007 10:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Only executable files in server?
Replies: 4
Views: 1052

Yes. By just exporting job and routine executables.
by DSguru2B
Tue Jun 05, 2007 9:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage
Replies: 4
Views: 1095

Your kidding me right :evil:
by DSguru2B
Tue Jun 05, 2007 8:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob
Replies: 18
Views: 7135

Ok. cd to the DSEngine. Check for execute permission on dsenv. See if you have it. If not then you need it. Once you get it. Try running the same command again.
by DSguru2B
Tue Jun 05, 2007 7:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob
Replies: 18
Views: 7135

You have to execute the script just like I showed you. Did you copy paste the command. Dont put ksh or sh before it. Just copy paste it as it is.
There is a dot, space, dot and then the fullyqualified path. Try that first.
by DSguru2B
Tue Jun 05, 2007 7:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: StringToDecimal & StringtoTimestamp Issue
Replies: 1
Views: 731

How did you select? By just doing a " Select DATECOLUM from table "? This will give you only the date format that has been masked in your sql tool. Provide the following SELECT TO_CHAR(DATECOLUMN, 'YYYY-MM-DD 24HH:MI:SS') FROM Table Now you will see the complete timestamp. As per your other ...
by DSguru2B
Tue Jun 05, 2007 7:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob
Replies: 18
Views: 7135

What happens when you execute the following?

Code: Select all

. ./dstage/Ascential/DataStage/DSEngine/dsenv
by DSguru2B
Tue Jun 05, 2007 7:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running PX on separate CPU's.
Replies: 13
Views: 3408

I did. I did that yesterday itself when you first posted it. Pretty interesting stuff. Thanks for the link Ken.
by DSguru2B
Tue Jun 05, 2007 7:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running PX on separate CPU's.
Replies: 13
Views: 3408

Hmm, great. Hey Craig, I did'nt know you were a windoze guy too :wink:
by DSguru2B
Tue Jun 05, 2007 7:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running PX on separate CPU's.
Replies: 13
Views: 3408

Processor affinity huh, did not know about that. Is it only restricted to AIX boxes or all unix platforms?
I think this answers the OP's question. Seperate id's, seperate cpu's.
by DSguru2B
Mon Jun 04, 2007 12:22 pm
Forum: General
Topic: Call To DB2 Store Procedure fails
Replies: 3
Views: 1648

Increase the length. What is the numeric value you are expecting from the stored procedure? An arithmatic overflow, in a nutshell, means that the number produced is larger than what can occupy in the variable and hence my apprehension about the length.
by DSguru2B
Mon Jun 04, 2007 11:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Copying set of tables in to different tables
Replies: 12
Views: 1970

I am sure you can. Make copies of your input using copy stage and let them go to all your tables. Truncate it and then load.
by DSguru2B
Mon Jun 04, 2007 11:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Setting default date value
Replies: 7
Views: 1544

What is the error that you got when you applied my method? Are you sure that your incoming empty column is infact NULL and not an empty space?
by DSguru2B
Mon Jun 04, 2007 11:53 am
Forum: General
Topic: Call To DB2 Store Procedure fails
Replies: 3
Views: 1648

What is the datatype that you have defined for your RETURN value in your other job? Is it the same in your new job?