Search found 53125 matches
- Thu Feb 26, 2009 3:21 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Calculating different due dates based on installment number.
- Replies: 11
- Views: 2369
- Thu Feb 26, 2009 3:15 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Implementing lengthy transformation logic
- Replies: 12
- Views: 2412
- Thu Feb 26, 2009 3:12 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Know current users working
- Replies: 7
- Views: 1202
- Thu Feb 26, 2009 3:09 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Calculating different due dates based on installment number.
- Replies: 11
- Views: 2369
It doesn't matter whether it's two or 50 or millions, you're going to need some code. It might be a BuildOp, or you may prefer to script it and use an external filter stage. Or you may like to encapsulate your code in an Oracle stored procedure and call that. I believe there will be a looping constr...
- Thu Feb 26, 2009 3:06 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Dynamic file write stage.
- Replies: 8
- Views: 2447
- Thu Feb 26, 2009 3:05 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Usage of sequencers:How to implement "Restartablity&
- Replies: 5
- Views: 1714
- Thu Feb 26, 2009 3:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to get list of job names from batch
- Replies: 4
- Views: 1632
The BAT script needs to begin with a CD to the project directory.
Then run the uv (or dssh) command with the query as its argument.
Then run the uv (or dssh) command with the query as its argument.
Code: Select all
%DSHOME%\dssh "SELECT NAME FMT'80L' FROM DS_JOBS WHERE CATEGORY LIKE '\Jobs\KeyGenJobs' ; "- Thu Feb 26, 2009 2:59 pm
- Forum: General
- Topic: How to delete readonly routines
- Replies: 11
- Views: 4617
You are on version 8. Nothing is simple any more. There are two repositories - the local-to-project DataStage repository and the common, unified, metadata repository for Information Server. Can you delete the routine from the client? Otherwise have your support provider advise how to use the scripts...
- Thu Feb 26, 2009 2:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Inter Process Stage
- Replies: 4
- Views: 2453
There must be some other stages in your job - a Link Collector stage must have one or more input links. It is my understanding that the Link Collector stage creates a process for itself and that, as a result, you must have inter-process row buffering enabled if you are using this stage type. As far ...
- Thu Feb 26, 2009 2:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Cannot view data using Oracle Stage but can import structure
- Replies: 3
- Views: 1569
- Thu Feb 26, 2009 2:49 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problem while Importing datasteg jobs
- Replies: 7
- Views: 4309
- Thu Feb 26, 2009 2:47 pm
- Forum: General
- Topic: Executing Datastage Jobs through UNIX shell scripts
- Replies: 7
- Views: 3644
- Thu Feb 26, 2009 2:46 pm
- Forum: General
- Topic: Parsing a DSX, trying to associate file metadata
- Replies: 5
- Views: 1426
Each pin record has, somewhere in its structure, the DSRID of the pin on the other end of its link. Its value has the form VnSnPn so it should be fairly easy to spot. For example, pin V0S1P1 (DS_JOBOBJECTS record J\n\V0S1P1) might have field #5 containing V0S2|V0S2P1 meaning that stage V0S2 is on th...
- Thu Feb 26, 2009 4:11 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Nested functions in modify
- Replies: 4
- Views: 1451
- Thu Feb 26, 2009 4:09 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Need info on usage of server shared container in parallel jo
- Replies: 1
- Views: 905
Parallel Job Developer's Guide, Chapter 2 (near the end). Why? Because the server shared container stage contents must execute in a server job context and that can only be guaranteed if you can guarantee that the server engine is accessible. You can not guarantee this in any multiple machine enviro...