Search found 15603 matches

by ArndW
Thu Mar 11, 2010 8:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Records concatenated while sending through MQ
Replies: 3
Views: 1220

Have you tried adding CHAR(10) to the end of your string?
by ArndW
Thu Mar 11, 2010 8:16 am
Forum: General
Topic: Commiting records after successful completion of job
Replies: 10
Views: 5623

Then add a reject link to your Oracle stage, make that go through a transform stage whose output is set to abort if more than 0 rows go through the reject link. The abort rolls back the incomplete transaction.
by ArndW
Thu Mar 11, 2010 7:39 am
Forum: General
Topic: Commiting records after successful completion of job
Replies: 10
Views: 5623

I assume then that you are using the upsert option rather than the load option. In that case, if you don't specify either the APT_ORAUPSERT_COMMIT_ROW_INTERVAL or the APT_ORAUPSERT_COMMIT_TIME_INTERVAL then the whole job run will be one transaction.
by ArndW
Thu Mar 11, 2010 7:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SIGSEGV error
Replies: 8
Views: 11187

if the free() command fails then you might have corrupted your memory pointers - perhaps by having run out of same. If you monitor physical and virtual memory usage during the job run, do you see a large amount of memory used or constant growth until out of memory?
by ArndW
Thu Mar 11, 2010 7:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: limit of files and subdirectories in AIX
Replies: 10
Views: 6020

It does depend upon which file system the AIX administrators have created. Is it JFS2, JFS or another? In the past we've worked around this limitation by RESIZEing all RT_STATUSnnn files to static type 2 hashed files. Since Type 30 (Dynamic) files consist of a subdirectory with 2 visible and a hidde...
by ArndW
Thu Mar 11, 2010 7:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Records concatenated while sending through MQ
Replies: 3
Views: 1220

I don't have MQ installed at this client, but I think that this is exactly what setting segmentation does.
by ArndW
Thu Mar 11, 2010 7:27 am
Forum: General
Topic: Commiting records after successful completion of job
Replies: 10
Views: 5623

What stage are you using to write to Oracle, the answer depends upon how you are doing this. Also, is this a Parallel or Server job (I am assuming PX due to the environment variable, but since you posted in 'General' we cannot tell)
by ArndW
Thu Mar 11, 2010 2:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle enterprise stage performing unrequested rtrim
Replies: 9
Views: 3669

:roll: I knew I posted the wrong APT variable. Colin should have known that I really meant APT_ORACLE_PRESERVE_BLANKS when I wrote APT_STRING_PADCHAR :oops:
by ArndW
Thu Mar 11, 2010 2:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Anyone interested in using ICONV, OCONV and FMT in PX
Replies: 14
Views: 8435

Since thet source for ICONV and OCONV are in c, it would be much easier for IBM to adapt existing code than to rewrite the complete functionality. Albeit the time and date handling (with full NLS support) would be a great feature to add to PX and is currently sorely lacking.
by ArndW
Thu Mar 11, 2010 2:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal Error: Invalid character encountered in table XXXX
Replies: 3
Views: 3707

What database are you loading with which method and do you NLS turned on. What is the character set of the database table and, if it is oracle, what are your environment NLS settings for it?
by ArndW
Thu Mar 11, 2010 1:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Aborting due to APT_CombinedOperatorCOntroller Error
Replies: 6
Views: 4348

If you replace your DB2 output stage with a dataset, does your error persist? Does your DB2 stage have a reject link (because the score indicates 2 operators)?
by ArndW
Wed Mar 10, 2010 10:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCI stage tuning
Replies: 6
Views: 2942

The optimal array size is so that one fetch fits inside one block (which I think is a default of 2048, but that might be version/platform/install dependant). As Craig said, 1 is the slowest but 100 might be even slower, so testing various values will be your best bet to tuning this stage using the a...
by ArndW
Wed Mar 10, 2010 10:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to remove header and trailer from records.
Replies: 27
Views: 13421

Windows DataStage servers come with the MKS Toolkit, which also includes the 'sed' command.
by ArndW
Wed Mar 10, 2010 10:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capturing Script Output in After Job sub routine
Replies: 10
Views: 4816

If the after-job script returns an error code then the job's status is set to aborted.
by ArndW
Wed Mar 10, 2010 10:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle enterprise stage performing unrequested rtrim
Replies: 9
Views: 3669

The Oracle VarChar2 strips trailing spaces, if I recall correctly. I think an insert of "Hello World " into a Varchar2 column results in an automatic rtrim. This might be at the heart of your problems.