Are you extracting from two different Oracle instances as well, DEV and QA? If you are I'd think two things:
1) You are not using generated sql.
2) The default NLS_DATE format is different between the two instances.
In any case, switching to generated sql should solve the problem.
Search found 42189 matches
- Tue Jan 16, 2007 4:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reading Discrepancies in DEV and QA Environments
- Replies: 15
- Views: 3866
- Tue Jan 16, 2007 4:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: XML Input Stage
- Replies: 14
- Views: 6142
- Tue Jan 16, 2007 2:56 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: XML Input Stage
- Replies: 14
- Views: 6142
- Tue Jan 16, 2007 2:46 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Pulling out Text in between tags
- Replies: 11
- Views: 2405
- Tue Jan 16, 2007 2:22 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: view
- Replies: 6
- Views: 1778
- Tue Jan 16, 2007 1:44 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: view
- Replies: 6
- Views: 1778
- Tue Jan 16, 2007 11:15 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: comparaison between Old and new value in stage variable
- Replies: 13
- Views: 3039
- Tue Jan 16, 2007 8:56 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ideal maximum limit for a hash file
- Replies: 11
- Views: 2694
Bah, 1 million 12 byte records plus the overhead is a nit and nowhere near 2GB - as you noted. You'll be fine with a hashed file solution - from a storage standpoint at least. Ray has posted the gory details and all the overhead you need to include to get an accurate size estimate more than once. Wh...
- Tue Jan 16, 2007 8:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ideal maximum limit for a hash file
- Replies: 11
- Views: 2694
- Tue Jan 16, 2007 8:21 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ideal maximum limit for a hash file
- Replies: 11
- Views: 2694
- Tue Jan 16, 2007 8:19 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSExecute failing with return code -1
- Replies: 6
- Views: 2811
- Tue Jan 16, 2007 8:17 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Issue retrieving number of rows processed
- Replies: 18
- Views: 4417
- Tue Jan 16, 2007 8:15 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Start Loop - End Loop Problem
- Replies: 3
- Views: 3741
- Tue Jan 16, 2007 8:12 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Clear tables
- Replies: 7
- Views: 1702
That's a database constraint, not a DataStage one. Probably best to talk to your DBA and see what your options are. For example, if you have the grants you need you may be able to disable the FK constraint in the 'before sql' tab, do the truncate and then re-enable it 'after sql'. Other places setup...
- Tue Jan 16, 2007 8:04 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Setting Job Variables in a stage and accessing it in another
- Replies: 10
- Views: 3281
Well... you would do that to pass data between jobs. Usually, to pass something between stages, all you need to do is add that new field to the link between the two stages. Why make this more difficult than it needs to be? The other option is 'COMMON' storage. Or one of those five available @USERn v...