Search found 26 matches

by Romy
Thu Nov 20, 2008 12:42 am
Forum: General
Topic: Copy column and derivation in Transformer stage to document
Replies: 6
Views: 6741

In DS Designer under the "File", there is an option called "Generate Reports", Using this you can get in HTML page. Inthat if any derivation is used in the transformer it will show as it is in the job. Simply passed column will go as such. Copy those derivations and paste in word...
by Romy
Wed Nov 19, 2008 5:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Invalid Date issue bug
Replies: 8
Views: 2665

Hi, In the DS Manager there is in build transform to check whether the input date is valid one or not. Go to Transforms--> SDK-->Date-->Generic. In this you have transform name "DateGenericIsDate". Using this you can check whether the input date is recognised as valid or not. Returns 1 if ...
by Romy
Wed Nov 19, 2008 2:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sever Job: Not able to read (') in data
Replies: 10
Views: 4720

Check the delimiter that you have given in the Sequential file... Change that and try again
by Romy
Fri Nov 14, 2008 4:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 22 Million Records from File to OracleEnterprizeStage
Replies: 6
Views: 1959

Hi,

You have mentioned that you are not able to view the file using the sequentia stage itself.Better try to divide the file into smaller size and try running the job...
by Romy
Fri Nov 14, 2008 4:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fork failed
Replies: 4
Views: 2264

Hi,
Check whether required space is available in the server to execute the job.
by Romy
Fri Nov 14, 2008 4:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fork failed
Replies: 4
Views: 2264

Hi,
Check whether required space is available to execute the job.
by Romy
Fri Nov 14, 2008 4:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Field 'Emp_code' from input dataset '0' is NULL. Record drop
Replies: 13
Views: 6384

The target column for that source column may be non nullable... hence if you try to insert with the null values it wont accept. you need to convert it into a varchar "". In transformer you can add the express ion to that column as if source_file.column_a=@null then '' else source_file.colu...
by Romy
Fri Nov 14, 2008 1:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: i want to add a date column with 180 days
Replies: 3
Views: 2908

Hi,

First convert the input date column to internal date using the iconv function. It will return a number. Then add 180 to this internal date and using oconv function convert it to the external date format.

Hope this will help you.

Thanks.
Romy
by Romy
Thu Nov 13, 2008 4:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter
Replies: 6
Views: 2458

Re: Parameter

Hi Sometimes if you are geiven the default parameters in your job as 4, but you need only three parameters and pass only those 3 parameters from the UNIX script, then it wont work fine. Check the name of the parameter that you given in the parameter tab with that of the unix script. it is case sensi...
by Romy
Thu Nov 13, 2008 4:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter
Replies: 6
Views: 2458

Re: Parameter

Hi Sometimes if you are geiven the default parameters in your job as 4, but you need only three parameters and pass only those 3 parameters from the UNIX script, then it wont work fine. Check the name of the parameter that you given in the parameter tab with that of the unix script. it is case sensi...
by Romy
Thu Nov 13, 2008 4:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: performance tuning process
Replies: 7
Views: 4705

Re: performance tuning process

Hi,

I am not sure whether you are using any index in the target table. If so drop it, insert the data and then re create the index again. It may improve the performance.