Search found 6797 matches

by DSguru2B
Thu May 10, 2007 7:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Row size in a Hash file
Replies: 2
Views: 891

I doubt there is a document for this manipulation per se, but you can make an educated guess. Add all the lengths up and add a few bytes to it. Ray has that info posted here somewhere. This will give you a good estimate of your row size. I also advise searching the archives, on keywords like "calcul...
by DSguru2B
Wed May 09, 2007 2:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify stage error
Replies: 20
Views: 10710

You have to specify the default value within quotes.

Code: Select all

DATE1=handle_null(DATE1,'9999-12-31') 
by DSguru2B
Wed May 09, 2007 1:14 pm
Forum: General
Topic: stored procedure ref cursor
Replies: 6
Views: 1985

Are you able to execute the stored proc. successfully and capture the OUT parameter from your favourite sql tool.
by DSguru2B
Wed May 09, 2007 1:02 pm
Forum: General
Topic: stored procedure ref cursor
Replies: 6
Views: 1985

Read about stored procedure calls in ODBC help guide. I am pretty sure OUT parameter is not supported. But I can be wrong.
by DSguru2B
Wed May 09, 2007 1:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob parameter value with space in between
Replies: 3
Views: 4137

Another way that it can work is if you put the entire parameter name, equal sign and the parameter value within single quotes. I saw that in one of the top poster's scripts posted here. I have not tried it yet. You can give it a shot. Something like dsjob -run -wait -param 'DsName=Thomos E Edison' -...
by DSguru2B
Wed May 09, 2007 12:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs associated with a sequence
Replies: 3
Views: 957

Use the dssearch command. Something like

Code: Select all

dssearch -ljobs -uses <ProjectName> <JobSequenceName>

Search on dssearch in Server Job Developer's Guide.
by DSguru2B
Wed May 09, 2007 12:46 pm
Forum: General
Topic: stored procedure ref cursor
Replies: 6
Views: 1985

What kind of variables are these? I think ODBC stage can only support IN and IN/OUT parameters for stored procedures. Do you have STP stage?
by DSguru2B
Wed May 09, 2007 12:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob parameter value with space in between
Replies: 3
Views: 4137

Put eval before dsjob.

Code: Select all

eval dsjob -run .....
by DSguru2B
Wed May 09, 2007 12:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify stage error
Replies: 20
Views: 10710

Try giving '9999-12-31'
by DSguru2B
Wed May 09, 2007 11:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue with null values
Replies: 4
Views: 1293

Preprocess the inputs and replace NULL values to a default value for comparison.
by DSguru2B
Wed May 09, 2007 11:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file not getting created
Replies: 5
Views: 2384

What did you find when you searched on "DSD.UVOpen mkdbfile: cannot create file" ?
by DSguru2B
Wed May 09, 2007 11:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Adavantages of using db2 query or data stage??????
Replies: 8
Views: 3692

Again it depends. Ask your DBA. Depending upon how heavily the database server is loaded and/or depending upon the temp space your DBA will give you and Ok or not. If the DBA agrees, nothing like it. You can pass your sql join and get the result for further processing. Else do it in datastage.
by DSguru2B
Wed May 09, 2007 11:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify stage error
Replies: 20
Views: 10710

" " is not a DATE in any book. Provide a meaningful default such as 9999-12-31 or 1900-01-01 etc.
by DSguru2B
Wed May 09, 2007 11:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator Error
Replies: 4
Views: 920

Click on the blue link (This) that I provided in my previous post. Basically for aggregation a dfloat is required. That link gives a step by step method by Kumar on how to get it done.
by DSguru2B
Wed May 09, 2007 11:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sort function
Replies: 2
Views: 814

Large files require large tmp space. You can specify a temporary diretor using the -T option. Read about it in unix sort manual pages.