Search found 42189 matches

by chulett
Fri Jan 29, 2016 8:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Simple Example of executing a SQL server stored procedure
Replies: 8
Views: 8264

Just curious if you have run the procedure outside of DataStage first and know for a fact that it indeed works as desired? Trying to debug something like this from inside a job can lead to madness, which is why our first rule is to always makes sure it is working on its own before roping it into a j...
by chulett
Thu Jan 28, 2016 4:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle connector failure - invalid LOB locator specififed
Replies: 4
Views: 3875

True... and when it forces the array size to 1 it will note it in the job's log from what I recall.
by chulett
Thu Jan 28, 2016 3:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unstructured File Stage - Handling Missing Columns in Excel
Replies: 9
Views: 6993

I don't think you have any choice other than the 'padding option', i.e. put the leading zeroes back on after they get stripped from the fields where they are significant. To (mis)quote an elder statesman of science fiction, The Excel is a Harsh Mistress and you generally need to work around what it ...
by chulett
Thu Jan 28, 2016 3:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle connector failure - invalid LOB locator specififed
Replies: 4
Views: 3875

I would make sure your Array Size is set to 1, if you haven't done that already.
by chulett
Wed Jan 27, 2016 5:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date conversion from 1/1/2014 to 2014-01-01
Replies: 3
Views: 2170

Probably didn't really "work work" as "2014-01-01" isn't a date but rather a string. So what you posted as working would be fine if the actual target data type is a DATE (which is why you only would need the format for the input string) or the original post would be close to what...
by chulett
Wed Jan 27, 2016 12:59 pm
Forum: General
Topic: List jobs with with overridden log purge criteria.
Replies: 2
Views: 941

This might help.

Thanks Uncle Ken, wherever you are! :wink:
by chulett
Wed Jan 27, 2016 12:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Split a source file into multiple files dynamically
Replies: 6
Views: 4834

Define what you mean by 'generic' here, please.
by chulett
Wed Jan 27, 2016 8:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unstructured Stage - Sheet Names to skip
Replies: 4
Views: 2638

Pretty standard way to handle 'strings with spaces in them'. :wink:
by chulett
Wed Jan 27, 2016 7:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: algorith for loading a Dimension table in Data Stage
Replies: 2
Views: 3258

Welcome. That's... an interesting list. For grins, can you verify we're talking about a Type 2 dimension here?

ps. Not really an algorithm, more of a process or procedure.
by chulett
Tue Jan 26, 2016 5:16 pm
Forum: General
Topic: TFS configuration with IIS
Replies: 7
Views: 1917

I think the people that can, have, but perhaps others will chime in. Have you contacted your official support provider, seen if they can provide any guidance?
by chulett
Tue Jan 26, 2016 5:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Could not open transformer in 11.3
Replies: 5
Views: 3003

Is that O/S supported for the client? If so, I'd try reinstalling the client.
by chulett
Mon Jan 25, 2016 12:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Get rejects while reading data using Oracle connector?
Replies: 2
Views: 1006

Can't answer the connector question but can the job recognize the "inconsistent" data before the Oracle connector or does the database need to do the dirty work? Thinking a logical reject rather than a physical one would do the trick here.
by chulett
Mon Jan 25, 2016 8:28 am
Forum: General
Topic: sequence job failure
Replies: 16
Views: 5427

I'm wondering is this is a generic question or a very specific one... as in are they asking about this specific job in this specific sequence specifically? Or is this meant to be more general where X fails and for some reason you'd want to start at X-1 generally.

:wink:
by chulett
Mon Jan 25, 2016 8:20 am
Forum: General
Topic: Reset the sequence
Replies: 2
Views: 1040

Required? When you want the failed sequence job to restart from the beginning regardless of what did (or did not) happen in the previous run. Nothing more than that. Perhaps a sequence job failed, you cleaned up the mess, fixed the issues and for whatever reason you need it to start all over again.
by chulett
Sun Jan 24, 2016 8:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to store entire XML HIerachy in one attribute in table
Replies: 5
Views: 1957

Are you certain that your XML will always be that small, fit in that varchar? I was thinking it would be something more like a CLOB or a dedicated XML data type.