Search found 15603 matches

by ArndW
Mon May 05, 2008 8:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to capture the rejected rows
Replies: 1
Views: 1076

put a transform stage right before your DB write stage, and add a reject link to that transform. This is the way to capture rejects in DataStage server jobs.
by ArndW
Mon May 05, 2008 8:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execute after job subroutine in Transformer
Replies: 4
Views: 1001

No, neither before-job nor after-job routines can do anything with stream data!
by ArndW
Mon May 05, 2008 7:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert Single char to multiple chars
Replies: 9
Views: 3156

The BASIC function "EREPLACE()" will do this, but it does not exist in PX. What problems do you have with the BASIC transform stage at V8 - I have seen that it works quite well and no longer shows sporadic comms issues as it has in the past.
by ArndW
Mon May 05, 2008 6:47 am
Forum: General
Topic: Naming conventions
Replies: 8
Views: 2205

Krisna - those aren't naming conventions, but limitations from the product on what characters jobs can contain.
by ArndW
Mon May 05, 2008 6:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Server Job Compilation
Replies: 12
Views: 7331

The output of the VLIST command are the internal opcode generated by compiling a BASIC program. The opcodes are only documented in an old internal use only document (I think I got my copy in 1984) and it is not for public use. But if you have ever used any assembler language then the output is prett...
by ArndW
Mon May 05, 2008 6:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: tables in DataStage internal format
Replies: 5
Views: 1031

If the other post doesn't help, look at an existing project and ignore all files with numbers in the filename.
by ArndW
Mon May 05, 2008 4:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Integer in hash file to DATE datatype in Sybase database
Replies: 8
Views: 2176

What date format does your Sybase use?
by ArndW
Mon May 05, 2008 4:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: tables in DataStage internal format
Replies: 5
Views: 1031

Create a new project, then "cd" to the directory and do an "ls" from your UNIX shell and you will see a list of the hashed files used.
by ArndW
Mon May 05, 2008 3:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Integer in hash file to DATE datatype in Sybase database
Replies: 8
Views: 2176

Are you writing this internal format date to Sybase? In that case, use

Code: Select all

OCONV(In.InternalDateColumn,"D4/YMD[4,2,2]")
assuming your Sybase default date format is "yyyy/mm/dd"
by ArndW
Mon May 05, 2008 3:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Couldnt able to see the Code
Replies: 4
Views: 1262

Dean - lol, perhaps I have been giving "them" too much credit.
by ArndW
Mon May 05, 2008 2:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: log files
Replies: 16
Views: 5961

These are DataStage hashed files; there is no schema and there is no method of accessing them apart from the TCL command (or the command line tool in the administrator)
by ArndW
Mon May 05, 2008 2:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Stage 7.0 Login failed
Replies: 1
Views: 974

Hello and welcome to DSXChange, Pavan. Using terms such as "urgent" or "ASAP" in posts counterproductive. Many of the frequent posters tend to ignore posts containing those magic words. If you need immediate support then you will have to use your service provider - and that is far pricier than joini...
by ArndW
Mon May 05, 2008 2:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to do a Trim function in Modify state
Replies: 2
Views: 1195

string_trim is the conversion to use, i.e. NewCol=string_trim(OldCol)
by ArndW
Mon May 05, 2008 2:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error setting up internal communication
Replies: 12
Views: 3818

If you change your target sequential file to have the path "/dev/null" does the error still occur?
by ArndW
Sat May 03, 2008 9:35 am
Forum:
Topic: file lock error
Replies: 1
Views: 1723

Moderator - please move to PX Forum Does this .fifo file actually exist? These are named pipe files that are used to communicate between processes. If the file is still present and cannot be accessed, then most likely it is still in use by some process. You can use the "fuser -fux" command to deter...