Search found 42189 matches

by chulett
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

After you click 'Show Error' and it highlights the Transformer, click 'More'. It will tell you exactly what it thinks is wrong.
by chulett
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...
by chulett
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

:? Never had that problem. Don't really want to derail this thread, but you shouldn't have to worry about 'numeric lookups'.
by chulett
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

Well, there is a Java "pack" available. I don't know beans about it, only that it exists and may let you do what you want. You'd need to contact Ascential about getting your hands on it. That and to find out the additional price tag, if any. :?
by chulett
Wed Jan 26, 2005 9:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Coping Datastage jobs
Replies: 4
Views: 1433

Export them via the DataStage Manager via the Export / DataStage Components menu item. You shouldn't need a network connection per se to move your jobs to another project, simply connect to the new project via the Manager and then Import your .dsx file.
by chulett
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

DISABLE the constraints, don't drop them. :wink: Use the update actions I mentioned and then, as Ogmios points out, reenable them when the job is done.

And as noted have a good plan in place in case they can't be reenabled. :wink:
by chulett
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...
by chulett
Tue Jan 25, 2005 1:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: resetting aborted jobs
Replies: 7
Views: 1548

The scheduler isn't part of this equation. What matters is how the jobs are run - via a Sequencer, via hand-coding / Job Control or directly via a script and 'dsjob' from the command line.

Each have different mechanisms and APIs for controlling resetting of aborted jobs.
by chulett
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...
by chulett
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...
by chulett
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...
by chulett
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

So... if you "don't want" the time portion, set it to zeroes (midnight) by appending " 00:00:00" to the end of your properly formatted date string.

FYI - The output for an OCI Timestamp field needs to be in "YYYY-MM-DD HH24:MI:SS" format. Dashes not slashes. :wink:
by chulett
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

There is no ".exe" in the strictest sense for Server jobs. :?

What are you trying to accomplish?
by chulett
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...
by chulett
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...