Search found 42189 matches

by chulett
Mon May 27, 2013 7:12 pm
Forum: General
Topic: Can i customize the status of a job
Replies: 7
Views: 1810

USERSTATUS could be one solution. So could writing the count to a file and then using Execute Command to 'read' the value, triggers after that could go to JobB or JobC.
by chulett
Mon May 27, 2013 5:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle sequence
Replies: 14
Views: 3309

Why not take the user-defined SQL route using NEXTVAL? That or a Sequence Generator?
by chulett
Mon May 27, 2013 5:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle sequence
Replies: 14
Views: 3309

So not a "need" after all but rather a preference. Fair enough.
by chulett
Mon May 27, 2013 5:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need Help on job design.
Replies: 3
Views: 1279

Or a Server job writing to a Folder stage...
by chulett
Mon May 27, 2013 5:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle sequence
Replies: 14
Views: 3309

mmanes wrote:Ok, but I have to insert the value in the field into transformer stage.
Why do you "have to" do it in a transformer?
by chulett
Mon May 27, 2013 2:44 pm
Forum: General
Topic: Can i customize the status of a job
Replies: 7
Views: 1810

Re: Can i customize the status of a job

SPuneet wrote:But the seq fails if any underlying job fails.
Only if you tell it to. What compilation options do you have enabled?
by chulett
Mon May 27, 2013 11:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 "Delete" failing with Transaction log full msg
Replies: 8
Views: 4692

Use APT_RDBMS_COMMIT_ROWS for DB2. Default is 2048.
by chulett
Mon May 27, 2013 9:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Connection connects intermittently
Replies: 11
Views: 8755

ray.wurlod wrote:ODBCINI is not a mandatory environment variable.
And just for the record EDI_ITLS, it IS mandatory if your .odbc.ini file is in a "non-standard location" as that's how it knows where to find it.
by chulett
Mon May 27, 2013 9:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading data into fixed width flat file using seq file stage
Replies: 10
Views: 2228

Forget the 4, it plays no role here. An integer can store a value up to 2147483647. However, if you are confident your value will never go over 999999 then use 6 for the length otherwise best to use 10 (or 11 if signed).
by chulett
Mon May 27, 2013 8:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading data into fixed width flat file using seq file stage
Replies: 10
Views: 2228

It's an integer, the (4) just means it is stored in 4 bytes. Look up the maximum size of an integer and account for that.
by chulett
Mon May 27, 2013 8:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error: Xalan fatal error Expected entity name for reference
Replies: 8
Views: 5729

Yes. That error would imply that your XML is not well formed.
by chulett
Mon May 27, 2013 8:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with Timezone date format
Replies: 4
Views: 1657

Same answer. It's not "fine" there, your tool is converting it for display. DataStage isn't.
by chulett
Mon May 27, 2013 8:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 "Delete" failing with Transaction log full msg
Replies: 8
Views: 4692

This is all about your database but wanted to point out that you can't set APT_ORAUPSERT_COMMIT_ROW_INTERVAL for DB2 - the "ORA" part means Oracle.
by chulett
Sun May 26, 2013 2:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Missing records Rolling up logic
Replies: 8
Views: 2113

As noted, there are lots of examples of usage out there. Don't know anything about 'Newton Apples' but found a couple of lessons there: http://newtonapples.com/datastage-transformer-looping-1 http://newtonapples.com/datastage-transformer-looping-2 A search for "datastage transformer looping&quo...
by chulett
Sun May 26, 2013 9:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading data into fixed width flat file using seq file stage
Replies: 10
Views: 2228

What happens when you stick with the original datatypes?