Search found 15603 matches

by ArndW
Mon Feb 22, 2010 4:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Large numbers problem
Replies: 2
Views: 1319

Define large numbers; i.e. some languages have "one, two, three and many", so 4 would be a large number :)

that having been said, look up EXACTNUMERIC if your problem occurs with number of greater than 15 digits.
by ArndW
Mon Feb 22, 2010 2:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with MQ Stage - reading only part of the message
Replies: 2
Views: 1384

Do you have a tool such as MQJexplorer or similar available to you? I suspect that only 99 characters are being put into the message, as the MQ Stage can certainly read quite a bit more than that.
Try writing messages to the MQ Series queue using a Datastage job, that might work better for you.
by ArndW
Fri Feb 19, 2010 3:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null handling in schema file
Replies: 19
Views: 22772

Go to your output sequential file stage and column view, double-click on the column number for the nullable field and see if the column meta data actually does show that you are handling nulls.
by ArndW
Thu Feb 18, 2010 11:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join of tables with huge volume of data - scratch space
Replies: 8
Views: 3320

Unless your Database is partitioned, going for more nodes in your configuration file is not going to make a positive difference. So far the only size you've mentioned is the 35Gb of scratch. Since we have no idea of the sizes of the two data sources it is impossible to make any suggestions or progno...
by ArndW
Thu Feb 18, 2010 5:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Any limitation on size when using Iconv and Oconv with "
Replies: 29
Views: 7641

What was wrong with the sample code that I posted, that should work.
by ArndW
Wed Feb 17, 2010 12:12 pm
Forum: General
Topic: Difference between Datastage v8 Unix and Windows
Replies: 11
Views: 3378

Performance is more a matter of how fast your network connectivity between the two machines is, and how loaded your DS server is.
by ArndW
Wed Feb 17, 2010 12:10 pm
Forum: General
Topic: Check if a job has been compiled?
Replies: 4
Views: 1803

In Version 7 you can still use the contents of the DS.AUDIT hashed file to get that information, as of version 8 that information is hidden in the bowels of XMETA.
by ArndW
Wed Feb 17, 2010 12:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Any limitation on size when using Iconv and Oconv with "
Replies: 29
Views: 7641

I think that the exactnumeric change to 19 ought to do it.

Code: Select all

BinaryString = '110110110100001010010101010101000010101010'
BinaryStringLen = LEN(BinaryString)
Result = 0
FOR Exponent = 1 TO BinaryStringLen
   Result += BinaryString(BinaryStringLen-Exponent+1) * (2**Exponent)
NEXT Exponent
by ArndW
Wed Feb 17, 2010 11:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join of tables with huge volume of data - scratch space
Replies: 8
Views: 3320

Re: Join of tables with huge volume of data - scratch space

Once your data for left and right parts of join is sorted on the join keys then your job won't need excessive amounts of scratch space. It will need scratch space for sorting. You didn't mention how many Mb/Gb your two data tables are.
by ArndW
Wed Feb 17, 2010 11:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Any limitation on size when using Iconv and Oconv with "
Replies: 29
Views: 7641

I'm not sure if this applies, but what is your uvconfig file value "EXACTNUMERIC"?
by ArndW
Wed Feb 17, 2010 10:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compress Sequential File
Replies: 8
Views: 6373

In the sequential file stage, just enter "bzip2 -c" to compress using bzip2, other commands have slightly differing sysntax to take their input from stdind.
by ArndW
Wed Feb 17, 2010 7:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compress Sequential File
Replies: 8
Views: 6373

I wouldn't use the compress stage for this. Just use a sequential output stage and add the command "gzip -i" to it . I'm not at a DataStage computer now, but when I do I'll send the exact syntax I use.
by ArndW
Wed Feb 17, 2010 7:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 8.01 end-of-wave not working
Replies: 10
Views: 2427

I've been working with MQ and wave processing at V8.0.x for over a year and wave processing works.

I'm not clear from your description on what aspect of wave processing isn't working?
by ArndW
Wed Feb 17, 2010 7:40 am
Forum: General
Topic: job parameter
Replies: 4
Views: 1402

One job parameter can only have one value. What do you mean by a set of values?
by ArndW
Wed Feb 17, 2010 7:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to update the job version number automatically
Replies: 6
Views: 3685

Without a version control system there isn't a way to do it, unfortunately. I haven't looked into what has come out at V8.1, but there might be something there; V8.0x has nothing.