Search found 15603 matches

by ArndW
Thu Jun 10, 2010 5:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove duplicate
Replies: 4
Views: 1259

The order of key definition is important to DataStage, sorting on columns A,B,C and then doing a remove duplicates on keys C,B,A will generate a warning message at runtime.
by ArndW
Thu Jun 10, 2010 4:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running only selected jobs in same template
Replies: 5
Views: 1471

Could you explain what you mean by 'same template'?
by ArndW
Wed Jun 09, 2010 10:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reg. Date
Replies: 3
Views: 1319

What is your field's data type? If a string, then "In.Col[1,4]:'0':In.Col[5,2]" would do the trick.
by ArndW
Wed Jun 09, 2010 7:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Control fatal error (-14)
Replies: 25
Views: 13418

I should note that Klaus, who gave us the information, was working for IBM at the time and could not do anything apart from referring us to the official IBM support path.
by ArndW
Wed Jun 09, 2010 6:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: wrapper stage failing
Replies: 5
Views: 2048

What about access rights to the directory and its contents (for the userid that you are running DataStage under)? Try temporarily changing the access to 777 to see if this might be the cause.
by ArndW
Wed Jun 09, 2010 3:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: waitForWriteSignal(): Premature EOF Error
Replies: 10
Views: 9696

Why not declare the field as nullable, then do a dummy NulltoValue() or similar call downstream?
by ArndW
Wed Jun 09, 2010 3:46 am
Forum: General
Topic: FTP-2GB file
Replies: 11
Views: 3131

I think that Munch9 has found the cause of your problem. If you are getting 1Gb and divide that by 2097151 that works out to a block size of 512 (a common block size for many UNIX and file system variants). Get your administrator to change that user's maximum file size.
by ArndW
Wed Jun 09, 2010 3:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can we get the System out from datastage job
Replies: 8
Views: 2508

DataStage does not produce a Std out and Std err stream in the classical sense, thus the answer to your query is that you cannot get that information directly. The DataStage equivalent would be the director log file for a job run, which is accessible through API calls.
by ArndW
Wed Jun 09, 2010 3:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Load into Fixed length file
Replies: 9
Views: 4047

Change your output sequential file stage format to fixed-width fields and no delimiters.
by ArndW
Tue Jun 08, 2010 6:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom error
Replies: 4
Views: 1681

It looks as if you have put an output row limiter of 1 on that link from your transfrom stage.
by ArndW
Tue Jun 08, 2010 5:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 'WEEK.TAG' with Sunday as start of week
Replies: 16
Views: 6681

Sorry, that was my mistake - I was thinking of Parallel functions and just now realized that you meant a server job. I'm sorry about that. I would write my own routine and use 3 ICONV/OCONV calls: InternalDate = ICONV(InputDate,"D4/YMD[2,2,2]") ;** assuming that is your date string format ...
by ArndW
Tue Jun 08, 2010 5:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can we get the System out from datastage job
Replies: 8
Views: 2508

What do you mean by "System out"?
by ArndW
Tue Jun 08, 2010 3:49 am
Forum: General
Topic: Date columns in parallel job behaving peculiarly
Replies: 8
Views: 2683

I'm not sure I follow your description corerctly, but would recommend adding a second output from your transform stage to a peek stage so that you can determine if the erroneous null values happen when reading from SQL server into DataStage or when writing to Oracle.
by ArndW
Tue Jun 08, 2010 3:47 am
Forum: General
Topic: FTP-2GB file
Replies: 11
Views: 3131

on a PUT command my guess remains that you don't have enough room in the target directory. What type of UNIX do you have and are both systems running the same OS main version?