Search found 15603 matches

by ArndW
Wed Aug 15, 2007 11:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Source extraction returns 0 rows
Replies: 4
Views: 1048

Add an after-job routine call that gets the row count from the TeraData selection using DSGetLinkInfo(DSJ.ME,{LinkName},DSJ.LINKROWCOUNT) and if it is 0 issue a call to DSLogFatal().
by ArndW
Wed Aug 15, 2007 10:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generating a surrogate key
Replies: 3
Views: 1215

The server routine "KeyMgtGetNextValue" won't work in PX unless you revert to using a BASIC transform stage and that is not recommended. The surrogate key generation is not designed to store the highest value used after a run for use in the next one. The use of a database sequence is usually the mos...
by ArndW
Wed Aug 15, 2007 3:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cobol copybook with several appropriate .bin files
Replies: 1
Views: 585

Welcome to DSXChange!

If the files all share the same format (i.e. Copybook), then just combine all 4 files at the system level and read it in through the complex flat file stage if joining them is your goal.
by ArndW
Wed Aug 15, 2007 3:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sybase Stage error
Replies: 12
Views: 2518

Insert two dummy records into your Sybase table and re-run the job. Do you get 10,000, 10,001 or 10,002 records now?
by ArndW
Wed Aug 15, 2007 3:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DECIMAl 19,4 to deciaml 12,2 prob
Replies: 3
Views: 1621

and if you leave the output as Decimal(19,4) it doesn't return a null? I doubt it - doing any operation on a null value will return a null, so the assumption is athat you have a null in that column somewhere and the problem isn't being caused by a conversion or truncation error.
by ArndW
Wed Aug 15, 2007 3:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF Issue
Replies: 17
Views: 5335

jingyu -please don't hijack threads, you already posted your problem on a separate one! Also, you should have added the extra information in your other post.
by ArndW
Wed Aug 15, 2007 3:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to handle French Accent characters with CFF component?
Replies: 7
Views: 9237

NLS is not required for the standard latin accent characters. Many times problems with NLS is assumed when the issue is only a display one. Where are you viewing this? There are many EBCDIC implementations and standards out there, but as far as I know they all convert the standard accents the same w...
by ArndW
Wed Aug 15, 2007 3:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job is running for long time
Replies: 1
Views: 542

How long does the same SQL select take from the DB2 command line? Has the table been modified recently and runstat'ed?
by ArndW
Tue Aug 14, 2007 10:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get an Alert Message when a File is being Written
Replies: 4
Views: 1306

Yes, it is possible (perhaps even easy) to do something like this. The question is what sort of an alert message? You can put a transform stage in the stream that writes to this reject file, and add a specific call to write a log message (the sdk routine "UtilityWarningToLog" will do that). Or you c...
by ArndW
Tue Aug 14, 2007 10:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Load Problem
Replies: 15
Views: 4462

xinhuang66 wrote:varchar2(1000), is oracle column definition.
If that is the definition in your table, what is it in the job?
do you use the CIDN1 and CIDN2 columns somewhere in the job (i.e. do you have runtime column propagation issues)?
by ArndW
Tue Aug 14, 2007 9:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Load Problem
Replies: 15
Views: 4462

Umm, I'm still not sure what you mean. What is your definition in Oracle for this column?
by ArndW
Tue Aug 14, 2007 8:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job is not working properly
Replies: 3
Views: 776

I wasn't asking about the difference in the jobs, that was clear from your post. But you didn't state what the B job did differently from the A job. Could you explain "pulling data" in a bit more detail?
by ArndW
Tue Aug 14, 2007 8:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Load Problem
Replies: 15
Views: 4462

What is the Oracle DDL column length? Is the problem that you cannot load more than 300 characters into a varchar column or something else?
by ArndW
Tue Aug 14, 2007 7:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job is not working properly
Replies: 3
Views: 776

Please explain the differences in your job results.
by ArndW
Tue Aug 14, 2007 3:38 pm
Forum: General
Topic: Datastage Job Hangs
Replies: 4
Views: 1685

Oops, I was thinking in terms of PX jobs, there are no peek stages in Server. Just make a copy of your job, replace the database writes with sequential file stages pointing to "/dev/null" and see if you still get a hang.