Search found 53125 matches

by ray.wurlod
Mon Jul 27, 2009 5:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Insufficient information in dsjob report
Replies: 11
Views: 3028

dsjob is a sample program to show how the DataStage API is used.

If you don't like it, you can write your own.

Source code is supplied in the manuals.
by ray.wurlod
Mon Jul 27, 2009 5:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage conversion unix to windows
Replies: 9
Views: 4501

DataStage on Windows actually runs on MKS Toolkit, a UNIX emulator, so it can cope with UNIX pathnames provided that the corresponding Windows folders exist. For example, if your DataStage job refers to /tmp and your logged drive (where DataStage is installed) is D:, then /tmp will automatically ref...
by ray.wurlod
Mon Jul 27, 2009 5:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQLNULL in a hashed file key field
Replies: 6
Views: 3100

The internal representation of null in DataStage is Char(80) by default and this is the value assigned to the @NULL system variable. However, Char(80) has other uses (primarily the Euro character) so the internal representation can be remapped to a different character (such as Char(164)) under certa...
by ray.wurlod
Mon Jul 27, 2009 5:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to check current NLS
Replies: 6
Views: 2061

If the product was installed without NLS there will be no NLS entries in uvconfig at all. This is a definite giveaway!
by ray.wurlod
Mon Jul 27, 2009 5:02 pm
Forum: General
Topic: "OR" in a join
Replies: 7
Views: 2516

Even so, the answer is no in a Join stage. In a Lookup stage you have the possibility of a range lookup but that's a highly specific case of "OR". As noted, please be more specific.
by ray.wurlod
Sun Jul 26, 2009 11:44 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: RTI Export for integration of MDM and IIS
Replies: 7
Views: 5803

Is the Standardization stage still using USADDR/USAREA rule set but trying to apply to Mexican data?

Are the Mexican rule sets properly provisioned?

What, precisely, do you mean by "not working"?
by ray.wurlod
Sun Jul 26, 2009 11:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: fastname Connection refused
Replies: 3
Views: 2990

Search (here, Google, wherever) for "connection refused" and its likely causes. Look at any other warnings that may have been logged with this one.
by ray.wurlod
Sun Jul 26, 2009 11:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading junk characters from Oracle 11g
Replies: 5
Views: 2645

And what are your DataStage NLS settings?
by ray.wurlod
Sun Jul 26, 2009 4:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implicit conversion from source type "dfloat" to r
Replies: 0
Views: 4091

dfloat is potentially bigger than 15 digits so DataStage alerts you to the fact that the implicit conversion to sfloat may result in limitation of the range of representable values. You need to know this.
by ray.wurlod
Fri Jul 24, 2009 10:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Max duration logic...
Replies: 1
Views: 784

SecondsSinceMidnight() [ which may not be the correct name ]

If you apply this function to both times you can subtract to get the interval.
by ray.wurlod
Fri Jul 24, 2009 10:34 pm
Forum: General
Topic: Excel file
Replies: 3
Views: 1450

Import via ODBC table defnition. Make sure that you require system tables to be included, because the ODBC driver for Excel reports worksheets as system tables.
by ray.wurlod
Fri Jul 24, 2009 10:33 pm
Forum: General
Topic: Seqential File
Replies: 1
Views: 1042

There is a fixed-width option on the Format tab. Once this is selected you must provide a space- or comma-delimited list of field widths in the field provided for that purpose. Subsequently you can adjust the field widths if necessary, using the Display Width property in the table or column definiti...
by ray.wurlod
Fri Jul 24, 2009 7:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dataset lookup
Replies: 5
Views: 1097

Rows/sec are misleading you entirely here. 13000 is the rate at which the virtual data set is loaded. Once that completes an in-memory hash table index has to be built. During all of this time the clock is running on the stream input but no rows are processed.
by ray.wurlod
Fri Jul 24, 2009 7:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Adding a Flush record to the end of a file using DataStage
Replies: 9
Views: 2425

There may be an "end of data" token available in a future release (8.5?).
by ray.wurlod
Fri Jul 24, 2009 7:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD - Effective Date - Do not always use currentTimeStamp()
Replies: 5
Views: 2991

Don't know. Haven't needed to try it. Have YOU tried it?