Search found 53125 matches

by ray.wurlod
Tue May 06, 2008 9:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: source with no date column and target is a sequential file
Replies: 4
Views: 1832

Since you have no other way to identify the changes, you will have to do all the comparisons. No way around it. You might like to use the CRC32() function, so that there's only one comparison, but you have to apply it both to your new source data and to the corresponding row in the target, in both c...
by ray.wurlod
Tue May 06, 2008 9:22 pm
Forum: IBM QualityStage
Topic: How to read CURSOR RESULT SET(DB2 Stored Procedure thru STP)
Replies: 1
Views: 1256

Why is this in the QualityStage forum? Does the job include QualityStage plug-ins?
by ray.wurlod
Tue May 06, 2008 6:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: subprocess command failed with exit status 256
Replies: 3
Views: 3091

Yeah, but DataStage is still a 32-bit application on Linux platforms. That situation will doubtless change one day.
by ray.wurlod
Tue May 06, 2008 6:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD.SEQOpen An NLS map (ISO8859-2) has been specified,but...
Replies: 1
Views: 1102

Go to the Administrator client and determine whether this map has been built and loaded. If not, build and load it by dragging it onto the right hand list. You will also need to restart DataStage services to get the newly-built map loaded into memory.
by ray.wurlod
Tue May 06, 2008 6:19 pm
Forum: IBM QualityStage
Topic: running QS job from unix
Replies: 13
Views: 3699

You have to substitute JOBNAME with the actual name of your job. Do an ls listing in the Scripts directory to see the names of the script files.
by ray.wurlod
Tue May 06, 2008 4:42 pm
Forum: IBM QualityStage
Topic: running QS job from unix
Replies: 13
Views: 3699

You need the pathname of the script unless (a) you are in the Scripts directory, and (b) "." is in your PATH. It can be a relative path so, for example, if you are in the Scripts directory, you could specify ./JOBNAME.stp -ipe.env JOBNAME.env -ipe.env /opt/qsadm/Ascential/QualityStage/Projects/DEV/i...
by ray.wurlod
Tue May 06, 2008 4:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: subprocess command failed with exit status 256
Replies: 3
Views: 3091

Thanks for that - might mark thread as Resolved.

Except on Itanium, ALL DataStage servers are 32-bit applications (currently, anyway) and therefore must find 32-bit libraries. DataStage can not use 64-bit libraries which, more and more, are the default for database client applications.
by ray.wurlod
Tue May 06, 2008 4:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Double to Decimal Conversion
Replies: 3
Views: 1268

Be more precise about your Decimal data type - what precision and scale have you specified? What is the setting of the Decimal Output property in the Aggregator stage for the column(s) in question?
by ray.wurlod
Tue May 06, 2008 4:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is there anyway to build/process arrays with using C++ ?
Replies: 4
Views: 1337

Nothing with in DataStage allows for indexed array processing of this kind.

You could fabricate a "dynamic array" as a delimited string, but there's still no convenient way to "traverse it multiple times".

Therefore, yes, you are going to need to create some code.
by ray.wurlod
Tue May 06, 2008 4:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: VARCHAR becomes LONGVARCHAR while importing
Replies: 1
Views: 725

I believe the "boundary" is a length of 4096, to comply with the ODBC 3.5 (and earlier) standard.
by ray.wurlod
Tue May 06, 2008 4:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change Data Capture stage
Replies: 17
Views: 4204

What is the value of APT_STRING_PADCHAR environment variable?
by ray.wurlod
Tue May 06, 2008 4:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Complex File Stage: variable block files
Replies: 8
Views: 3752

The COBOL FD importer should handle it automatically. You probably end up with a tagged subrecord in the schema definition.
by ray.wurlod
Tue May 06, 2008 4:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning message problem
Replies: 5
Views: 1361

Emplace a Sort stage on the input of the Remove Duplicates stage. Even if the Sort stage specifies a sort mode of "don't sort, previously sorted" (because the keys are already correctly sorted) that should be sufficient to prevent the alert from being generated.