Search found 53125 matches

by ray.wurlod
Thu Nov 08, 2007 8:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing Server JobStatus Variable
Replies: 6
Views: 3028

Interim status is the job status assuming that the after-job subroutine that calls it returns properly - without generating warnings or errors and with ErrorCode argument set to 0 - that is, the job status that would obtain if there were no after-job subroutine.
by ray.wurlod
Thu Nov 08, 2007 8:51 pm
Forum: IBM<sup>®</sup> DataStage TX
Topic: Problems with importing from XML Schema(xsd)
Replies: 21
Views: 11067

Clearly Microsoft knows better than you do exactly what you need!
:roll:
by ray.wurlod
Thu Nov 08, 2007 10:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQLSTATE=08S01
Replies: 3
Views: 3741

No, but it may be a problem in the Ascential-supplied DataDirect ODBC driver - you need to track down which end of the socket communication got closed, and why.

An ODBC trace, which you can set up in .odbc.ini, would probably be helpful.
by ray.wurlod
Thu Nov 08, 2007 10:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Least Date
Replies: 4
Views: 2070

You can do this in a DataStage expression using the Minimum() function, but you have to assemble the values into a dynamic array.

Code: Select all

Minimum(existing_value : @FM : input_value)
by ray.wurlod
Wed Nov 07, 2007 10:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSD.RUN phantom error 15504
Replies: 5
Views: 1978

None of the messages you posted is a fatal message. You need to find a message with #E at its beginning, not #W. Please post that.
by ray.wurlod
Wed Nov 07, 2007 10:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: exporting particular category of jobs using command line
Replies: 4
Views: 1396

I don't believe it's possible. dscmdexport exports entire projects. dsexport can export a single job, but can not select a category. You could, of course, create a script (BAT file) that combined dsjob and dsexport.
by ray.wurlod
Wed Nov 07, 2007 10:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQLSTATE=08S01
Replies: 3
Views: 3741

SQLState is a generic ODBC error. Use your favorite search engine to discover more about it. Somewhere, somehow, a socket being used to communicate with DB2 has been closed - you need to do some (external to DataStage) detective work to track that down. Get your DBA and network administrator involve...
by ray.wurlod
Wed Nov 07, 2007 10:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error with TMP directory
Replies: 5
Views: 1960

What is the value of the TMPDIR environment variable? How much free space is there on /tmp? Is /tmp a local file system or an NFS mount?
by ray.wurlod
Wed Nov 07, 2007 10:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: routine failed
Replies: 3
Views: 1058

Your Repository permissions are incorrect. You are not the owner of or in the group associated with the Repository objects, in this case DSU_BP.O but, I dare say, most of the other objects as well. Alternatively, whoever created this routine has had their umask set too tight (probably 022) which mak...
by ray.wurlod
Wed Nov 07, 2007 10:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage v4.2 and Oracle 10g
Replies: 2
Views: 1364

Welcome aboard. Technically no. However, stages are written to a common API so, if you were to get the OCI stage that is compatible with version 9i (from your support provider) and install Oracle 9i client, then you may be able to get it to work. It is worth testing. Of course the OCI stage for 9i m...
by ray.wurlod
Wed Nov 07, 2007 7:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NextSurrogateKey()
Replies: 18
Views: 12828

It's available in server jobs.
Use the Surrogate Key Generator stage in parallel jobs.
by ray.wurlod
Wed Nov 07, 2007 6:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SEPDI File Format Import.
Replies: 4
Views: 1309

A Sequential File stage will work perfectly well. Each line is read as a single VarChar field (I'm assuming there are line terminators) then parsed in a downstream Transformer stage onto three output links (header, transaction and trailer) based on the first four characters (QTOP, QEND or Qxxx). Par...
by ray.wurlod
Wed Nov 07, 2007 6:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage/QualityStage 8.0 : Support for CJK languages
Replies: 4
Views: 1065

There is a DataStage NLS manual. Read that. The CJK characters appear in each of the appropriate Chinese, Japanese and Korean character maps.

Note that server jobs use UV-UTF8 while parallel jobs use ICU (a "true" 16-bit implementation of Unicode).