Search found 15603 matches

by ArndW
Mon Dec 10, 2007 7:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Designer Menu Lost
Replies: 8
Views: 1689

I know I've done that before as well. Can you click (left or right) in the menu bar space to see if you get an option? Worst case you might just reinstall the designer or check and remove the registry entries. I don't have DS on this machine to cross-check, sorry.
by ArndW
Mon Dec 10, 2007 7:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delimiter not found at offset
Replies: 3
Views: 10270

That is odd - you have 2 columns separated by a comma in your source but need to append a 2nd "," in order to read this file? Have you specified fixed width - as indicated by the error message?
by ArndW
Mon Dec 10, 2007 6:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Designer Menu Lost
Replies: 8
Views: 1689

I have one here that I could loan you :roll:

Seriously, which part of the Designer screen is gone? The actual menu text bar, the graphics or something else?
by ArndW
Mon Dec 10, 2007 6:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid Character conversion
Replies: 11
Views: 3299

Find out which ASCII character they map to, and use CHAR(nnn) to see if the error goes away. Which one of the 3 is causing the issue?
by ArndW
Mon Dec 10, 2007 6:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is the meaning of Return Code 141 Of DataStge job
Replies: 2
Views: 3325

I didn't know what code 141 meant, but I used the search button to find it.

DSJE_LOGTOFAILED -141 Failed to log to UV account


What is your dsjob syntax? Are you returning a unix code or a DataStage one? Are you certain you are actually running the job?
by ArndW
Mon Dec 10, 2007 6:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning for conversion from String to date
Replies: 11
Views: 3125

"did not work" doesn't help much in analyzing the problem. What happened? Did the machine crash? Was the output just 0000-00-00? Are you 100% certain that this date column is generated the error messages? Do you know which value of Date is causing this? You can narrow it down to the row - using IsVa...
by ArndW
Mon Dec 10, 2007 4:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning for conversion from String to date
Replies: 11
Views: 3125

This is a case for using Stage Variables. You don't need to TRIM() each input column 3 times. Do it once in a Stage Variable and use that value. A valid date would have a LEN of 10 and have 2 '-' characters in addition. What about using the IsValid() function - have you tried that?
by ArndW
Mon Dec 10, 2007 4:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: backup at unix server
Replies: 1
Views: 977

The DataStage client programs can only be installed on the supported Windows versions - they cannot be installed on UNIX.
by ArndW
Mon Dec 10, 2007 4:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Character data, right truncation occurred
Replies: 8
Views: 7474

CHAR is going to be same length, 1 byte per CHAR, on all systems unless you are working with multibyte NLS representations, in which case one CHAR can be multiple bytes. Actually, are you sure of you data types? The strings you listed in your original post are very reminiscent of binary data (i.e. C...
by ArndW
Mon Dec 10, 2007 4:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning for conversion from String to date
Replies: 11
Views: 3125

sendmkpk/devidotcom - both of you are correct , I was wrong. Even though I had written DCOUNT I was thinking in terms of the COUNT function. COUNT("yyyy-mm-dd","-") is 2 and DCOUNT("yyyy-mm-dd","-") is 3. The "#2" part means "<>2". It makes sense to use the COUNT function in this place instead of DC...
by ArndW
Mon Dec 10, 2007 3:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error:"main_program: Fatal Error: Field not found: Col1
Replies: 7
Views: 1744

The error message is clear. Without RCP you need to declare your source and target columns explicitly; in this case you haven't declared "Col1". When RCP is turned on the job assumes that a column exists when you use it, so this error would disappear. Since you didn't state what problems you are get...
by ArndW
Mon Dec 10, 2007 3:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing COlumn name as parameter
Replies: 1
Views: 2121

Yes, it is possible to pass a column name as a parameter. I don't understand the link portion of your question. You can create a modify stage to create a new column and use the parameterized column name in that modify stage.
by ArndW
Mon Dec 10, 2007 3:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning for conversion from String to date
Replies: 11
Views: 3125

sendmkpk - yes, you are wrong. How many "-" characters does a correctly formatted yyyy-mm-dd string have?
by ArndW
Mon Dec 10, 2007 3:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid Character conversion
Replies: 11
Views: 3299

If you remove the column with the StringToDate() does the error go away or remain?
by ArndW
Mon Dec 10, 2007 3:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCI has fetched truncated data
Replies: 10
Views: 3554

Can you explain how a TimeStamp value can fit into CHAR(10) with an example where there is no truncation of data occurring during the conversion? Your search should be more into why the development environment is not producing this error.