Search found 53125 matches

by ray.wurlod
Thu Feb 17, 2005 4:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to use relational operator when hash file used as refere
Replies: 8
Views: 1807

You can use the hashed file stage to feed a reference input link to the Transformer stage.

You cannot use a DRS to access a DataStage hashed file to feed a reference - or, indeed, a stream input link.

You can use a DRS to access a database table to feed a reference input link.
by ray.wurlod
Wed Feb 16, 2005 10:19 pm
Forum: Enhancement Wish List
Topic: Command Line Compile
Replies: 5
Views: 3500

But if you've exported the job executable, you don't need to recompile. :)
by ray.wurlod
Wed Feb 16, 2005 8:10 pm
Forum: Enhancement Wish List
Topic: Command Line Compile
Replies: 5
Views: 3500

How? You have to be in Designer to create/modify the job designs and you can compile from any client (multiple compile tool). How does being able to do so from a command line add anything?
by ray.wurlod
Wed Feb 16, 2005 8:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To check flat file data with source data
Replies: 2
Views: 934

On Windows you will need to get MKS toolkit or something similar to use the wc command. DataStage counts the rows that it processes. That's one source. For the other, create a small DataStage job that executes SELECT COUNT(*) FROM whatever and returns just that number into a file. You can then easil...
by ray.wurlod
Wed Feb 16, 2005 8:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trouble with special characters - like super-scripts
Replies: 8
Views: 2722

0xB3 is Char(179) which is not a printable character in ASCII (which is what DataStage uses if NLS is not enabled). It will handle the character OK, but will have difficulty displaying it. It will almost certainly not be able to display it as superscript given that you're on a UNIX server; UNIX-base...
by ray.wurlod
Wed Feb 16, 2005 8:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Errors during jobs import
Replies: 4
Views: 1237

You might also check the indexing in the project, since the helper subroutine was DSR_SELECT.
by ray.wurlod
Wed Feb 16, 2005 7:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to take first row when using UniVerse stage
Replies: 9
Views: 2362

Probably the easiest, and closest in intent to Oracle's ROWNUM, is CALC EVAL "@NI" which counts the number of items.
by ray.wurlod
Wed Feb 16, 2005 7:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Convert current_date(DB2) into Julian format( In ODBC Stage)
Replies: 4
Views: 3764

Or CAST your some_date column as DATE so that its type corresponds with the type of the constant CURRENT_DATE.
by ray.wurlod
Wed Feb 16, 2005 7:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage job calling a web services
Replies: 4
Views: 2906

The less things stay the same, the more they change. :roll:
by ray.wurlod
Wed Feb 16, 2005 7:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error: [IBM][CLI Driver][DB2/AIX64] SQL0973N Not enough sto
Replies: 5
Views: 2817

Welcome aboard! :D

And thanks for the useful advice. Obviously if you send (or request) a large array of information to (or from) the database, it will need more memory to store the array than it would for a smaller array. And you've hit a configured limit when this error occurs.
by ray.wurlod
Wed Feb 16, 2005 7:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to use relational operator when hash file used as refere
Replies: 8
Views: 1807

DRS does not talk to DataStage hashed files. The only way that the DRS can talk to UniVerse hashed files is if you have a UniVerse ODBC driver installed on your DataStage server machine.
by ray.wurlod
Wed Feb 16, 2005 7:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job schedule documentation query?
Replies: 3
Views: 1127

In particular you can not query the Repository to get schedule information; it's simply not stored there.
by ray.wurlod
Wed Feb 16, 2005 7:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Exception raised in GCI subroutine: Access violation
Replies: 5
Views: 6506

Erk!

As a quick fix, since it only requires three columns, what happens if you actually create and populate a MetaStage_Loc_Info table?

Are you running SP2? If so, have you installed the SP2 patch from Ascential?
by ray.wurlod
Wed Feb 16, 2005 7:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clear Log
Replies: 3
Views: 1299

If you "delete the last N entries" then you won't be able to see just "the last couple of entries in the log". Of course it is possible to purge up to the previous run, and it is recommended that you do so, either manually or automatically. More exact purging can be done using DML, but this is not r...
by ray.wurlod
Tue Feb 15, 2005 10:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: inserting rows into a table at runtime
Replies: 6
Views: 1655

You could even create little
DataStage jobs to insert/update the table, and have them run from before/after subroutines or, indeed, from a master job sequence. This may be easier for you to maintain.