Search found 42189 matches

by chulett
Tue Nov 03, 2009 11:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error msg
Replies: 7
Views: 3045

It is saying that the link mentioned has a 'Abort after' row limit set in it and that it hit that limit. You need to check that, see why it is happening.
by chulett
Tue Nov 03, 2009 8:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting Sequencer name from the job name
Replies: 16
Views: 5933

DSMaestro wrote:DSGetJobInfo(GetJobStatus(JobName), DSJobController)
Your syntax is bad and you need to let the routine do all the work.

Code: Select all

GetJobStatus(JobName)
by chulett
Tue Nov 03, 2009 8:35 am
Forum: General
Topic: List of inbuilt routines
Replies: 2
Views: 1269

Welcome. Best to take a stab at the documentation first - bring up the docs Bookshelf from the Start menu and then open the Parallel Job Developer's Guide pdf. Appendix B lists all functions, and the first section has the Date & Timestamp specific functions. Keep in mind the fact that a day is 6...
by chulett
Tue Nov 03, 2009 6:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting Sequencer name from the job name
Replies: 16
Views: 5933

Did you try using the macro instead? Did you try looking up the error codes? They are documented.
by chulett
Tue Nov 03, 2009 6:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Status in Server transformer
Replies: 11
Views: 3936

Recheck the syntax. It requires a job handle, not a name, so you'll need to put it in a routine and add a call to DSAttachJob(), then call it with the appropriate InfoType: jHandle = DSAttachJob(JobName) jStatus = DSGetJobInfo(jHandle, DSJ.JOBSTATUS ErrCode = DSDetachJob(jHandle) Begin Case Case jS...
by chulett
Mon Nov 02, 2009 11:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Log file size
Replies: 4
Views: 1152

ray.wurlod wrote:
chulett wrote:Kaboom.
Someone is channeling Marvin the Martian!
Who, me? :wink:
by chulett
Mon Nov 02, 2009 11:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle OCI Initialisation Failed
Replies: 9
Views: 2697

I don't see how that would affect only the use of sqlldr and not OCI in general, but hey fixed is fixed...
by chulett
Mon Nov 02, 2009 6:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date_generation
Replies: 2
Views: 1599

Date generation? Did you perhaps mean data generation? Regardless, your question is way too nebulous for anyone to answer, can you... expand on that a teensy bit? Rephrase? :?
by chulett
Mon Nov 02, 2009 6:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Log file size
Replies: 4
Views: 1152

Kaboom.
by chulett
Mon Nov 02, 2009 6:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle OCI Initialisation Failed
Replies: 9
Views: 2697

And just to be perfectly anal, can you still run the OCI Bulk Loader stage against the original instances?
by chulett
Mon Nov 02, 2009 5:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle OCI Initialisation Failed
Replies: 9
Views: 2697

These 'normal' ODBC connections, are they setup with the wired or the non-wired drivers? The former will work without an Oracle client on the DataStage server while the latter (and any OCI stages) require a client to be installed and for DataStage to be properly configured. This 'configuration' that...
by chulett
Mon Nov 02, 2009 5:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Maximum sql length in OCI
Replies: 6
Views: 6223

Maximum sql length in OCI

Does anyone know exactly how long is "too long" for a SQL query in the OCI stage? I'll ask IBM, but hoping for a speedier answer here, if anyone knows. Trying to cut one down from over 2000 lines, ~40k bytes.

Thanks.
by chulett
Mon Nov 02, 2009 4:16 pm
Forum: General
Topic: Accessing Remote Files
Replies: 2
Views: 1246

Use of the FTP Stage as a source is your only other option I can think of, with all the normal caveats it brings being metadata-driven and all.
by chulett
Mon Nov 02, 2009 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Constraint Data Filtering Issue
Replies: 1
Views: 1153

Yup - your constraint says both need to be non-null to pass. You want an or rather than the and there to say it's only bad if both are null.