Search found 773 matches

by keshav0307
Thu Aug 28, 2008 6:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error while running the job
Replies: 7
Views: 3284

may be you have some restricted warning limit and when the limit cross the job will fail this error.
by keshav0307
Thu Aug 28, 2008 6:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error while running the job
Replies: 7
Views: 3284

You have not handled the null value for the fields DESCR
probably in the transformer stage.

to know at which stage, disable the combination
by keshav0307
Tue Aug 26, 2008 7:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job finishes but the status becomes aborted
Replies: 6
Views: 3451

its not a weird error.
what is bad record or error limit, you have set.
by keshav0307
Mon Aug 25, 2008 10:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: double quotes
Replies: 8
Views: 2098

it is quite simple. read the whole string with quotes (in the file stage set quote=none) and then in a transformer stage trim the " .
Trim(<column name>,'"')
'"' is single quote:double quote:single quote
by keshav0307
Fri Aug 22, 2008 4:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to insert data into the database
Replies: 4
Views: 3558

your input data is wrong.
have a reject link in the oracle stage, so all correct data will be loaded and you can filter out the wrong data
by keshav0307
Fri Aug 22, 2008 2:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Saving Datastage Logs
Replies: 7
Views: 2346

in datastage director

Project--->Print--->print to file
by keshav0307
Fri Aug 22, 2008 1:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to find library 'libclntsh.so.10.1'
Replies: 8
Views: 9022

do you have any file or link for orchoracle at $APT_ORCHOME/lib
by keshav0307
Thu Aug 21, 2008 9:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to find library 'libclntsh.so.10.1'
Replies: 8
Views: 9022

Error loading "orchoracle": Could not load "orchoracle": Unable to find library 'libclntsh.so.10.1'.
do you have the orchoracle softlink in your $DSHOME/../PXEngine/lib or $APT_ORCHOME/lib path
by keshav0307
Thu Aug 21, 2008 7:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema File FORMAT
Replies: 4
Views: 1083

date format i have set is dd-mm-yyyy,...so now if date comes as 1/12/2001..its getting dropped
so the job is doing what it is supposed to do.
by keshav0307
Thu Aug 21, 2008 7:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema File FORMAT
Replies: 4
Views: 1083

that is because your date field has a value "null". i think the file has "null" for null field value, so that should be either defined at record level or the column level. record {final_delim=end, delim=',',null_field='null'} ( Emp_ID:string[max=200]; Emp_status:string[max=100]; ...
by keshav0307
Thu Aug 21, 2008 2:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to find a where it is real number or not ?
Replies: 4
Views: 1202

num(<column name>) is true then real number
by keshav0307
Thu Aug 21, 2008 2:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema File FORMAT
Replies: 4
Views: 1083

doesn't your earlier query regarding this help you http://www.dsxchange.com/viewtopic.php?t=121506 anyway it could be like: record {final_delim=end, delim=','} ( Emp_ID:string[max=200]; Emp_status:string[max=100]; Start_Date:string[max=26]; Position:string[max=100]; Remarks:string[max=1000]; )
by keshav0307
Thu Aug 21, 2008 1:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File : Header generation
Replies: 7
Views: 1981

if it is working fine then correct option only :D
by keshav0307
Thu Aug 21, 2008 12:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error writing to pipe: Broken pipe
Replies: 7
Views: 8515

first of all disable combination. and then check if you have write permission to the output directory path
by keshav0307
Thu Aug 21, 2008 12:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File : Header generation
Replies: 7
Views: 1981

use head stage and number of records 1.