Search found 53125 matches

by ray.wurlod
Thu Nov 02, 2006 8:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Maximum number of KEY Fields in a Hash File
Replies: 13
Views: 3798

Do you have an English language specification of what you are trying to accomplish, that you could share with us?

There's usually another way, but we don't want to waste time suggesting things that aren't what's needed.
by ray.wurlod
Thu Nov 02, 2006 7:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Object Code
Replies: 1
Views: 1371

Most of what is generated by DataStage parallel jobs is not object code, but Orchestrate shell (osh) script. Transformer stages and BuildOps have to go through a process of generating C++ source, then compiling and linking it, and obviously these have to be stored somewhere. It's probably inadvisabl...
by ray.wurlod
Thu Nov 02, 2006 7:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can i enable RCP in DB2 API Stage
Replies: 4
Views: 2324

Theoretically the answer is yes. With RCP enabled, the default behaviour of Read mode is the same as SELECT * FROM tablename; - that is, all columns are selected. In practice this can result in far more data having to be transferred from the database server to DataStage than is really warranted.
by ray.wurlod
Thu Nov 02, 2006 7:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Use of 3rd party tool..
Replies: 8
Views: 3579

When is the interview?
by ray.wurlod
Thu Nov 02, 2006 7:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance Tuning..
Replies: 1
Views: 1266

And we have ethical objections to supplying answers to interview questions.

The typical problem with DataStage design, we find, is usually between the keyboard and the chair.
by ray.wurlod
Thu Nov 02, 2006 7:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference betn Datastage routine,function and store...
Replies: 2
Views: 1747

Yes, probably. Why do you need to know?
by ray.wurlod
Thu Nov 02, 2006 7:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to implement slowly change dimension..
Replies: 5
Views: 2069

Search is your friend. Do you think you were the first to ask about slowly changing dimensions?
by ray.wurlod
Thu Nov 02, 2006 7:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: suggest which typr of partition i use in PX job..
Replies: 13
Views: 3941

Your scenario will not apply in an integer sequence which is what I specified.
by ray.wurlod
Thu Nov 02, 2006 7:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: partition type-differences
Replies: 6
Views: 1437

Sign up for premium membership (for less than $1 per week) and help us fund the website. Then you will be able to read all of the premium posters' responses and save lots of development time. You will also get access to other nice things as well.
by ray.wurlod
Thu Nov 02, 2006 7:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job "TestJob" appears not to have started after 60
Replies: 3
Views: 1178

How many other jobs were running at the time? What other work was the machine doing at the time (for example is there also a database server)? And so on. It's overloaded - doesn't matter where the load comes from.
by ray.wurlod
Thu Nov 02, 2006 7:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Querying a hashed File
Replies: 15
Views: 3864

The hashed file is typically created without an @SELECT phrase from a Hashed File stage; the @SELECT phrase is, however, created if the hashed file is created from a UV stage because, in the latter case, there is expectation that SQL will be used to access the hashed file. Now we await the outcome o...
by ray.wurlod
Thu Nov 02, 2006 7:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Maximum number of KEY Fields in a Hash File
Replies: 13
Views: 3798

... and can not be tuned any higher.

Prove to me that you can not obtain uniqueness with fewer than 70 columns. This is a ridiculous amount! The most I've ever seen in very many years in database technology is nine. Sheesh! :roll:
by ray.wurlod
Thu Nov 02, 2006 7:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine Issue
Replies: 2
Views: 594

Try

Code: Select all

Call DSLogInfo("Testing Log: " : CmdCDArc : @FM : Output,"TestDir") 
to work out exactly what's happening.
by ray.wurlod
Thu Nov 02, 2006 7:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: routine compile error
Replies: 5
Views: 1351

There's no End to the On Error clause of your ReadSeq statement. Therefore your routine is syntactically incorrect and will not compile.

Your later question is unrelated to the compile error and therefore deserves a separate thread. You are not allowed to hijack even your own threads here. :x
by ray.wurlod
Thu Nov 02, 2006 7:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 Datastage issues:
Replies: 3
Views: 1095

Re: DB2 Datastage issues:

Why we are getting each and everytime diff issues instead if we are running the same Job and without changing the logic. Because other things, such as resource availability, change over time. Documenting such restrictions/requirements is part of the overall skill set of the experienced DataStage pr...