Search found 3329 matches

by Sainath.Srinivasan
Thu May 26, 2005 7:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert after target write
Replies: 8
Views: 925

What exact action you wish to perform?
by Sainath.Srinivasan
Thu May 26, 2005 7:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert after target write
Replies: 8
Views: 925

In the connected ODBC stage.....obviously.
by Sainath.Srinivasan
Thu May 26, 2005 7:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert after target write
Replies: 8
Views: 925

Simplest will be to perform an 'after job' sql to insert row. If you want to keep everything in DataStage, you can include that as a separate link in your job.

As you said that it must be 'after' the rows are inserted, I believe it will have to do something with row count, reject info etc.
by Sainath.Srinivasan
Thu May 26, 2005 7:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: user defined sql
Replies: 6
Views: 1845

Good point Craig. Maybe the column name used as the place holder is causing the problem somewhere. But this is only a guess as there is no information on the design.
by Sainath.Srinivasan
Thu May 26, 2005 6:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: user defined sql
Replies: 6
Views: 1845

The comma is meant to be there. It implies ANY option of the 2 values provided.
by Sainath.Srinivasan
Thu May 26, 2005 5:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Source selection and Aliases
Replies: 5
Views: 891

Also have specific column names instead of an '*'.
by Sainath.Srinivasan
Thu May 26, 2005 5:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: STAGE has unexpected STATUS value
Replies: 6
Views: 1419

I think he means writing the output to user status and connecting the link output to a (dummy) seq file with name as /dev/null in order to ignore any output from it.

Roy,

Did you check whether any value is populated into the user status?
by Sainath.Srinivasan
Thu May 26, 2005 3:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job tree is not containing any jobnames in designer,manager
Replies: 3
Views: 624

Maybe your project was removed from the VOC. Does it say your project name is invalid?

Check whether you can logto your project from universe.

If everything is fine, you can perform a reindex to set your links correct.
by Sainath.Srinivasan
Thu May 26, 2005 2:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: user defined sql
Replies: 6
Views: 1845

Check whether
1.) Is_Expired is a numeric datatype
2.) COL_ID is not a numeric data type

Can you run the same successfully via sqlplus or toad?
by Sainath.Srinivasan
Thu May 26, 2005 2:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatenate strings based on a dynamic table
Replies: 5
Views: 1504

You have option to distribute the record and collect them again.
by Sainath.Srinivasan
Thu May 26, 2005 2:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to pass a value that changes in a parameter
Replies: 4
Views: 1205

Lindy,

That is why you are using Universe BASIC language to prepare the value. If it is user defined, you can accept it as a parameter and compute the same in your program.
by Sainath.Srinivasan
Thu May 26, 2005 2:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Distributed HASH file
Replies: 8
Views: 2411

Distributed hash file is similar to partitioned table. I do not think you will be able to cache as the main purpose of this is to reduce the scanning and loading into memory.
by Sainath.Srinivasan
Wed May 25, 2005 10:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Renaming file in Unix at the end of a job sequence?
Replies: 5
Views: 1877

Use mv command and supply the target file name as mixed parameters.
by Sainath.Srinivasan
Wed May 25, 2005 9:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookups and hash file
Replies: 4
Views: 820

As ArndW said, it is something defined in the tutorial and any class.

Check you have linked your seq file before the hash-file.
by Sainath.Srinivasan
Wed May 25, 2005 9:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Executing Before Job Routine From Job Control Code
Replies: 1
Views: 630

You can call your routine as a normal function. But you need to define it using 'deffun'.

Search for 'deffun'.