Search found 53125 matches

by ray.wurlod
Tue Nov 21, 2006 12:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Size Hash File
Replies: 1
Views: 643

You can use the uvwalk command to traverse the directory (folder) structure. If you have a common location or naming convention for your hashed files, then life becomes simpler. For example you might be able to use the -prefix option. Combine the results with dir commands in a BAT file to determine ...
by ray.wurlod
Tue Nov 21, 2006 12:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what are two types of hash files??how it differ?
Replies: 5
Views: 1368

Lock tables are hashed files (in memory). As I said, there's lots of kinds of hashed files. But I will not elaborate further, as it doesn't help anyone.
by ray.wurlod
Tue Nov 21, 2006 11:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading Encrypted Data
Replies: 8
Views: 2705

DataStage is not a codebreaker. It can only do what any other database client can do - issue SQL that includes appropriate SQL functions for performing particular tasks, and receive the results of such SQL.
by ray.wurlod
Tue Nov 21, 2006 11:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: have problem with the sort stage
Replies: 2
Views: 753

You need to discover what constant your particular database (you chose not to reveal which it was) uses to represent the current date. Is it SYSDATE, CURRENT_DATE or some other formulation. It is not a DataStage problem. That said, the Sort stage does not have the capacity to execute SQL in any case...
by ray.wurlod
Tue Nov 21, 2006 11:52 am
Forum: General
Topic: Same job run parallel (along with multiinstance)
Replies: 7
Views: 4036

Please think about what you've just asked. You should be able to answer your own question. A Job activity waits until its job finishes.
by ray.wurlod
Tue Nov 21, 2006 7:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Output of list.readu every
Replies: 6
Views: 2551

It's not per job, it's per connected client.
by ray.wurlod
Tue Nov 21, 2006 7:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage
Replies: 3
Views: 1244

...none of which will work on the Repository when you get version 8.
by ray.wurlod
Tue Nov 21, 2006 7:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To hide warning messages in Datastage parallel edition
Replies: 9
Views: 7176

But far, far better is to eliminate the cause.
by ray.wurlod
Tue Nov 21, 2006 7:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to create a USER
Replies: 10
Views: 3520

Users are created using unskilled labour! :lol:

A man and a woman need to be involved at some point. And performance is slow. Using parallelism, however, nine women ought to be able to create a baby in one month.
by ray.wurlod
Tue Nov 21, 2006 7:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to create a USER
Replies: 10
Views: 3520

Users are created using unskilled labour! :lol:
by ray.wurlod
Tue Nov 21, 2006 7:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage jobs are not visible in the Designer
Replies: 7
Views: 3800

Wanna bet? DS.REINDEX ALL with connected users can make things worse - you can guarantee that the index is emptied!
by ray.wurlod
Tue Nov 21, 2006 7:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: User Status
Replies: 19
Views: 6948

Perhaps, but I've seen it at three separate sites.
by ray.wurlod
Tue Nov 21, 2006 7:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Appending to same SeqFile from multiple input links
Replies: 2
Views: 1041

That's because you're breaking the rules again. The operating system (not DataStage) only allows one writer to a file at one time. You must write to separate files, and assemble them into one afterwards with a TYPE command.
by ray.wurlod
Tue Nov 21, 2006 7:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP
Replies: 4
Views: 874

Prefer mput to send multiple files. The suffix ought to make no difference.
by ray.wurlod
Tue Nov 21, 2006 7:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: optimize a load between two oracle database
Replies: 1
Views: 724

The ORABULK stage invokes sqlldr.

You may prefer to use a Sequential File stage and your own, custom, sqlldr control file (with tuned buffer sizes, etc.) You can also truncate your table with an OCI stage set to "truncate and insert" but which you send no rows.