Search found 53125 matches

by ray.wurlod
Fri Feb 25, 2005 3:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with big integer values
Replies: 7
Views: 2485

Final suggestion - go for a bigger data type, for example Decimal(38) or VarChar(255). If that doesn't work, log a support call. I'm not using PX at the moment, so I can't test my theories.
by ray.wurlod
Fri Feb 25, 2005 3:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: index arg (1) exceeds count: 1
Replies: 4
Views: 1750

I’m in a real big hurry. There are times when you can't afford to be "in a real big hurry"; when you have to step back and analyse. Indeed, anyone I teach DataStage will begin with a paper-based design before even touching the keyboard, as I've found over many years that describing what you p...
by ray.wurlod
Fri Feb 25, 2005 2:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DynamicRDBMS stage is extracting rows at very rate...
Replies: 2
Views: 1208

And if your read-only job doesn't go faster, then the likely bottleneck is one of the database server itself, your query (it's not a complex ten-way join by any chance?) or the network connection between the two. If you're on a LAN with everyone else emailing photos to and fro, I'd guess that the ne...
by ray.wurlod
Fri Feb 25, 2005 2:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join Stage
Replies: 4
Views: 1984

Either you or I misunderstand the term Cartesian product, then. As I understand the term, it's all rows from table B for each row in table A.
by ray.wurlod
Fri Feb 25, 2005 1:09 am
Forum: General
Topic: After Index rebuilding I cant see any job.
Replies: 3
Views: 2769

It suggests that the index rebuild was not successful. Try LIST.INDEX DS_JOBS ALL LIST.INDEX DS_JOBOBJECTS ALL to determine whether any of their indices needs to be rebuilt. Make sure you're logged in with Administrator access, and that no-one else is using the Repository when rebuilding indexes. Th...
by ray.wurlod
Fri Feb 25, 2005 12:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join Stage
Replies: 4
Views: 1984

You didn't state how you were doing the join - presumably a Join stage. No matter what method you use, you're going to have to process a large number of rows (684132000 based on the figures you supplied). There's no reason that DataStage would not be able to process this volume, provided you have th...
by ray.wurlod
Thu Feb 24, 2005 10:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to trace the warnings illegal date/time value
Replies: 5
Views: 1976

You have provided data to a column marked as Date or Time or TimeStamp. The ODBC driver (or the BASIC SQL Client Interface, if your target is a UniVerse table or DataStage table) has detected that the data do not, in fact, match the required format. Send your output to a text file to verify that thi...
by ray.wurlod
Thu Feb 24, 2005 8:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file size
Replies: 8
Views: 2128

How do you want to create the hashed file? (a) from the Hashed File stage - can't be done, but you can RESIZE the hashed file afterwards (provided it's not already hit 2GB) (b) from the UV stage - append " 64BIT" to the CREATE TABLE statement on the Edit DDL tab (c) using a CREATE.FILE or CREATE TAB...
by ray.wurlod
Thu Feb 24, 2005 8:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Varchar to Numeric
Replies: 9
Views: 1997

The NUM function returns 1 if its argument can be regarded as numeric, and 0 otherwise. That's all it does. NUM(0.25) should return 1. However, as manteena suggested, NUM("0.25 ") returns 0, since " " is not a numeric component in this context. Could it be that your data are stored with leading or t...
by ray.wurlod
Thu Feb 24, 2005 8:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with big integer values
Replies: 7
Views: 2485

Do a search for 2147483647 - you might learn about handling of integers in DataStage, at least in the server environment (where BigInt is treated as Integer). I can not test whether the same occurs in PX, but it sounds like it is.
by ray.wurlod
Thu Feb 24, 2005 3:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pandora's Box - Using DS NLS
Replies: 8
Views: 1660

The reason that this works is that UV-UTF8 encodes Unicode code points in such a fashion that any single-byte characters (for example ASCII) are still stored as single-byte characters, except for those that use the same code points as dynamic array delimiters (248 through 255).
by ray.wurlod
Thu Feb 24, 2005 3:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting up DS 7.5 on Windoze 2003 Server with UTF8 enabled
Replies: 5
Views: 1239

Many customers do not know what character maps they're using. For Chinese it's much more likely to be BIG5 or GB2312 (or the Windows equivalents). Unfortunately I don't have access to an NLS-enabled system at the moment, so can't add much more.
by ray.wurlod
Thu Feb 24, 2005 3:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: writing my first PX job
Replies: 6
Views: 2338

Ascential has published a benchmark that achieved 300GB/hour (projected).
by ray.wurlod
Thu Feb 24, 2005 3:14 pm
Forum: IBM QualityStage
Topic: Regarding QualityStage Job Exit Status
Replies: 2
Views: 1814

Within the script, you can capture the exit status through the shell variable $? - indeed, this is what QualityStage itself does. Exit status of 0 means success, a non-zero exit status indicates some form of error. Alas, I do not know of a reference that lists all possible exit status values from Qu...