Search found 53125 matches

by ray.wurlod
Fri Sep 01, 2006 3:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: nls_read_delimited()
Replies: 1
Views: 1670

What is your delimiter character? Does this character appear anywhere in the data? How, precisely, is field6 defined? Is what you've posted on one line or three lines in the source file?
by ray.wurlod
Fri Sep 01, 2006 3:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS Installation
Replies: 13
Views: 4532

No.

The only, repeat only, version of DataStage lower than 8 that supports parallel execution on a Windows platform is 7.5x2
by ray.wurlod
Fri Sep 01, 2006 3:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: List of JobNames from a Sequnce
Replies: 11
Views: 4286

It can be done without the TRANS() function using a "proper" join. SELECT DS_JOBS.NAME, EVAL DS_JOBOBJECTS.'@RECORD<31>' FMT '32L' COL.HDG 'Dependent Job(s)' FROM DS_JOBS, DS_JOBOBJECTS WHERE DS_JOBS.NAME = '<<SequenceName>>' AND DS_JOBOBJECTS.OBJIDNO = DS_JOBS.JOBNO AND DS_JOBOBJECTS.OBJTYP...
by ray.wurlod
Fri Sep 01, 2006 2:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning while importing metadata from DB2
Replies: 10
Views: 3501

System tables. You don't create system tables.
by ray.wurlod
Fri Sep 01, 2006 2:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating duplicate rows from input dataset
Replies: 4
Views: 1113

You might most easily be able to accomplish this in a shell script invoked from an External Filter stage. There does not have to be a one-to-one mapping between input and output row counts from this stage type.
by ray.wurlod
Fri Sep 01, 2006 2:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: writing into a unix file from datastage
Replies: 11
Views: 9118

I'd be inclined to create a routine to be invoked from a Routine activity in which the list of addresses is read and composed into the Addressee field in the DSSendMail() function call.
by ray.wurlod
Fri Sep 01, 2006 2:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding Oracle Enterprise Stage Warnings
Replies: 5
Views: 1979

Is that Varchar2(50 CHAR) is equal to Varchar(200) in DS because of NLS_CHARCTERSET=ALT32UTF8 settings in Oracle?? No. That might give 100, but not 200. If I read it as Varchar(200) and write to sequential file as Varchar(50)- then is there any possibility for truncation of data?? Yes. Think about ...
by ray.wurlod
Fri Sep 01, 2006 2:42 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Use PS to access flat file
Replies: 5
Views: 3646

Try using the Ascential-supplied ODBC text driver.

And/or make sure that the ODBC DSN is configured with the correct format option (e.g. CSV, first line is header, etc.)
by ray.wurlod
Thu Aug 31, 2006 8:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ArraySize and Transaction Size
Replies: 16
Views: 4209

1024 / rowsize
by ray.wurlod
Thu Aug 31, 2006 6:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ArraySize and Transaction Size
Replies: 16
Views: 4209

(Array size * row size) should be close to, but not over, network packet size (or a multiple thereof) for optimum transmission. (Rows per commit) - or transaction size - is mediated by a number of factors, but should always be a multiple of array size. Array size of 1 with rows per commit of 1 guara...
by ray.wurlod
Thu Aug 31, 2006 6:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashfile corrupted
Replies: 7
Views: 1213

Prevention is better than cure.

Make sure that the T30FILE tunable is large enough for the maximum number of open hashed files system wide at any time.

Monitor your hashed files and resize them to use 64-bit addressing if they go over, say, 1.5GB.
by ray.wurlod
Thu Aug 31, 2006 6:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No record JOBPARAMINSTS in executable job file RT_CONFIG410
Replies: 1
Views: 1056

Re-compile the job sequence(s) giving the problem.
by ray.wurlod
Thu Aug 31, 2006 6:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update Strategy
Replies: 12
Views: 1688

Do you have any bitmap indexes? These are notoriously slow to update.
by ray.wurlod
Thu Aug 31, 2006 6:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: corntab scheduling
Replies: 6
Views: 1195

Is this some new scheduler out of the deep South, or just a typo? :lol:
by ray.wurlod
Thu Aug 31, 2006 6:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: exponential formula in a subroutine
Replies: 1
Views: 1471

"Scientific notation" in DataStage requires an upper-case E. Thus 2.345e-006 would be regarded as a string, but 2.345E-006 would be interpreted as a number. You can use the Num() function to verify. The maximum supported exponent in DataStage is +38, the minimum supported exponent is -38, and the ov...