Search found 53125 matches

by ray.wurlod
Thu Nov 18, 2004 2:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stage Variable Size Limit
Replies: 13
Views: 5948

Keep in mind the Compare() function. You can force string comparison. There is no practical limit to the length of a character string value in DataStage, and that includes as the value of a stage variable. Finally, you don't need If expression Then @TRUE Else @FALSE; any expression that uses a compa...
by ray.wurlod
Thu Nov 18, 2004 2:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Source and Target columns
Replies: 8
Views: 1891

It's perfectly OK to have more, or even fewer, columns in the target than in source. If you don't want to load the other 8 columns in this job, you can omit them completely from the job design that inserts the rows (provided the omitted columns are equipped with suitable default values in the table ...
by ray.wurlod
Thu Nov 18, 2004 2:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Deleting a project......
Replies: 12
Views: 5044

This set me to wondering whether anyone has written anything on all the various cases/scenarios of maintaining an automobile, what are the possible cases (what are all the things that could go wrong) and solutions that could be done? Or perhaps the same on medical care and maintenance of the human b...
by ray.wurlod
Thu Nov 18, 2004 2:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Lookup
Replies: 16
Views: 7928

There's no "." in SETFILE. You may have created something called a "Q" pointer in your VOC file. More on that later. You can delete the hashed file, if there is no VOC entry, using DOS /C "DEL /S/Q D:\Hashfiles\hash_POLIZZ1" DOS /C "DEL /S/Q D:\Hashfiles\D_hash_POLIZZ1" The SET.F...
by ray.wurlod
Thu Nov 18, 2004 2:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 Enterprise User Defined Query
Replies: 3
Views: 1761

Check your configuration file.

The reported error is "a node of the producing operator, ccsidbu1,
has no disks in the default disk pool".

Does this coincide with that your configuration file specifies?
by ray.wurlod
Thu Nov 18, 2004 2:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORA-00060: deadlock detected
Replies: 11
Views: 7429

This is an Oracle error, not a DataStage error.

Something in your design, or something else that is running on Oracle at the same as your DataStage job, is causing a deadlock situation. For example, are you trying to update the same table that you're selecting rows from?
by ray.wurlod
Thu Nov 18, 2004 2:11 pm
Forum: IBM QualityStage
Topic: Quality Stage and DS
Replies: 14
Views: 7956

To be pedantic for a moment (who, me?), it's not really RTI. Quality Stage has its own "real time manager" (runs as qsrtmngr) which only DataStage uses. It's that to which I referred. (Incidentally, it works well straight out of the box if one follows the instructions accurately). If you want to exp...
by ray.wurlod
Thu Nov 18, 2004 1:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Mainframe COBOL file
Replies: 10
Views: 3914

Are you beginning to suspect that the file definition does not match the data? There are certainly more than two characters preceding the 15 digit number! :x
by ray.wurlod
Thu Nov 18, 2004 1:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Mainframe COBOL file
Replies: 10
Views: 3914

Where do you get 95 from? The addresses down the left are still in hex, and I observe that 0x92 (the end of the first record) is 146 in decimal.

Sorry I can't help with the rest of it just now; deadlines loom!
by ray.wurlod
Wed Nov 17, 2004 8:40 pm
Forum: IBM QualityStage
Topic: Install Quality Stage suggestions
Replies: 1
Views: 2062

Disk space. Allow at least ten times the disk space as your data volumes suggest. We kept blowing disk space (have now added 200GB more with another 1TB soon to be delivered).
QualityStage keeps all its intermediate results on disk, and all its reports on disk. It needs a lot of disk.
by ray.wurlod
Wed Nov 17, 2004 8:37 pm
Forum: IBM QualityStage
Topic: Quality Stage and DS
Replies: 14
Views: 7956

QualityStage with the Real Time Manager comes pretty close to "true" client/server, however.
Currently setting up just such an animal.
by ray.wurlod
Wed Nov 17, 2004 3:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Source and Target columns
Replies: 8
Views: 1891

Consult your planning (source to target mapping or target from source mapping) document. You DO have a plan, don't you? Based on the business rules specified in this plan, fill in derivation expressions for each of the 25 target columns. They may be based on any combination of input column values, s...
by ray.wurlod
Wed Nov 17, 2004 3:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance statistics in a log file
Replies: 5
Views: 1723

APT_RECORD_COUNTS and the other APT... environment variables apply only to parallel jobs. They will have no effect at all on server jobs.
by ray.wurlod
Wed Nov 17, 2004 3:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stripping Rows from a Sequential File
Replies: 6
Views: 1070

You could use QualityStage to perform your de-dup operation. Call it from the QualityStage plug-in. Simply stream the file in to this stage, and receive back the de-dup'ed file for ongoing processing.
by ray.wurlod
Wed Nov 17, 2004 3:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: any File size Limitation for sequential file?
Replies: 4
Views: 1672

Yesterday I wrote a sequential file 13,193,827,815 bytes in size using the Sequential File stage.

Did you run out of disk space?

The only limit I'm aware of is the operating system limit (whatever that is; 2GB on some, 1TB on some, 19 million TB (theoretically) on some).