Search found 15603 matches

by ArndW
Mon Oct 05, 2009 2:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: path search failed - Unable to locate dscapiop
Replies: 9
Views: 6350

The "dscapiop.o" library is in the "/DSParallel" subdirectory and is a library object, not an executable. If you revert your changes, does the job work again? (My feeling is that the two aren't directly related)
by ArndW
Mon Oct 05, 2009 2:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to compile jobs
Replies: 1
Views: 815

There should be more to the error message than that. Perhaps you have a permissions issue - is the compile problem just with this one job or with all jobs?
by ArndW
Fri Oct 02, 2009 7:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Heap Size Allocation Error
Replies: 6
Views: 7051

As mentioned earlier, your heap size for the lookup stage is too big. Either reduce the data size (use unbounded VarChar() and/or less columns) or use the suggested method to increase the runtime object's virtual memory space.
by ArndW
Fri Oct 02, 2009 7:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retrieving Job Status through Universe stage
Replies: 8
Views: 2343

The internal hashed fiiles / tables such as DS_JOBS and the RT_STATUSnnn file are not documented by IBM so there will be little help forthcoming there, albeit a search of DSXchange will give you a lot information. The correct way of getting the status is to use the DSGetJobInfo() routine instead of ...
by ArndW
Fri Oct 02, 2009 6:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Heap Size Allocation Error
Replies: 6
Views: 7051

Please use "Please" instead of SMS "plz".

Add a before-job call to execute the shell command "ulimit -a" to your job.
by ArndW
Fri Oct 02, 2009 2:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UsExecuting a Batch file in Datastage Sequence
Replies: 5
Views: 2306

Yes, you should use the command activity to run your batch outside of DataStage.
by ArndW
Fri Oct 02, 2009 1:57 am
Forum: General
Topic: Maximum length of invocation id
Replies: 6
Views: 3889

It is indeed MAXKEYSIZE in the uvconfig file.
by ArndW
Fri Oct 02, 2009 1:56 am
Forum: General
Topic: IBM Support Ending for DataStage 7.0, 7.1
Replies: 5
Views: 2232

The sale of U2 is an interesting one; while IBM didn't put a lot of effort into the U2 products they certainly didn't sweep them by the wayside, either. I look forward to seeing what Rocket can and will do with the systems, whether they just milk a cash cow for whatever can still be gotten or if the...
by ArndW
Thu Oct 01, 2009 9:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to read a Mainframe file through CFF stage
Replies: 4
Views: 1936

What COBOL picture does this column have, "numeric" is not a cobol type. Spaces are not a valid number.
by ArndW
Thu Oct 01, 2009 6:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating hash file through command
Replies: 4
Views: 1769

did you check the HFC utility documentation as suggested? The minimal syntax for mkdbfile is: mkdbfile {HashedFilePathAndName} {type} {modulus} {separation} type 30 (dynamic) files have a different syntax: mkdbfile {HashedFilePathAndName} 30 {MinModulus} {GroupSize} {HashType (20 for General, 21 for...
by ArndW
Thu Oct 01, 2009 4:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job gives Tsort merger aborting: Scratch space full
Replies: 1
Views: 1389

Either pre-sort your data to reduce the required scratch sort space, or increase the size of your scratch disk or add additional scratch disks to your APT_CONFIG file for that run.
by ArndW
Thu Oct 01, 2009 3:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Check for sequential File Size
Replies: 4
Views: 1151

Execute command stage.
by ArndW
Thu Oct 01, 2009 1:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Check for sequential File Size
Replies: 4
Views: 1151

this type of checking is best done in a job sequence. From there, you can call the UNIX command "wc -c {yourfile}", then parse the returned string using "FIELD(TRIM(Execute_WC_stage.$CommandOutput),' ',1)" to get the number of characters. Then, if that value is 0, don't call your...
by ArndW
Thu Oct 01, 2009 1:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Source has data but not populating in Oracle
Replies: 11
Views: 4258

I bet your PX job has the datatype "VarChar" for this column. Declare the type as numeric in your job and perform an explicit conversion in PX.
by ArndW
Thu Oct 01, 2009 1:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to find the CPU and MEMORY USAGE
Replies: 4
Views: 1243

Without monitoring it as Ray suggested you will, of necessity, have very imprecise measurements. Since DataStage PX starts many interconnected processes, some of which might have very short "lives", any snapshot you take of system load will not necessarily be indicative of what the machine...