Search found 53125 matches

by ray.wurlod
Sun Feb 05, 2012 3:38 pm
Forum: General
Topic: Run the jobs always by dsadm
Replies: 7
Views: 2162

But an enhancement request for password policies to be available in internal registry has already been submitted, so "watch this space".
by ray.wurlod
Sun Feb 05, 2012 6:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Stage-Aborted- Cannot allocate memory
Replies: 9
Views: 5692

Only the Endianness doesn't come into this issue, which is about bittage.
by ray.wurlod
Sun Feb 05, 2012 6:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: creating a job
Replies: 6
Views: 1627

Google will help with the first part of the question. Once you have decided what specific kind of crosswalk table you're interested in, it may be easier to provide cogent advice.
by ray.wurlod
Sun Feb 05, 2012 6:48 am
Forum: General
Topic: Run the jobs always by dsadm
Replies: 7
Views: 2162

Looks like it's already been achieved, based on your first post in this thread. Check everything about your Engine Credentials. I'd warrant that dsadm has been set as the default for users who don't have credentials and that no other users have credentials mapped.
by ray.wurlod
Sat Feb 04, 2012 4:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Question on Partitioning/Sorting technique
Replies: 2
Views: 1085

If, unequivocally, each value of Party_ID will occur on one and only one partition when the data are partitioned by Partition_ID then the advice you have received is sound. If this condition can not be met, even for one row, then they are wrong, and you need to partition (and sort) by Party_ID ahead...
by ray.wurlod
Sat Feb 04, 2012 4:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What happens in Pre-compilation?
Replies: 11
Views: 3980

Pre-compilation of sequences can take a bit longer, because the existence of each of the referenced jobs and routines is checked, and connectivity to the client is also checked - part of sequence compilation actually occurs on the client.
by ray.wurlod
Sat Feb 04, 2012 4:15 pm
Forum: General
Topic: Creating new Dynamic VOC file and replacing the VOC file
Replies: 19
Views: 5792

Given the transient nature of hashed files in DataStage and the apparent preference for parallel jobs - even when server jobs would be way faster - I agree with them that there'd be no market.
by ray.wurlod
Sat Feb 04, 2012 4:13 pm
Forum: General
Topic: Export jobs in XML format from Server side using DS 8.0
Replies: 7
Views: 5008

The suffixes are important. ".pjb" is not just a job; it's a parallel job. Can you guess what ".mjb", ".qjb" and ".sjb" are?
by ray.wurlod
Sat Feb 04, 2012 4:11 pm
Forum: General
Topic: Where is BlueprintDirectorSetup.exe in 8.7
Replies: 3
Views: 1046

I'd agree with that summation. Unfortunately I'm not on an 8.7 system this week, so can't check. Next week maybe.
by ray.wurlod
Sat Feb 04, 2012 4:10 pm
Forum: General
Topic: List Users by Project
Replies: 7
Views: 5012

Pre 8.x DataStage was a stand-alone product.
by ray.wurlod
Sat Feb 04, 2012 4:08 pm
Forum: General
Topic: Run the jobs always by dsadm
Replies: 7
Views: 2162

... or you can set up dsadm as the default Engine Credentials. The downside is that you lose auditability - all changes will be recorded as having been made by dsadm. Why not solve the permissions problem itself, rather than take this ill-advised route?
by ray.wurlod
Fri Feb 03, 2012 8:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: logic required
Replies: 5
Views: 1460

As noted, you don't need a loop. A single Index() function can check all possible values. Delimit them, and the search string, with some character (space will do). For example, the following function will return 0 if not found and some non-zero value if found. Index(" A B C D E F G H I J K L M ...
by ray.wurlod
Fri Feb 03, 2012 8:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Writing to .mdb file via datastage
Replies: 11
Views: 4879

You still need to configure a System DSN to associated the DSN with the mdb file, since DataStage will use the DSN. You also need to "register" the DSN in a uvodbc.config file. Note: If you are using a 64-bit Windows operating system, use odbcad32.exe in %Windows%\SysWOW64 folder to config...
by ray.wurlod
Fri Feb 03, 2012 8:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to handle non-standard ascii characters
Replies: 0
Views: 869

What if you make up a string of the characters you need to convert in a stage variable. For those you can't enter via the keyboard, concatenate a Char function; for example 0xFF is Char(255).
by ray.wurlod
Fri Feb 03, 2012 8:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What happens in Pre-compilation?
Replies: 11
Views: 3980

I don't think it's ever been documented. I think of precompilation as a sanity check, for example making sure that no mandatory properties have been missed, that all the stages are connected properly, etc. But with the relatively new Connector stage types, who knows? Maybe a lot more checking is don...