Search found 15603 matches

by ArndW
Wed Sep 19, 2007 4:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob parameters
Replies: 2
Views: 1927

This will happen if you have more than one instance of DataStage installed on your QA server.
by ArndW
Wed Sep 19, 2007 4:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: substring + Len
Replies: 3
Views: 1065

In a PX transform stage you would do:

Code: Select all

Trim(DSLink49.COL_NM)[Len(Trim(DSLink49.COL_NM))-2,3]
by ArndW
Tue Sep 18, 2007 11:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dfloat to decimal conversion
Replies: 2
Views: 2832

What are your column definitions for the source dfloat and the target decimal?
by ArndW
Tue Sep 18, 2007 10:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Replicating Syncsort in PX
Replies: 4
Views: 1098

Are you running a 1-node configuration (if not, try it and see if your 'jumbling' might be coming from your repartitioning)
by ArndW
Tue Sep 18, 2007 7:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: installation error
Replies: 8
Views: 1601

Re: installation error

sarangadhar wrote:...-d 06/11/2006...
Hmmm, could it be an expired license?
by ArndW
Tue Sep 18, 2007 7:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: installation error
Replies: 8
Views: 1601

Hello sarangadhar and welcome to DSXChange.

Are you running this on Windows with a userid that is a local administrator?
by ArndW
Tue Sep 18, 2007 7:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: installation enquiry
Replies: 1
Views: 873

see this reply to the same question in the Server forum
by ArndW
Tue Sep 18, 2007 7:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: installation enquiry
Replies: 2
Views: 1192

I am not sure what you mean by "root A" and "root B" on the same server. You can install one or more DataStage instances on any given machine (with 'machine' defined as an instance of an Operating System). The software will allow you to do this using the same license keys. Your contract with IBM doe...
by ArndW
Tue Sep 18, 2007 7:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Have you a trick for : Field not like list of value
Replies: 13
Views: 5556

Use

Code: Select all

Index("Word01,Word02,Word03,Word04,",ds1.field:',')

It is more efficient as well.
by ArndW
Tue Sep 18, 2007 7:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Spaces getting added to the data from Oracle enterprise stag
Replies: 9
Views: 1762

It would be expected if you defined the column as CHAR(5) insteado f VARCHAR(5).
by ArndW
Tue Sep 18, 2007 7:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CRC32 Value different from project to project
Replies: 5
Views: 1408

The mathematics of a CRC32 computation are bit-oriented so should not be different unless you are using different code. Are you certain your versions of DataStage are exactly identical?
by ArndW
Tue Sep 18, 2007 2:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Max Array Size in Basic
Replies: 6
Views: 2234

DS/Basic arrays can be dimensioned more than 32K. The code references "$mam" - what is that value at runtime?
Perhaps the array size referenced here is for your transfer buffer to/from the database.
by ArndW
Tue Sep 18, 2007 12:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Operator terminated abnormally: received signal SIGSEGV..
Replies: 1
Views: 1258

Hello and welcome to DSXChange. Please post the complete error message from your log, or at least that part which details what led up to the SIGSEGV. Disabling the combination will help locate which source object might be causing the problem; best leave it to TRUE in order to make debugging easier.
by ArndW
Tue Sep 18, 2007 12:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to Timestamp Conversion in .CSV file as a Source
Replies: 5
Views: 1251

Just fix and address one problem at a time. Ignore Oracle for the moment, just output to a peek stage or a test flat file.

If you output the timestamp column with your StringToTimeStamp() function does it show a correct timestamp?