Search found 53125 matches

by ray.wurlod
Thu Jan 27, 2005 9:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence job restart
Replies: 7
Views: 2266

There is an Enhancements forum right here. Dennis and the team forward them to Ascential.
by ray.wurlod
Thu Jan 27, 2005 9:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating XML Files from DS PX
Replies: 8
Views: 3195

These are actually in 7.1r1. 8)
by ray.wurlod
Thu Jan 27, 2005 7:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer
Replies: 6
Views: 1525

3.0 came out prior to 2.5. :twisted:

After all, they're only for uniqueness, aren't they?
by ray.wurlod
Thu Jan 27, 2005 7:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue converting SQL Server Timestamp to UDB Timestamp
Replies: 8
Views: 2767

Perhaps ".sss" rather than ":sss"?

Perhaps without milliseconds at all?

Or do they expect microseconds (".ssssss")?
by ray.wurlod
Thu Jan 27, 2005 3:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can we see a Job's Code
Replies: 4
Views: 1577

A job is executed by a BASIC routine called DSD.RUN. Source code for this is not available. A Transformer stage is executed by a BASIC routine called DSD.StageRun. Source code for this is not available. The code generated for a Transfomer stage by compiling a job can still be viewed in RT_BPnnn, whe...
by ray.wurlod
Thu Jan 27, 2005 3:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connection Error
Replies: 7
Views: 1964

You could always use

Code: Select all

AT \\computername hh:mm "command"
executed through ExecDOS or DSExecute.
by ray.wurlod
Thu Jan 27, 2005 3:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling 'DLL' from DataStage routine
Replies: 5
Views: 1383

So Ogmios, does that mean its possible on windows. If so how? The mechanism is the GCI (General Calling Interface). You need to set up a function definition (so that, when the function is called, data types can be converted from/to DataStage's "typeless" environment. This GCI definition must exist ...
by ray.wurlod
Thu Jan 27, 2005 3:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error compiling generated subroutine ERROR
Replies: 6
Views: 3711

If you're still having a problem, post the output of clicking More on this forum.
by ray.wurlod
Thu Jan 27, 2005 3:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer
Replies: 6
Views: 1525

So Irrespective of wat parameters we gave in sub jobs, It will over write from Job Sequencer Parameters list...rt..?
Not necessarily. One choice in the Job Activity is the "Set to Default" button. This causes the controlled job's own default value to be used.
by ray.wurlod
Thu Jan 27, 2005 3:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parameter passing from outer sequencer to inner sequencer
Replies: 2
Views: 968

This error can also mean that all of the Oracle listeners that the DBA has set up are already in use, so no more listeners can be allocated. Check with your DBA, who should be monitoring such things.
by ray.wurlod
Thu Jan 27, 2005 3:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: shall we extract the data through JDBC driver?
Replies: 3
Views: 787

there is a Java "pack" available. I don't know beans about it

:lol:
by ray.wurlod
Thu Jan 27, 2005 3:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob Win batch file
Replies: 11
Views: 5197

It should be exactly the same, except that: command line arguments are accessed as %1, %2 and so on variables, including environment variables, are accessed as %varname% there is no such thing as a "here script" The last of these ought not to be a problem for a dsjob BAT file. Take a look at the BAT...
by ray.wurlod
Thu Jan 27, 2005 12:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Validating records using Key Expression in transformer
Replies: 4
Views: 1551

Your design as sketched is OK, but we can't see the stage and link properties. Populate your hashed file with the four key columns. Make sure that they are all marked as key columns. In your Transformer stage you will be required to enter four reference key expressions - presumably one from each rel...
by ray.wurlod
Thu Jan 27, 2005 12:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: converting shell scripts to datastage jobs
Replies: 1
Views: 805

There is only one sensible way to go about this task. 1. Analyse what the shell script does. Under all circumstances. 2. Write this out as an set of target from source mappings. 3. Implement the same as one or more DataStage jobs. Look for opportunities to optimize at each step in the above. Since y...
by ray.wurlod
Wed Jan 26, 2005 7:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to improve preformance of a job that take more than 12 h
Replies: 4
Views: 1127

Check also why your lookups fail most of the time (all of the time for the Person lookup). Failed lookups actually take a little longer than successful ones. Is it possible to use one link rather than two to get the information from the Oracle database? The SQL would then need to join the two tables...