Search found 15603 matches

by ArndW
Fri Jul 16, 2010 2:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: libqabwvcd.sl file missng
Replies: 19
Views: 4085

What UNIX are you on? If you post that and someone here in DSXChange is on the same OS they can check to see if the specified library file is present on their system.
by ArndW
Thu Jul 15, 2010 9:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds 8.1 not found for valid hash lookups???
Replies: 7
Views: 2261

Please give explicit examples and make sure that you don't have the most common cause of this type of problem - embedded leading and trailing spaces.
by ArndW
Thu Jul 15, 2010 9:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Job Developer Guide and other Parallel resources
Replies: 4
Views: 2868

Good point. If the source is a single node and running just one process, then ordering will be maintained. But if the source is one node with multiple readers (think along the lines of a fixed width sequential input file) then ordering might indeed not be in ascending order; and if one is repartitio...
by ArndW
Thu Jul 15, 2010 9:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: libqabwvcd.sl file missng
Replies: 19
Views: 4085

Sure you can create your own library file, as the OP proved. But don't expect it to contain library-like information :P tehavele - I am not on a UNIX system to check, but try the following from the command line (after deleting your dummy library) cd /opt/IBM/InformationServer find . -name libqabwvcd...
by ArndW
Thu Jul 15, 2010 9:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NULL Handling Issue
Replies: 16
Views: 5346

If you go to your source stage, double-click on the number at the left of the column or right-mouse click and "edit row" and then see if that column might have a default value set.
by ArndW
Thu Jul 15, 2010 6:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to find the number of records per segment in dataset.
Replies: 4
Views: 1124

Since the utility calls orchadmin to get the details, the error would seem to lie in the utility and I'd classify that as a bug.
by ArndW
Thu Jul 15, 2010 6:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to generate an empty line.
Replies: 3
Views: 1007

Yes. If you are using default UNIX sequential file terminators, putting a CHAR(10) in your job will add a line feed.
by ArndW
Thu Jul 15, 2010 2:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Bind variable in the OCI stage differ from 7.1 to 8.1
Replies: 6
Views: 1886

The :1 and :2 refer to column numbers - I can't see how those could have changed between versions.
by ArndW
Thu Jul 15, 2010 2:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Records are getting rejected
Replies: 5
Views: 1295

Add a peek output stage in addition to your Oracle stage. Identify a row that isn't working correctly, and see what the contents are in the Peek stage. Is the string too large? Nulls in other columns? Key constraints in the Database?
by ArndW
Thu Jul 15, 2010 2:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there any way to overwrite the parameter with row values?
Replies: 20
Views: 6238

The STAGECOM.ARR values are not documented and, as Ray has pointed out, there is no official way to do this. Manipulating the STAGECOM.ARR takes some knowledge of the internals of DataStage. I would go the path that Sainath has recommended and use explicit calls from your transform stage to the send...
by ArndW
Thu Jul 15, 2010 2:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between external sort and inline sort
Replies: 7
Views: 10749

The difference is that you have quite a few more options with the explicit sort stage as opposed to the implicit sort stage; they call up the same sort by default.
by ArndW
Thu Jul 15, 2010 1:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to find the number of records per segment in dataset.
Replies: 4
Views: 1124

orchadmin ll {dataset} from the command line will show you the Kilobytes per segment, the number of records per segment is not obtainable. Since segments cannot be individually processed the record count is a moot point.
by ArndW
Thu Jul 15, 2010 1:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Orchestrate code for Data Browser
Replies: 6
Views: 2462

What is your job design? When I put a PEEK in my job and view the schema I don't see this arrangement.
by ArndW
Wed Jul 14, 2010 8:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: libqabwvcd.sl file missng
Replies: 19
Views: 4085

1. Login to unix shell and check that "/opt/IBM/InformationServer/Server/DSEngine/QAS/lib/libqabwvcd.sl" exists and has rx access to DataStage users. If it is not there, try to find it. (i.e. from /opt/IBM try "find . -name libqabwvcd.sl -print") and add that directory to your LD...
by ArndW
Wed Jul 14, 2010 6:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: insertArraySize
Replies: 2
Views: 855

What is your output stage type which is triggering this error?