Search found 53125 matches

by ray.wurlod
Wed Jul 26, 2006 3:38 pm
Forum:
Topic: Configuring NLS characters in MetaStage Browser
Replies: 8
Views: 3327

The ? is used to indicate a character that can not be successfully mapped using the current map (= code page) setting. In theory MetaStage is automatically NLS-enabled if your client computer's default character set is multi-byte. However, ISO 8859-1 is not a multi-byte character set. This might exp...
by ray.wurlod
Tue Jul 25, 2006 11:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error on subtraction of two decimal(19,3) number
Replies: 9
Views: 3390

If what you say is true, and I'm not doubting you, then you may have uncovered a bug? What are the data type declarations in the generated C++ code?

I think your next step must be to report this suspected bug through your support provider. They will need a clearly documented reproducible case.
by ray.wurlod
Tue Jul 25, 2006 11:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can we achieve version control in DSPX
Replies: 11
Views: 3458

DataStage Version Control does keep track of different versions of jobs. It can auto-increment version numbers when jobs are promoted from development to test, for example. However, it does not have check-out, check-in capability. That is, it is version control, not source code control.
by ray.wurlod
Tue Jul 25, 2006 11:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Incorporating Parallelism
Replies: 19
Views: 4556

Yes. Do you want to use different configuration files also? Just make $APT_CONFIG_FILE a job parameter for the multi-instance parallel job.
by ray.wurlod
Tue Jul 25, 2006 11:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using Schema file
Replies: 4
Views: 1324

All columns must exist in one or the other (or both). If runtime column propagation is disabled, all columns must exist in the link properties irrespective of what is in the schema file.
by ray.wurlod
Tue Jul 25, 2006 11:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error on subtraction of two decimal(19,3) number
Replies: 9
Views: 3390

I doubt very much that it gives "xxx" as the fractional digits. Please advise one or two specific cases of incorrect subtraction, and whether it's all subtractions that give a wrong result, or only the occasional one. I presume you are using a parallel Transformer stage here? Have you inspected the ...
by ray.wurlod
Tue Jul 25, 2006 9:06 pm
Forum: Site/Forum
Topic: Laziness!
Replies: 18
Views: 8952

I propose to continue "answering" with "etiquette notes" in dark red. No useful answers until the post appears in the correct forum.
by ray.wurlod
Tue Jul 25, 2006 9:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSR.ADMIN: Failed to write to project file.
Replies: 10
Views: 7209

It might be courteous to check with the current owner first. Otherwise the risk is that that user will simply change it back again!
by ray.wurlod
Tue Jul 25, 2006 9:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: What is the equivalent of Join Stage of PX in server.
Replies: 3
Views: 2334

In server jobs you can perform the join in the database wherever possible. If they are disparate databases, perform the join (lookup) using a Transformer stage. This returns null in all columns if the lookup does not succeed, effectively a left outer join. To get an inner join, constrain the output ...
by ray.wurlod
Tue Jul 25, 2006 8:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Empty Date field Export to Seq File
Replies: 10
Views: 3824

Import is different depending on whether the source file is delimited or fixed width. If it is delimited, then you CAN have "" as the representation of null.
by ray.wurlod
Tue Jul 25, 2006 8:53 pm
Forum: IBM QualityStage
Topic: Regarding QualityStage plugin
Replies: 2
Views: 1469

You also require the QualityStage runtime manager (qsrtmngr), which must be started (startup script?) and, possibly, have its port number (configurable) opened in any firewall software.
by ray.wurlod
Tue Jul 25, 2006 3:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating a shared container
Replies: 4
Views: 1087

Or a BuildOp (one kind of custom stage).

Or just rely on the fact that C strings are null-terminated; that is, Char(0) is already "".
by ray.wurlod
Tue Jul 25, 2006 3:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clearing Multi Instance logs with CLEAR.FILE
Replies: 12
Views: 5952

The major downside is that you lose all the control information, such as auto-purge settings and "last started event number" history. You can invoke CLEAR.FILE through DSExecute, or there is a ClearFile statement in DataStage BASIC (you need to have opened the hashed file). From a BAT file the synta...
by ray.wurlod
Tue Jul 25, 2006 3:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UDB Timestamp question
Replies: 4
Views: 2117

Where are you deriving the microseconds. DataStage's Time() function only delivers milliseconds - you need the System() function to deliver microseconds (and, even then, the operating system must support microseconds, and you may need a routine so that you can set $OPTIONS appropriately).
by ray.wurlod
Tue Jul 25, 2006 3:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to initialize plug-in:
Replies: 7
Views: 2242

DataStage is a 32-bit application (Oracle client) on most platforms. Therefore, for DataStage processes, lib32 must precede lib in the shared library search path.