Search found 42189 matches

by chulett
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

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.
by chulett
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

Oh, that dash. For some reason I was fixating on the leading dashes some lines have...
by chulett
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

I was assuming the 'dash' was some sort of artifact of the cut-and-paste operation from whatever was used to view the XML and not actually in the file itself. :?
by chulett
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

Sure looks like an XML Input stage could handle that for you as well.
by chulett
Tue Jan 16, 2007 2:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: view
Replies: 6
Views: 1778

...and then only if the view is 'updateable' I do believe. As previously noted, you could always target the base tables.
by chulett
Tue Jan 16, 2007 1:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: view
Replies: 6
Views: 1778

Actually, it looks like your target is a view. Load the base table(s) instead.
by chulett
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

If 'keep the old value' means don't change it - set it to itself.
by chulett
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...
by chulett
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

Interesting calculation. More to it than that, but regardless - try it. Let us know.
by chulett
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

...and if you are using hashed files that may exceed the 2GB boundary, make them 64BIT hashed files.
by chulett
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

That can't be the complete code. Also curious what your VB script you are calling does.
by chulett
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

:? I don't see how that would help. The OP stated that it failed occassionally, not constantly. Lack of that JOBCONTROL header file would cause something that needed it to not even run.
by chulett
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

Haven't seen that one. Post details of your job design, specifically the properties used in the Start Loop.
by chulett
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...
by chulett
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...