Search found 15603 matches

by ArndW
Tue Mar 02, 2010 8:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: U_ILLEGAL_ARGUMENT_ERROR encountered in Datastage PX 7.5.2
Replies: 7
Views: 3138

As mentioned before, change the field to a CHAR one and see what the contents are. DataStage is expecting a delimiter and not seeing one; I would point towards data changes.
by ArndW
Tue Mar 02, 2010 8:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: when to use RCP
Replies: 10
Views: 9269

RCP can be confusing at first, since you can do manipulations on columns that don't seem to exist. Along the same lines, you can get confusing warnings in joins when a column is marked as "duplicate" because it is coming from RCP. In terms of execution and compile times there is no differe...
by ArndW
Tue Mar 02, 2010 4:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column ... floating point decimal is not fully supported;
Replies: 11
Views: 4726

The recommendation remains to demote this to an informational level message as the message cannot be avoided and is generally not a valid warning.
by ArndW
Tue Mar 02, 2010 3:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal Error: Invalid Julian day
Replies: 5
Views: 18649

What datatype is "NEWCHABIM" - if you look at your code your are treating it as a string in the THEN clause, but as a date in the ELSE clause.
by ArndW
Tue Mar 02, 2010 3:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Get end of Month based on year and Month
Replies: 19
Views: 8627

The solution given in the thread solves your problem as well. Add 1 to the month then subtract a day. That also solves leap year issues.
by ArndW
Tue Mar 02, 2010 3:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column ... floating point decimal is not fully supported;
Replies: 11
Views: 4726

I liked on of Ray's old posts on this subject: It's all Oracle bin Larry's fault for not having a proper Integer data type. You can not prevent this message without adjusting your metadata precisely to match that of Oracle, and even then you will get a message logged (a slightly different one). This...
by ArndW
Tue Mar 02, 2010 3:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Null handling and reject link
Replies: 8
Views: 3334

Since you already have a transform stage in the job then use that stage and a NullToValue() function.
by ArndW
Sun Feb 28, 2010 10:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading issue for a cobol file.
Replies: 13
Views: 6197

I'm not at a location where I can check now, but I would suggest using a normal INTEGER instead of smallint for MI_NBR_OF_TABLE_ENTRIES.
by ArndW
Sun Feb 28, 2010 9:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Config file issue with orchadmin
Replies: 5
Views: 3107

Sunny is mostly correct but I do need to correct one fallacy. If a dataset is written with a 2-node configuration there is nothing that prevents a 4-node configuration job to read it; DataStage will automatically and implicitly repartition the dataset.
by ArndW
Sun Feb 28, 2010 5:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading issue for a cobol file.
Replies: 13
Views: 6197

What happens when you remove all record delimiters in the CFF stage, that should either work or give a different error message.
by ArndW
Sun Feb 28, 2010 5:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Config file issue with orchadmin
Replies: 5
Views: 3107

That config file is just a temporary one, not the one stored in the dataset. Use "orchadmin describe {dataset}" or "orchadmin ll {dataset} to get the configuration file information.
by ArndW
Sun Feb 28, 2010 5:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: A user name is required in the dboptions option.
Replies: 1
Views: 776

You will need to provide more information in order to get a good answer to this one. Does your DB stage (which one is it, by the way?) use hardcoded variables or job parameters and what are the runtime values?
by ArndW
Fri Feb 26, 2010 12:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Segmentation Fault - core dumped
Replies: 3
Views: 2163

Sree569 - your question, if asked at a car repair shop is like asking "The red light goes on in my instrument panel. What is wrong?". :) Please add some more information to your post. Has this ever worked before or have you already successfully connected to SQL Server from your DataStage i...
by ArndW
Fri Feb 26, 2010 12:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading issue for a cobol file.
Replies: 13
Views: 6197

Generally COBOL files have no delimiters.

What is the PICture for MI_NBR_OF_TABLE_ENTRIES and what datatypes are you defining in DataStage for that column? Which stage is generating that runtime warning message?
by ArndW
Fri Feb 26, 2010 12:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Replacing Alphabets by Numbers
Replies: 2
Views: 1206

Write a DataStage Routine passing in InString: AValue = SEQ('A') ZValue = SEQ('Z') WorkString = UPCASE(InString) StringLength = LEN(WorkString) Ans = '' FOR I = 1 TO StringLength CharValue = SEQ(WorkString[I,1] IF CharValue => AValue AND CharValue <= ZValue THEN Ans := FMT(CharValue-AValue+1,"2...