Search found 42189 matches
- Thu Jan 27, 2005 2:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error compiling generated subroutine ERROR
- Replies: 6
- Views: 3711
- Thu Jan 27, 2005 7:58 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Multiple Datastage Servers on on IBM SP Cluster
- Replies: 9
- Views: 2784
The DataStage engine uses shared memory with specific addresses, so running more than one instance on a given machine (i.e. one ip address)is not going to work. Actually, with 7.x you can! Not that I'd want to mess with that, mind you, but they have introduced the concept of a "tag" for the primary...
- Thu Jan 27, 2005 7:51 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Validating records using Key Expression in transformer
- Replies: 4
- Views: 1551
- Thu Jan 27, 2005 7:49 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: shall we extract the data through JDBC driver?
- Replies: 3
- Views: 787
- Wed Jan 26, 2005 9:43 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Coping Datastage jobs
- Replies: 4
- Views: 1433
- Wed Jan 26, 2005 6:45 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Clearing data from target tables
- Replies: 6
- Views: 1271
- Wed Jan 26, 2005 6:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: database password changed
- Replies: 17
- Views: 3833
And, of course and as mentioned by trokosz, the discussion ranges well beyond just database passwords. The Rule of Thumb should be that anything that can change from environment to environment, day to day, release to release should be parameterized. For databases that can be DSN, Host, Userid, Passw...
- Tue Jan 25, 2005 1:10 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: resetting aborted jobs
- Replies: 7
- Views: 1548
- Tue Jan 25, 2005 1:05 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Clearing data from target tables
- Replies: 6
- Views: 1271
Depending on your database and therefore the plugin you are using, there should be two Update Action options built into your target stage: * Clear table - transactional delete of all records * Truncate table - non-transactional clear of all records You can also do something before-job via a script i...
- Tue Jan 25, 2005 10:30 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSGetLinkInfo
- Replies: 6
- Views: 1863
You can create a routine of the Transform Function type and then run it outside of your DataStage jobs via a Sequencer and the Routine Activity stage. It's a little more generic of a routine, would allow multiple input arguments and would look something like this: $INCLUDE DSINCLUDE JOBCONTROL.H rJo...
- Tue Jan 25, 2005 9:28 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSGetLinkInfo
- Replies: 6
- Views: 1863
I've done something similar by passing in the Job Name, Stage Name and Link Name as parameters to the routine and then passing the row count out as the Answer. You would need to attach to the job, use that handle to get the link information and then detach from the job. This lets you use it in a Rou...
- Tue Jan 25, 2005 9:22 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to convert a date value
- Replies: 4
- Views: 1761
- Mon Jan 24, 2005 4:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to make .exe from exported jobs
- Replies: 4
- Views: 961
- Sun Jan 23, 2005 8:31 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Aborting Job
- Replies: 4
- Views: 1992
Re: Aborting Job
'What is the most efficient way to abort a running job, close the Window? stop it via Director? or ?" Kim has already addressed the Director issue and the proper way to stop a job. I just wanted to address the 'close the Window' comment. I'm assuming 'the window' refers to having a job open in Desi...
- Sat Jan 22, 2005 9:22 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to change a read-only routine?
- Replies: 13
- Views: 1340
Is there any way my entire code can be disclosed i.e where others cannot do a copy and paste of my routine code. If you really don't want people 'borrowing' your routines, the only way to do that here would be to not disclose them. Share them offline with someone you trust, but putting them here pu...