Search found 15603 matches

by ArndW
Wed Nov 26, 2008 8:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CONVERT Function not performing as expected...
Replies: 11
Views: 2992

The 0x0a characters are the line separators used by your files, so they wouldn't show up in the data.
by ArndW
Wed Nov 26, 2008 8:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To populate top five values
Replies: 10
Views: 1404

single-thread a transform stage (sequential as opposed to parallel, or a 1-node configuration) and then put a constraint "@INROWNUM < 6" in.
by ArndW
Wed Nov 26, 2008 8:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Not able to create project
Replies: 7
Views: 1864

You are lucky in that you are still at Version 7, recovery at version 8 is much more time-consuming and complex and in certain cases you cannot recover, i.e. the project name is forever unusable unless you do a complete re-install.
by ArndW
Wed Nov 26, 2008 8:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML File Problem
Replies: 3
Views: 2538

What character set is your source XML file in? What is your DataStage NLS character set? Once you know those 2 answers you will know how to fix your problem.
by ArndW
Wed Nov 26, 2008 8:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController(0),0:Field 'V' from...is NULL
Replies: 11
Views: 8506

IF "FIELD_NAME" can have a null value, then the derivation should be

Code: Select all

 IF IsNull(FIELD_NAME) THEN 'N' ELSE If(Len(Trim(FIELD_NAME))>0 Then "YES" else "N". 
by ArndW
Wed Nov 26, 2008 6:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController(0),0:Field 'V' from...is NULL
Replies: 11
Views: 8506

I just noticed something from the first post. Stage Variables cannot be null, so you need to ensure that you work around that limitation with the null-handling functions (i.e. IsNull(), NullToValue() )
by ArndW
Wed Nov 26, 2008 6:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handling CLOB datatype in datastage
Replies: 7
Views: 7516

Note that 4000 is bytes. If you are using NLS then the number of characters displayable in 4000 bytes is less and will cause the job to abort.
by ArndW
Wed Nov 26, 2008 6:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Slow write into dataset
Replies: 2
Views: 755

What are the datatypes used and can you compute a rough value for Mb/Second written to the file? Also, change the output to a sequential file on /dev/null or a dummy copy stage and find out what speed the rest of the job could work at - that will ensure that the bottleneck really is the dataset.
by ArndW
Wed Nov 26, 2008 6:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job halt without reason
Replies: 15
Views: 4171

Waht database and which stage are you using?
by ArndW
Wed Nov 26, 2008 6:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rows per transaction in ODBC stage
Replies: 3
Views: 1466

The ODBC connector at Version 8 has a "transaction -> record count" value that you can set.

The Enterprise stage, set the "array size" to 1, then you will get an option to set the "row commit interval".
by ArndW
Wed Nov 26, 2008 6:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential file stage - Filter option
Replies: 8
Views: 5550

Also remember that the working directory of the job is in the project directory, so you should always specify a full and absolute path to your filename.
by ArndW
Wed Nov 26, 2008 6:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To populate top five values
Replies: 10
Views: 1404

Sort the data by descending value, then limit the output to the first 5 rows.
by ArndW
Wed Nov 26, 2008 6:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController(0),0:Field 'V' from...is NULL
Replies: 11
Views: 8506

Imperator Yollson,

this means that you have a null value in a row in column "F" and that the column is not nullable. This is data driven and cannot be solved unless you make the column nullable - but you need to know if this null value is valid.
by ArndW
Wed Nov 26, 2008 5:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To populate top five values
Replies: 10
Views: 1404

I am afraid that I still don't quite understand, would it be possible to give a short simplified example of what you wish to do?
by ArndW
Wed Nov 26, 2008 5:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handling CLOB datatype in datastage
Replies: 7
Views: 7516

Have your SQL split the CLOB into n columns of VarChar(2000) each and then use either a transform stage or Column Import stage to concatenate the list of VarChar columns into one large one. This method is being used on my current project because we have CLOBs and BLOBs of up to 60Kb (very wordy XML)...