Search found 53125 matches
- 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
- 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
- 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...
- 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
- 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...
- 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...
- 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...
- 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...
- 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...
- 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
- 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
- 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
- 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).
- Thu Feb 24, 2005 3:23 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: ORCHESTRATE document needed !!
- Replies: 6
- Views: 2333
- 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...