Search found 15603 matches

by ArndW
Mon Mar 17, 2008 7:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error executing View Data command in Parallel--##F TFPX 0000
Replies: 9
Views: 1734

I just realized that it is using "/TMP", this would be the value for the TEMP directory as specified in the uvconfig file. Try creating "C:\TMP" (use the correct case, just in case) and see if it works then. Either that, or change your uvconfig to point to a correct location.
by ArndW
Mon Mar 17, 2008 7:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: writing High Values into Asci or Binary File
Replies: 6
Views: 2098

DataStage has no knowledge of "HIGH VALUE" - it is a COBOL concept. In most cobol implementations a PIC(X) high value is 0xFF but I seem to recall that there are differences depending on the COBOL implementation. ANSII Standard would be 0xFF. I can't recall what is used for COMP-n data types, I don'...
by ArndW
Mon Mar 17, 2008 7:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Duplicate rows based on value passed
Replies: 7
Views: 1993

You will have to write a loop in this case since you have 2 values, the start and end. This would best be done with a wrapper stage.
by ArndW
Mon Mar 17, 2008 7:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error executing View Data command in Parallel--##F TFPX 0000
Replies: 9
Views: 1734

Ok, does ""E:/Ascential/DataStage/Scratch"" exist and does your userid have RWD access to it?
by ArndW
Mon Mar 17, 2008 7:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null handling in Sequential Files for decimal fields
Replies: 4
Views: 1566

Using " " (22 spaces) is the correct way to do it. What is the exact error you get when you use this value?
by ArndW
Mon Mar 17, 2008 7:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: writing High Values into Asci or Binary File
Replies: 6
Views: 2098

"high" and "low" values are a COBOL concept - is this data going back to COBOL? You will need to check what the EBCDIC "HIGH VALUE" is and either use that value in a binary field, or use the appropriate ASCII mapping for a non-binary one so that when the file is converted back to EBCDIC those values...
by ArndW
Mon Mar 17, 2008 5:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to extract Pipe delimiter files...
Replies: 2
Views: 787

What have you tried so far and what errors did you get?
by ArndW
Mon Mar 17, 2008 5:12 am
Forum: General
Topic: Help regarding Datastage ORacle stage
Replies: 9
Views: 5161

Re: Help regarding Datastage Oracle stage

...that will convert the NULL to Blanks and trying to work it out on the problem... You cannot convert NULLs to Blanks in an integer field (at least not in a transform stage)! Let us keep the test program simple, just a source Oracle stage to read 1 column that is a width 1 integer, then write to a...
by ArndW
Mon Mar 17, 2008 5:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to remove double quotes with in the value
Replies: 11
Views: 1866

You have now re-written your file without delimiters and quotes, so it will look like your original file except that all occurrences of '\"' are now '""'. Now read it with your original 6 column definition.
by ArndW
Mon Mar 17, 2008 5:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to avoid complex joins?
Replies: 7
Views: 1236

The complexity of a join doesn't change depending upon data source type - it is a matter of your join logic.
by ArndW
Mon Mar 17, 2008 3:56 am
Forum: General
Topic: Help regarding Datastage ORacle stage
Replies: 9
Views: 5161

No, I have not seen this error before. And we are trying to help you get around this problem - if there were a known solution someone would have posted it already. Can you write a simple test job using just one of these integer columns and no others. Have you checked the DDL for *both* your source a...
by ArndW
Mon Mar 17, 2008 3:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to remove double quotes with in the value
Replies: 11
Views: 1866

How did the pipe character get into the output file path name? A "named pipe" is something very different. Try it with a normal sequential file first.
by ArndW
Mon Mar 17, 2008 3:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error executing View Data command in Parallel--##F TFPX 0000
Replies: 9
Views: 1734

I hope that your F:\ drive is local to the server. What does your APT_CONFIG_FILE read for the scratch path?
by ArndW
Mon Mar 17, 2008 3:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to remove double quotes with in the value
Replies: 11
Views: 1866

Read the file as just one big column with no quotes. Use "EREPLACE(In.BigColumn,'\"','""') to convert all \" to "" (the correct representation) and write that back to a file with no quotes. You can then use this new file as your input and DataStage will correctly convert the "" to single " in the st...
by ArndW
Mon Mar 17, 2008 3:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error executing View Data command in Parallel--##F TFPX 0000
Replies: 9
Views: 1734

You APT_CONFIG_FILE specifies a UNIX pathname for the resource scratchdisk which doesn't exist on your windows machine.