Search found 53125 matches

by ray.wurlod
Mon Jul 17, 2006 6:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Ds takes fields from incorrect lookup
Replies: 10
Views: 2171

Not a new work file, but a new virtual Data Set (in memory).
by ray.wurlod
Mon Jul 17, 2006 6:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ceritification details on DataStage
Replies: 6
Views: 2484

Sample question on IBM's website- follow link to sample test.
Vincent McBurney's blogs about the process will fill in some gaps.
by ray.wurlod
Mon Jul 17, 2006 6:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Ds takes fields from incorrect lookup
Replies: 10
Views: 2171

It takes both D columns, but the one from the second lookup overrides the one from the first. Put in a Copy stage or a Modify stage on one of the lookup links to change the column names so that they're all distinct.
by ray.wurlod
Sun Jul 16, 2006 4:56 pm
Forum: Data Integration
Topic: Handling SCD with SSIS
Replies: 3
Views: 9485

Handling SCD with SSIS

While trolling through the internet I happened upon this article on a new way to handle Slowly Changing Dimensions (SCD) with SQL Server Integration Services. It's not related to "our" product suite, but someone here might be interested. At least in finding another SQL Server blog site! Some other S...
by ray.wurlod
Sun Jul 16, 2006 4:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs of Job Sequence
Replies: 3
Views: 1188

If you're using version 7.5, click on the second tool from the right in the toolbar to produce complete documentation, including a picture of the job sequence design.
by ray.wurlod
Sat Jul 15, 2006 10:43 pm
Forum: General
Topic: Sequential file to XML Output
Replies: 9
Views: 7397

Welcome aboard. :D The first thing to do is to post your question in the correct forum. This forum is so that you can tell the world how great (or bad) you believe this site (DSXchange) to be. The second thing you need to do is to get some training. The vendor (IBM) offers standard classes on which ...
by ray.wurlod
Sat Jul 15, 2006 10:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: surrogate key file SDKSequences file corrupt
Replies: 11
Views: 4316

More to the point, do you take any steps to synchronize SDKSequences with the table? A simple job can SELECT MAX(keycol)+1 FROM table and load this into the SDKSequences hashed file, giving the name of the sequence as the key value (a constant in a Transformer stage). The key management routines do ...
by ray.wurlod
Sat Jul 15, 2006 4:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: surrogate key file SDKSequences file corrupt
Replies: 11
Views: 4316

We use PS EPM 8.9, but we developed most of Ascential jobs by Oracle consultants. Be specific, we have one dimension table d_program_fdm, after running all dimension jobs, the max dimension sid for d_program_fdm is 1,000,124. but in SDKSequences file, d_program_fdm has value as 30. SDKSequences, be...
by ray.wurlod
Sat Jul 15, 2006 4:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: handle exceptions and continue
Replies: 3
Views: 789

You might want to, but it can't be done, as was observed. In your case, you can have a second trigger from each job activity to handle reporting of the problem (use a custom trigger, Activity.$JobStatus <> DSJS.RUNOK).
by ray.wurlod
Sat Jul 15, 2006 4:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invocation ID
Replies: 21
Views: 3718

The question, as I understand it, is how to pass the invocation ID from a multi-instance job sequence to the multi-instance jobs run from that job sequence. The short answer is that you have to discover the job sequence's invocation ID upstream of the Job activity. I suggest a Routine activity that ...
by ray.wurlod
Sat Jul 15, 2006 4:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rollup Data
Replies: 11
Views: 2193

Walter, more likely, our dear webmaster, is the one to fix this. Looks like the message board software has gone somewhat agley.
by ray.wurlod
Sat Jul 15, 2006 4:35 am
Forum: Enhancement Wish List
Topic: Postgres Support ?
Replies: 6
Views: 3060

That a driver is not supported by IBM doesn't mean you can't use it. That's the entire point of OPEN DataBase Connectivity. All you need to do is to have its library findable (LD_LIBRARY_PATH environment variable, set in the dsenv script) and edit the .odbc.ini file to refer to it. Use any of the ot...
by ray.wurlod
Fri Jul 14, 2006 12:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: truncate issue in oracle stage
Replies: 1
Views: 889

What are your property settings for the (presumably) Oracle Enterprise stage?
by ray.wurlod
Fri Jul 14, 2006 12:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: use the new value as job parameter for a loop
Replies: 15
Views: 5309

Bummer. UtilityHashLookup does not work with pathed hashed files. You could readily adapt it, of course.
by ray.wurlod
Fri Jul 14, 2006 12:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can Multiple people run the same DS Sequence Simultaneously?
Replies: 3
Views: 1008

In the job properties of the job sequence there is a check box called something like "Enable Multi-Instance". With this checked, a run request will additionally prompt for an Invocation ID, which is a string that uniquely identifies this clone of the job from all the other clones. Provided no-one el...