Search found 53125 matches

by ray.wurlod
Thu Feb 07, 2013 3:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stage variable derivation problem
Replies: 4
Views: 1478

When an expression is red, right click on it and ask DataStage to validate the expression. It will indicate the syntax error for you.
by ray.wurlod
Thu Feb 07, 2013 3:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substring/parse question
Replies: 3
Views: 1761

Code: Select all

NewField1 <--  Field(OldField, "-", 1, 2)
NewField2 <--  Field(OldField, "-", 3, 3)
by ray.wurlod
Thu Feb 07, 2013 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting from Binary(40) to Varchar 255
Replies: 4
Views: 1900

Is there a string_from_raw() function for the Modify stage in version 7? (I don't have version 7 documentation with me at the moment.)
by ray.wurlod
Thu Feb 07, 2013 3:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hash partitioning and Sorting
Replies: 2
Views: 1681

Some stages require sorted input because of the way they operate. This is unrelated to the partitioning algorithm used. If you do not achieve key adjacency using a key-based partitioning algorithm your results can be simply wrong; for example on four nodes summarising by US state, you can end up wit...
by ray.wurlod
Thu Feb 07, 2013 3:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Temporary lookuptable.* files unexpectedly accumulating
Replies: 2
Views: 1308

Welcome aboard. These tables in the scratch disk *should* be cleaned up automatically, as you surmise. That they aren't is something you should raise with your official support provider. In the meantime your cleanup script serves as a workaround.
by ray.wurlod
Thu Feb 07, 2013 3:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Why to use Copy Stage for single input and output.
Replies: 7
Views: 3626

Not all optimizations turn out to be optimal. The same is especially true of operator combination, which is way too aggressively done for my liking.
by ray.wurlod
Thu Feb 07, 2013 3:44 pm
Forum: General
Topic: Problem coping a project from one box to another
Replies: 3
Views: 907

Version 8 is radically different architecturally from version 7. For a start there are two repositories, and one of them in not your DataStage project.

It is no longer possible to do what you are attempting. Learn the right ways.
by ray.wurlod
Thu Feb 07, 2013 3:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformer Derivations
Replies: 4
Views: 2022

Re: Transformer Derivations

shripal86 wrote:I need to migrate datastage jobs from Server7x to Parallel8x edition.
Why not just keep the server jobs?
by ray.wurlod
Thu Feb 07, 2013 12:27 am
Forum: General
Topic: Dsjob with Password Encryption
Replies: 3
Views: 2338

I have only had success with the encrypted password on the dsjob command line. Are you fully up to date with your fix packs?
by ray.wurlod
Wed Feb 06, 2013 8:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Why to use Copy Stage for single input and output.
Replies: 7
Views: 3626

Welcome aboard. The optimized job score will remove a Copy stage that does a simple transfer, so the two jobs will have identical performance. You can prevent this removal via the Force option in the Copy stage itself, but it's a pretty efficient operator and you may still not see any performance di...
by ray.wurlod
Wed Feb 06, 2013 8:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sum, Count on varchar in Aggregator
Replies: 16
Views: 12368

You can, but there's no simple COUNT when calculating. You can count missing values, you can count non-missing values, but there's no actual count. If you know there are no missing values then a count of non-missing values would probably suffice.
by ray.wurlod
Wed Feb 06, 2013 8:15 pm
Forum: General
Topic: Installing DataStage client 7.1, 7.5.1 and 8.7 in Windows 7
Replies: 3
Views: 2451

Welcome aboard.

For starters, version 7.x is a purely 32-bit application - you need to be aware of that. They are also of an age that their installation is not supported on Windows 7 (which did not exist at the time).
by ray.wurlod
Wed Feb 06, 2013 8:13 pm
Forum: General
Topic: Dsjob with Password Encryption
Replies: 3
Views: 2338

I have used that syntax only successfully. Is your password actually correct? Has it expired?
by ray.wurlod
Wed Feb 06, 2013 8:11 pm
Forum: General
Topic: Parameter_Set
Replies: 1
Views: 950

There is no limit. Do whatever is best for your purposes, not neglecting ease of maintenance.
by ray.wurlod
Wed Feb 06, 2013 8:09 pm
Forum: General
Topic: Attempting to Cleanup after ABORT raised in job ..jobcontrol
Replies: 2
Views: 3596

You always get that message when the job aborts. Look for earlier errors in the job log.

Indeed, as a general practice, always try to resolve the first error first.