Search found 42189 matches

by chulett
Wed Feb 28, 2007 8:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compatibility between V7.5.1a and V7.1r2
Replies: 13
Views: 4115

Of course! You need to locate and install the Multi Client Manager - or MCM - it should be on the 7.5.1A cdrom. That will allow you to switch between the two clients as only one can be active at any given time.

And as you've found, without it only the last version installed works. :wink:
by chulett
Wed Feb 28, 2007 8:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: WebService Transformer Stage
Replies: 8
Views: 2844

Ernie - this is a continuation of a previous post where usage of this stage in a PX job generates a 'unable to load' error when the job runs. Hence the (possibly) erroneous advice that perhaps some of these system variables are not properly set. I've used them in Server jobs after installing the PAC...
by chulett
Wed Feb 28, 2007 8:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with dates loading in Oracle
Replies: 30
Views: 6131

What happens when it's 10 PM? Let's say the time is 10:18:19 PM - what happens when you take the right 10 characters? Same with the dates - months and days can be a single digit or two digits in your format. Better to use the field command to split it, not a fixed substring. Tell it that the field i...
by chulett
Wed Feb 28, 2007 7:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with dates loading in Oracle
Replies: 30
Views: 6131

Your time transformation isn't quite right. You need to tell it that it is coming in in 12 hour format but you want it out in 24 hour format. Try this:

Code: Select all

oconv(iconv(stgvar2,"MTHS"),"MTS") 
by chulett
Wed Feb 28, 2007 7:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with dates loading in Oracle
Replies: 30
Views: 6131

How did you check the result? Just because you loaded it with a time doesn't mean you have to select the time when you select the date. If you are not sure your transforms are correct, write them to a flat file along with the source field so you can check the results outside of Oracle. You can remov...
by chulett
Wed Feb 28, 2007 7:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing Job Status at Job Level
Replies: 3
Views: 1057

Why would you want to reinvent the wheel and not do this in a Sequence? Yes, you can do this 'after job', not in a transformer. Build a routine that captures the interim status of the job (remember, even after job it is still running so hasn't quite finished yet) and then email out whatever you feel...
by chulett
Wed Feb 28, 2007 7:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with dates loading in Oracle
Replies: 30
Views: 6131

Craig, I use to see some of your other posts as well where you insist not using User defined SQL. Will there be any performance improvement in using Bult in SQL or just for the sake of avoiding some generic errors? No, it's not about performance - it's about standards and maintenance. My stance on ...
by chulett
Wed Feb 28, 2007 6:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with dates loading in Oracle
Replies: 30
Views: 6131

You need to split your value into its component pieces - date and time. Use IConv to convert both to internal format and then OConv to get them back in the format Oracle expects: YYYY-MM-DD HH24:MI:SS Both pieces are converted separately and then concatenated back together with a space between them....
by chulett
Wed Feb 28, 2007 5:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running DOS Commands parallely
Replies: 7
Views: 1444

Yah, go ahead - I dares ya. :wink:
by chulett
Wed Feb 28, 2007 10:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: WebService Transformer Stage
Replies: 8
Views: 2844

The CDROM has a readme file on it. Installing the client puts a pdf document in the usual place called WSPACK_Designer.pdf. Neither of which mention any special configuration requirements for the product, btw. Your problem may be the fact that you are using the stages in a PX job. From the Designer ...
by chulett
Wed Feb 28, 2007 10:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ended jobs with 'Finishing' status..
Replies: 2
Views: 894

:? 'Finishing'? There's no such status that I recall. Where do you see this - specific message inside the job log? Can you post an example or two of these messages if that's the case?

Also, does this job have any 'After Job' activities it is performing?
by chulett
Wed Feb 28, 2007 9:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Replace existing rows
Replies: 32
Views: 9014

Your mixture of key fields makes a single job solution... messy at best. I'm sure one could come up with a way (I've done things like this in the past) but you're much better off with a two job solution. IMHO.
by chulett
Wed Feb 28, 2007 9:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with oracle OCI stage
Replies: 1
Views: 940

Yes - for 'DNS' you need to supply a proper name from your tnsnames.ora file, just like you would for TOAD or any other tool. You must be using User-Defined SQL to have the 'table name' be missing. Since you're not letting the stage generate the sql (and why not?) then put anything in the TABLE prop...
by chulett
Wed Feb 28, 2007 8:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Sort stage
Replies: 6
Views: 999

Your dates would need to be in YYYY-MM-DD format to sort correctly. Probably easiest to leave them as strings in that format thru the sort.
by chulett
Wed Feb 28, 2007 8:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Replace existing rows
Replies: 32
Views: 9014

Build two jobs - one to get unique values of Key1 from the data and issue the deletes and the second job can then load the data.