Search found 53125 matches
- Thu Jan 27, 2005 9:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequence job restart
- Replies: 7
- Views: 2266
- 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
- Thu Jan 27, 2005 7:42 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequencer
- Replies: 6
- Views: 1525
- 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
- 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...
- 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 executed through ExecDOS or DSExecute.
Code: Select all
AT \\computername hh:mm "command"- 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 ...
- 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
- Thu Jan 27, 2005 3:06 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequencer
- Replies: 6
- Views: 1525
- 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
- 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
- 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...
- 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...
- 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...
- 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...