Search found 15603 matches

by ArndW
Mon Sep 21, 2009 8:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: *DataStage*DSR_LOADSTRING
Replies: 8
Views: 2420

Can you rename the job you are tring to overwrite? If so, does the import give you the same error? Does your userid have RW access to the DS_AUDIT file in the project directory? If yes, then the error might lie in a corrupted DS_AUDIT hashed file, but I would say that the access rights are a more li...
by ArndW
Mon Sep 21, 2009 8:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: delete records in a dataset based on a key
Replies: 2
Views: 1273

As Craig has already stated, one cannot treat a dataset like a table and selectively delete or modify records. If you need to do that, you would need to write a job to selectively perform these actions while copying to a new dataset.
by ArndW
Mon Sep 21, 2009 5:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: link collector
Replies: 11
Views: 5098

The two are independant of each other and do not need to be used as a pair.
by ArndW
Mon Sep 21, 2009 4:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: *DataStage*DSR_LOADSTRING
Replies: 8
Views: 2420

You cannot rename jobs from UNIX. You could change the name in the DS_JOBS entry for that job but would need to do so from within the ds shell or from the admin tool. Your best bet would be to find someone with GUI access to rename the job for you.
by ArndW
Mon Sep 21, 2009 3:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: *DataStage*DSR_LOADSTRING
Replies: 8
Views: 2420

Do you get the error if you don't update the job but create a new one? this means renaming the original to something else before running the import.
by ArndW
Mon Sep 21, 2009 3:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: link collector
Replies: 11
Views: 5098

Yes, while a link collector stage performs no SQL "join" functions, it does perform, in effect, a "UNION" of n-input links into one output link regardless of values as long as the columns are identical.
by ArndW
Mon Sep 21, 2009 1:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Project Deletion Unsuccessful
Replies: 14
Views: 3446

By using a UNIX level delete of the directory you have corrupted your project and no longer can delete it normally. Try creating a new dummy project, then copying that directory contents to your old project directory and re-trying your delete. Ahh, I just saw that you have version 8, that method may...
by ArndW
Mon Sep 21, 2009 1:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handling DBCS/CJK characters
Replies: 12
Views: 5488

first, don't look at the remote file, look at the file on the UNIX box after transfer. If the characters are still correct then you have removed a possible error source. The sequential file read stage will use the project default NLS setting. Assuming this is "UTF-8" it will read this file...
by ArndW
Sun Sep 20, 2009 5:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handling DBCS/CJK characters
Replies: 12
Views: 5488

Almost every single NLS thread here on DSXChange which deals with transformation or mapping problems has at least one post that explicitly says not to use the "view data" from the designer to detect or check multibyte character. This thread is now no longer an exception. Use your favorite ...
by ArndW
Sun Sep 20, 2009 5:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing Null to a Integer Column in Sequential file
Replies: 2
Views: 895

There is a big difference between a "NULL" and an "empty" column value. In your case you want an empty value, which is easy to generate as server edition is not really type-bound. Just declare it as a string in the output and, if necessary, put in a derivation of "IF In.Numb...
by ArndW
Sun Sep 20, 2009 5:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help in understanding "KeyMgtGetNextValueConcurren
Replies: 1
Views: 981

Yes, you need to ensure that both files "open"ed point to the same physical file. You can replace the "OPEN" command on one project with an "OPENPATH" command and use the full path to the hashed file in the other project.
by ArndW
Fri Sep 18, 2009 8:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: czech characters
Replies: 3
Views: 1635

What is the DB2 database NLS setting - both within DB2 and from your DataStage ENVironment's settings?
by ArndW
Fri Sep 18, 2009 8:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: This item has no design time information
Replies: 6
Views: 9373

It is possible for the jobs to only contain executables and no design-time information. You can edit the .dsx files to check.
by ArndW
Fri Sep 18, 2009 8:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: issue with null handling
Replies: 12
Views: 4267

Yes, you can find and edit it's default value in the Administrator, then insert and include the variable as a parameter in your job(s).
by ArndW
Fri Sep 18, 2009 8:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wave Processing - end-of-wave detection question
Replies: 6
Views: 3095

Sreeni - could you explain? I have been using waves in this project at V8.0 for over a year with great success. I am specifically looking for a manual method of triggering or processing waves; when done through the normal wave mechanism this is 100% transparent but unfortunately the sequential file ...