Search found 15603 matches

by ArndW
Wed Sep 09, 2009 4:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Shared Container and Allow Multiple Instance
Replies: 5
Views: 2700

The two concepts are very different. Multiple instances means that the same job can run multiple times in parallel, while the parallel nodes in a PX file define how many nodes the data is partitioned into during a run of a single job. Shared Containers don't come into the equation at all.
by ArndW
Wed Sep 09, 2009 2:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to set SQLLOADER CHARACHTERSET option using Load option
Replies: 4
Views: 1435

What are your environment ORACLE settings? Particularly NLS_LANG. If you set that to a UTF set then your source database data will be converted to UTF when read, and your write should correctly load your data.
by ArndW
Wed Sep 09, 2009 2:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help needed with job design
Replies: 4
Views: 1351

Let's assume you have a file:

Code: Select all

Header1
Detail1.1
Detail1.2
Header2
Detail2.1
Detail2.2
Detail2.3
[code]

What sort of a lookup do you need to do, i.e. does Detail2.2 need to look at Header1?
by ArndW
Wed Sep 09, 2009 1:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BuildOp Interface Issue
Replies: 7
Views: 2437

What happens when you click on the table name and select "Select Table"?
by ArndW
Wed Sep 09, 2009 1:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "DSP.ActiveRun": Line 51, Exception raised in GCI
Replies: 8
Views: 6168

The error is a null pointer somewhere in the program. That makes it more difficult to analyze. Does the error occur immediately or after running for some time? Does it make a difference if you split the large XML into separate files?
by ArndW
Wed Sep 09, 2009 1:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: [DataDirect][ODBC lib] Function sequence error
Replies: 3
Views: 2270

In a case like this it would be best to post the whole unedited error message as a quote. Also, to which database are you going via ODBC?
by ArndW
Wed Sep 09, 2009 1:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error after installing the patch for range partitioned table
Replies: 1
Views: 1328

It looks symptomatic of a bad library in the patch. I think only IBM can help you here.
by ArndW
Wed Sep 09, 2009 12:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BuildOp Interface Issue
Replies: 7
Views: 2437

Could you explain what you mean by "table name"? Do you mean a parameter value, a constant value coded into your buildop, or something else?
by ArndW
Tue Sep 08, 2009 10:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ulimit error
Replies: 5
Views: 3429

how did you verify the ulimit value? The only way that yuo can really do and know what the current value is , is to put a before-job shell call into your job to list the job's actual runtime value.
by ArndW
Tue Sep 08, 2009 9:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Operator of type "APT_BufferOperator" - Warning
Replies: 3
Views: 2706

Go to the stage before the one you are getting the warning for, then edit that stage and set the stage advanced output properties to "clear".
by ArndW
Tue Sep 08, 2009 8:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Failed to open RT_STATUS...file - when server load is heavy
Replies: 10
Views: 6120

Re: Failed to open RT_STATUS...file - when server load is he

jacksamsula wrote:(DSGetJobInfo) Failed to open RT_STATUS228 file.
?
by ArndW
Tue Sep 08, 2009 7:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Purging Job Logs - Query regarding Code being used
Replies: 12
Views: 5034

I just went over the rest of the code. It won't run at all, and it cannot have ever run. Although slight changes would make it work, try: OPEN '','DS_JOBS' TO DSJobsFilePtr ELSE CALL DSLogFatal('Unable to open DS_JOBS file, status is ':STATUS(),'') SELECT DSJobsFilePtr TO 1 Finished = @FALSE READNEX...
by ArndW
Tue Sep 08, 2009 7:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Purging Job Logs - Query regarding Code being used
Replies: 12
Views: 5034

That means that there are 6 entries (or jobs) in your DS_JOBS file. Thus the outer loop executes for each job, then the code retrieves the corresponding job number for using the substring/extraction. The string has a pipe symbol to denote the name and the data part, thus the FIELD(JobList... Hmm, I ...
by ArndW
Tue Sep 08, 2009 7:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Failed to open RT_STATUS...file - when server load is heavy
Replies: 10
Views: 6120

I'm not sure what could be the cause here, since the OPEN for a hashed file shouldn't time out. The "-99" is not a valid return code for the OPEN command so I don't know why the open would fail.
by ArndW
Tue Sep 08, 2009 6:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Slow Compile
Replies: 11
Views: 3962

I don't know what could be causing your problem. I still think it is related to the cpp compiler, though. Do those jobs that take longer have inordinately more transform stages than those which compile quicker?