Search found 42189 matches

by chulett
Thu Feb 15, 2007 7:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to suppress a warning
Replies: 3
Views: 1354

You know this, but - you are in violation of your licensing agreement, hence the 'problem' you are trying to solve here. Two solutions: 1) Remove 2 CPUs. 2) Upgrade your license. Plus (I guess) a third - get used to it. Only one of the first two will 'suppress' the warning. Edited to add - are these...
by chulett
Thu Feb 15, 2007 7:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: EXPRESS LIKE or NOT LIKE EXPRESSION
Replies: 3
Views: 1379

Simple enough to test in a routine, yes? I believe you've got the syntax correct but for whatever reason I don't use that function all that much. Easy enough to test, however. The online help should say if there is specific 'not' syntax. If there isn't, you can always use the 'Not' function to rever...
by chulett
Thu Feb 15, 2007 7:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: One projet with multiple environnements (parameters)
Replies: 8
Views: 1915

Re: One projet with multiple environnements (parameters)

All string parameters (ex DSN, user, schema) can be changed but I can't change the password because it's in encrypted type. So, the password is always the default value filled in the job. This is not true, you certainly can change the value of encrypted parameters. Their 'default' can be changed in...
by chulett
Wed Feb 14, 2007 9:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: TimeStamp Issue
Replies: 6
Views: 1541

You need to have a chat with your lead, as there is obviously a disconnect somewhere. This can't be about allowing you to load invalid timestamps. Perhaps the requirement is to be able to load either format. Arnd has started you down that path, both can be handled with the functions he mentioned. Yo...
by chulett
Wed Feb 14, 2007 7:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Single stage for running script
Replies: 11
Views: 2158

Why not have a job that does this? Why do you 'need' to run sql scripts? How to do that in a single job. OCI stage does not do anything of its own. I need to add another stage to OCI to get that working. As Ray noted, a Row Generator can feed the stage. In a Server solution, all you need is a Trans...
by chulett
Wed Feb 14, 2007 5:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Single stage for running script
Replies: 11
Views: 2158

Why not have a job that does this? Why do you 'need' to run sql scripts?
by chulett
Wed Feb 14, 2007 3:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Abort the job based on some logic?
Replies: 9
Views: 3186

Other than for Restartable Sequence jobs, I'm right there with ya. :wink:
by chulett
Wed Feb 14, 2007 2:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: oracle union question
Replies: 12
Views: 2649

Try it out, let us know. :wink:
by chulett
Wed Feb 14, 2007 2:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: TimeStamp Issue
Replies: 6
Views: 1541

Re: TimeStamp Issue

pradkumar wrote:I want to insert '2007-12-31 13:00:01 AM' into the column.

No, you don't as that is an invalid timestamp value. You either do 'military' 24 hour time or the 'AM/PM' variety, not both. Which way do you want?
by chulett
Wed Feb 14, 2007 2:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: oracle union question
Replies: 12
Views: 2649

dj352001 wrote:query block has incorrect number of result columns

Simply means you aren't selecting the same number of columns in each query. Period.
by chulett
Wed Feb 14, 2007 11:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Version Control: How do you do at your place
Replies: 18
Views: 4068

Any comparsion tool is going to do the exact same thing unless it is 'DataStage aware' like the process built into Version 8. So to me this would be more of a personal preference choice than anything.
by chulett
Wed Feb 14, 2007 8:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Controller problem: Unhandled failure (2)encountered calling
Replies: 3
Views: 2648

Nah... it's the standard 'problem' with any routine that returns a non-zero result and the 'Automatically handle activities that fail' option in a Sequence job. Discussed here a bajillion times and documented in the online help. You need to use two triggers so that the Sequence job thinks you have h...
by chulett
Wed Feb 14, 2007 8:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSN,PLUGIN ISSUE
Replies: 21
Views: 10259

Like so:

Code: Select all

cd $DSHOME
. ./dsenv
cd ../Projects/<project name>
$DSHOME/bin/dssh

Assuming a 'standard' installation location and your userid has $DSHOME set.
by chulett
Wed Feb 14, 2007 8:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Abort the job based on some logic?
Replies: 9
Views: 3186

- If file is not found then I have abort the job and I have to send a mail saying that required file is not there. Just run the job. If the file isn't there, the job will abort without you having to do anything. To send an email in that case, you'll need to use a Sequence job to run the job and tri...
by chulett
Wed Feb 14, 2007 7:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic File Names
Replies: 4
Views: 1157

Actually, as I understand it, it would need to be:

Sequential File => BuildOp

And the BuildOp would be responsible for writing all the files.