Search found 15603 matches

by ArndW
Thu Aug 31, 2006 4:51 am
Forum: General
Topic: subroutines
Replies: 2
Views: 2265

The Editor's Corner isn't the right place to post this question. In Server there is a BCI interface for calling external subroutines, but it is a complicated procedure and it is easier to write a program that accepts command line arguments and to call that from DataStage. In PX you can write your ow...
by ArndW
Thu Aug 31, 2006 4:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL*Loader -605:Non-data dependent ORACLE error occurred
Replies: 4
Views: 4325

If you are not using the bulk loader, then check what your commit frequency is.
by ArndW
Thu Aug 31, 2006 4:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning while importing metadata from DB2
Replies: 10
Views: 3501

Often this is because your userid in DB/2 doesn't have sufficient access rights to read the table metadata. I am assuming that you have set up DataStage PX access correctly since it does work in another project.
by ArndW
Thu Aug 31, 2006 2:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL*Loader -605:Non-data dependent ORACLE error occurred
Replies: 4
Views: 4325

It sounds as if you have a commit frequency of 1000 or a smaller number that divides evenly into 1000. Oh, wait - you are using the bulk loader? This is particularly fast because it doesn't care about rollback or constraints, so you can't back out.
by ArndW
Thu Aug 31, 2006 1:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Which Stages or functionality use the most shared memory?
Replies: 11
Views: 6210

Greg - did you actually monitor the values while you were running your job, not before and then after? A "broken pipe" is just a symptom of a process having stopped. I don't know what hardware you are running, but even a small machine should handle this type of query.
by ArndW
Thu Aug 31, 2006 1:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Error In DataStage Enterprise Edition 7.5
Replies: 7
Views: 3805

(Strange, I could have sworn that I posted something on this thread, yet it seems to have disappeared. Oh well, the post was leading in the wrong direction if this new error is any indication) Have you tried logging in as another user and compiling? Just to make sure that this isn't actually a permi...
by ArndW
Thu Aug 31, 2006 1:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Random Shuffling of input stream data in DS MVS jobs
Replies: 4
Views: 1915

In PX you could build your own random/pseudo-random method to do this in various ways. You could write a buildop to get a real c++ random function with all the advantages that has (repeatability, real pseudo-random distribution, etc.) or you could do something simple like take the current time milli...
by ArndW
Thu Aug 31, 2006 1:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Annotation Jobs
Replies: 2
Views: 633

A job with just an annotation and nothing else will not compile. What is usually the case when you see nothing on the canvas is that the actual work of the job is done in the Job Control section; often this is seen in older jobs that pre-date sequences. Look at your job control and you will probably...
by ArndW
Thu Aug 31, 2006 1:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Enterprise Edition Certification [ Test 415 ]
Replies: 12
Views: 3871

Congratulations! Do you think that having been on DSXchange helped you in any way to prepare for the test?
by ArndW
Wed Aug 30, 2006 11:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Which Stages or functionality use the most shared memory?
Replies: 11
Views: 6210

It might be that some temporary space is being used and filling up that device. Could you monitor your TEMP directory set in DS and also /tmp (some stages might still be hardcoded to the system default directory) and see if that might be causing your issues?
by ArndW
Wed Aug 30, 2006 11:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trim first character in Transformer
Replies: 3
Views: 1183

Re: Trim first character in Transformer

I...Since Datastage for some reason does not have this function... I beg to differ. Try searching the PDF BASIC Programmer's Guide for "substring" and you'd be surprised how many different ways there are to do this. The simplest and most common method of positional substrings in DataStage Server (a...
by ArndW
Wed Aug 30, 2006 9:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to run new dsjob command
Replies: 3
Views: 894

Could you post your exact command stage command for invoking the job - the message makes it likely that you have a syntax error in that command.
by ArndW
Wed Aug 30, 2006 9:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Configure VOC
Replies: 4
Views: 1192

It will have created 6 files that you need to delete in that directory. The files/directories are:

&SAVEDLISTS&
D_VOC
VOC
D_&SAVEDLISTS&
D_VOCLIB
VOCLIB
by ArndW
Wed Aug 30, 2006 9:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Aborted but still it loaded records
Replies: 5
Views: 1492

Does the job do any other writing to files? If I understood you correctly, your job aborted but some prt of it was still running for 12 hours after the abort message?
by ArndW
Wed Aug 30, 2006 9:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: VarChar to Hex
Replies: 8
Views: 3233

With ICONV/OCONV use the MX format for hexadecimal, MB for binary.