Search found 15603 matches

by ArndW
Thu Feb 04, 2010 4:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: trunc a decimal number to the X position
Replies: 6
Views: 2530

I prefer "INT(In.NumberColumn/1000)*1000" to get 3 decimal positions.
by ArndW
Thu Feb 04, 2010 4:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: auto purge settings for a specific job
Replies: 5
Views: 2800

asaf_arbely - he already did explain it. Go to the director and job view, then select the menu item Job -> Clear Log and in that menu you can override the Auto-Purge settings as you require.
by ArndW
Thu Feb 04, 2010 3:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to read Greek, Ukraine and Russian data
Replies: 1
Views: 868

How do you know that this isn't working? I suggest you read the data and then write it to another sequential file and compare the two. Note that the "view data" in the designer should never be used to check NLS data.
by ArndW
Thu Feb 04, 2010 3:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Read Inputs
Replies: 5
Views: 1737

There is a Java transform stage which can be used to invoke java code.
by ArndW
Thu Feb 04, 2010 3:22 am
Forum: General
Topic: Which if statment would be efficient
Replies: 5
Views: 1462

I recommend using the NullToValue(), that way you only have to program one condition per column.
by ArndW
Wed Feb 03, 2010 6:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Remove duplicates
Replies: 17
Views: 5671

"resize" is a UNIX command, this is being used and won't work. If I recall correctly, the syntax of the $DSHOME/bin/resize command isn't documented, so you should stick to the DS shell (i.e. ADMIN tool) command "RESIZE {HashefileNAME} * * * 64BIT"
by ArndW
Wed Feb 03, 2010 5:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error loading data from DB2 Bulk loader stage
Replies: 5
Views: 2439

Does the error happen right at the start or after the job runs a while?
by ArndW
Wed Feb 03, 2010 5:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage 7.5.3 with DB2
Replies: 1
Views: 1407

Can you do a DB2 CONNECT to the same DB2 instance from the command line? The error indicates that the environment cannot be reached.
by ArndW
Wed Feb 03, 2010 5:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Remove duplicates
Replies: 17
Views: 5671

It should be "* * *" and not "***"
by ArndW
Wed Feb 03, 2010 5:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: join different data type
Replies: 3
Views: 1021

DataStage will perform an implicit conversion, but it is much better to perform the conversion yourself explicitly, i.e. by convertig your decimal to an integer and then doing your join.
by ArndW
Wed Feb 03, 2010 3:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: tab as a filler
Replies: 3
Views: 1235

The Char() function lets you input an ASCII value and the function returns that character. Thus, "Char(9)" would give you a TAB character.
by ArndW
Wed Feb 03, 2010 3:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hash File limit
Replies: 4
Views: 1991

aninashh - this is now the 3rd thread you have posted the same problem! Please keep to one thread, and keep this one closed.
by ArndW
Wed Feb 03, 2010 3:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hash File limit
Replies: 7
Views: 3256

Having 2 distinct threads with the same problem is not good, plus you should have seen what happens when posters state that their problem is "urgent", that usually results in getting a slower response than wuold normally have happened. You need to post your error messages as well as the co...
by ArndW
Wed Feb 03, 2010 3:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Remove duplicates
Replies: 17
Views: 5671

Please cut-and-paste your complete error and post it here.
by ArndW
Wed Feb 03, 2010 2:36 am
Forum: General
Topic: Sequential file limitation
Replies: 2
Views: 1326

10Kb record size is not a problem for DataStage, each record can theoretically grow to close to the size of virtual memory space for that user. 1000 columns, while large and potentially inefficient, is not a problem, either.