Search found 53125 matches

by ray.wurlod
Wed Feb 08, 2006 10:42 pm
Forum: Site/Forum
Topic: Website and Location fields in profile
Replies: 2
Views: 2087

Thanks for that; it's really interesting to have some idea where folks are. Can I ask folks to keep your actual whereabouts up to date? For example, though I am based in Australia, I can now keep people informed when I'm in some other country.
by ray.wurlod
Wed Feb 08, 2006 3:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Export jobs via Windows API
Replies: 7
Views: 1666

Welcome aboard. :D

Create a bat file that executes dscmdexport (maybe renaming yesterday's DSX file first). Execute the bat file via AT.
by ray.wurlod
Wed Feb 08, 2006 3:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Look up multiple columns
Replies: 10
Views: 6260

Yes you would need 17 Lookup stages. Each lookup is based on the key (read "primary key") and can therefore only return only one row.
by ray.wurlod
Wed Feb 08, 2006 3:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting Number To String
Replies: 4
Views: 1753

Have you looked at the chapter on the Modify stage in the Parallel Job Developer's Guide? Only beware that it has the wrong function for handling null (which won't affect your current issue).
by ray.wurlod
Wed Feb 08, 2006 12:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Univeral Command in DataStage stage
Replies: 1
Views: 751

You shouldn't mix JCL with data. You can do this outside of DataStage (perhaps using type or copy command). But DataStage will object to the "rows" of JCL because they don't match the metadata that describe the data you are otherwise processing.
by ray.wurlod
Wed Feb 08, 2006 12:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compare with non-key columns
Replies: 16
Views: 3848

Hashed File stage can only do key-based "=" lookups. If you really do need to lookup against non-key columns in a hashed (not "hash") file, you can use a UV stage. It will be slow unless you index the search columns. Search the forum for more information.
by ray.wurlod
Wed Feb 08, 2006 12:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance Issue
Replies: 8
Views: 3362

One job, but with multiple Transformer stages (say, not more than four lookups per Transformer stage) would also be OK. You can enable inter-process row buffering (and, if desired, interpolate IPC stages to make it obvious that there are separate processes involved). Of course, splitting into multip...
by ray.wurlod
Tue Feb 07, 2006 2:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wrapper Stages
Replies: 2
Views: 1394

Seems like an ideal application to use an External Filter stage.
by ray.wurlod
Tue Feb 07, 2006 2:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal Error: Caught unknown exception in main program
Replies: 13
Views: 8403

My OS is Windows and is there any alternative for /dev/null? The reason for using TRANSFORMER stage is, my table has timestamp fields and it has NULL value also. So direct ODBC -> SEQUENTIAL gives the fixed length NULL value error. A file called NUL exists in every folder. So you can use .\NUL as t...
by ray.wurlod
Tue Feb 07, 2006 2:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Project getting locked
Replies: 22
Views: 9782

I would expect to see "license count exceeded" error message in this case.
by ray.wurlod
Tue Feb 07, 2006 2:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Db2 Stage error
Replies: 2
Views: 1449

Did you change the length attribute of any VarChar (string [max=n]) column? If not, report the bug through your service provider.
by ray.wurlod
Mon Feb 06, 2006 10:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: We have FTP plugin and FTP enterprise. how abt SFTP
Replies: 1
Views: 1711

There is no S-FTP stage such as you postulate. You could create your own, as a Wrapper stage.
by ray.wurlod
Mon Feb 06, 2006 10:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ETL server set up with EMC disk array
Replies: 6
Views: 2172

You can use partition parallelism in server jobs. Enrol on Server to Parallel Transition class (offered through this site) to discover how.
by ray.wurlod
Mon Feb 06, 2006 7:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance difference between fixed-width / Delimited file
Replies: 10
Views: 5581

Theoretically at least fixed width format is always faster than delimited. The main reason for this is that, in delimited files, the process must read one character at a time, checking whether each is a delimiter character. With fixed-width data, data can be processed (a) in row-sized chunks and (b)...
by ray.wurlod
Mon Feb 06, 2006 7:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-02291
Replies: 7
Views: 2806

On the server, at the operating system prompt, type this command. oerr ORA 02291 This will (a) prove to you that it's an Oracle error (not a DataStage error), (b) suggest what you can do about it. Then you can modify your job design so that you do not violate a foreign key constraint - maybe by load...