Search found 53125 matches

by ray.wurlod
Wed Apr 18, 2007 3:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TRIM
Replies: 9
Views: 7175

Maybe you could test the rightmost character with IsValid() to determine whether it is a valid string. A character that is valid as a ustring but not as a string might fall into your "non-ASCII" class.
by ray.wurlod
Wed Apr 18, 2007 3:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Peoplesoft connection
Replies: 4
Views: 2510

There is no magic wand. If you've customized the CRM, you have to customize the extraction portion of your ETL to match.

As far as I am aware there is no such thing as an "API stage" either.
by ray.wurlod
Wed Apr 18, 2007 3:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSGetStageInfo in Parallel job
Replies: 14
Views: 6333

Forget the function. The same number is available in the system variable @INROWNUM.
by ray.wurlod
Wed Apr 18, 2007 3:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: look up
Replies: 8
Views: 1545

Your job design needs three lookups, not one.
by ray.wurlod
Wed Apr 18, 2007 3:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-03113: end-of-file on communication channel
Replies: 31
Views: 12233

There are also limits on row size and column count for ODBC that are set in the uvodbc.config file. Defaults are 8KB and 400 respectively; they are set using MAXFETCHBUFF and MAXFETCHCOLS.
Are you using ODBC as the connection type in your Dynamic RDBMS stage?
by ray.wurlod
Wed Apr 18, 2007 3:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Designing Sequnece job
Replies: 7
Views: 1410

Not true. DataStage job will generate processes. You can run as many processes as the resources (CPU, memory, I/O bandwidth, etc.) will support. If you choose to use some of your resources running parallel (simultaneous) instances of things, that's your choice, even with only one CPU. If each proces...
by ray.wurlod
Wed Apr 18, 2007 3:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Access 7.1 server job from 7.5.1.A client
Replies: 7
Views: 1483

Re: Access 7.1 server job from 7.5.1.A client

jeyavel wrote:Can we access the job(version 7.1) from Datastage client 7.5.1.A?.

No.
by ray.wurlod
Wed Apr 18, 2007 3:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to execute PL/SQL code
Replies: 2
Views: 973

This would be the simplest of DataStage jobs.
You do not need PL/SQL at all.
by ray.wurlod
Wed Apr 18, 2007 3:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding subroutine
Replies: 12
Views: 3384

My guess would be that "U" is a name and "you" is a pronoun and that you use each appropriately.
by ray.wurlod
Wed Apr 18, 2007 3:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: usage of APT_CONFIG_FILE
Replies: 8
Views: 3030

The configuration file specified by APT_CONFIG_FILE is for parallel jobs. You are trying to specify it for a server job. Anything you create with the Configurations editor in Manager will make no sense whatsoever in a server job. For what purpose do you want to use a "configuration file"? Might I su...
by ray.wurlod
Wed Apr 18, 2007 3:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using the delimiter character (ý) in sequential
Replies: 10
Views: 4804

Use a hex editor on your source data. Or you only trying to create a target file with 253 as the delimiter?

Please advise whether you have DataStage NLS enabled and, if so, what map is being specified for the Sequential File stage.
by ray.wurlod
Wed Apr 18, 2007 3:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic Hash file still splitting !
Replies: 4
Views: 1168

An empty hashed file (one with zero records) will have a header in each of DATA.30 and OVER.30. The header is 2KB in size unless GROUP.SIZE is set to 2, in which case the header is 4KB in size. You hashed file is therefore using only one buffer in OVER.30. This might be an overflowed group, it might...
by ray.wurlod
Wed Apr 18, 2007 3:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multirow lookup between an hashed file and an oledb stage
Replies: 7
Views: 1553

You can use a UV stage for this. You need to "lie" that the keys are fromValue and to_Value, and to use user-defined SQL to incorporate your condition. SELECT id,fromValue,toValue,Description FROM hashedfile WHERE ? >= fromValue and ? <= toValue; It will also be necessary that a VOC entry exists for...
by ray.wurlod
Wed Apr 18, 2007 3:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unmappable characters
Replies: 7
Views: 3286

DataStage NLS replies upon a byte order mark being present in the file header. This tells DataStage whether the byte order of the machine is big-endian or little-endian. Byte order is critically important when there can be more than one byte per character. For example, in a hashed file the first two...
by ray.wurlod
Wed Apr 18, 2007 2:57 pm
Forum: General
Topic: How to add sequence number
Replies: 7
Views: 2263

Is the base number hexadecimal and you wish to add, or is it the leading digits to which you want to append a four digit sequence number? Should the sequence number be hexadecimal or decimal?