Search found 42189 matches

by chulett
Mon May 26, 2008 10:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: A function equivalent to NVL in datastage
Replies: 11
Views: 18904

:? Not sure where anyone said that it didn't but yes - Oracle has a COALESCE function and as people noted, it returns the first non-null value in a list of values.
by chulett
Mon May 26, 2008 9:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can I make a schedule to rerun the job when it is failed???
Replies: 6
Views: 1322

The loop will do whatever you code it to do. If it needs to wait, code in a routine using the 'sleep' function.
by chulett
Mon May 26, 2008 3:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with sort in Datastage server - stage: Oracle_OCI_9i
Replies: 11
Views: 5579

I ran your query in Toad and got your results. Ran the same thing in OCI View Data and my results matched the sort order from Toad.

What are your settings for NLS_COMP and NLS_SORT?
by chulett
Mon May 26, 2008 7:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stored Procedure Stage
Replies: 3
Views: 1500

Still... you can only use valid values in any job parameter there, it doesn't allow you to magically make one up. Assuming you are actually on UNIX as noted, and you've managed to be accessing SQL Server all along, you could use the ODBC stage to call the stored procedure. Or consider taking whateve...
by chulett
Mon May 26, 2008 7:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to limit the number of output files to a COPY stage
Replies: 5
Views: 1635

Thanks for the more clearly... was pretty sure but not 100% Wurlod proof sure. :wink:
by chulett
Mon May 26, 2008 6:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compilation error with $APT_CONFIG_FILE
Replies: 4
Views: 2082

Clear it out, let us know.
by chulett
Sun May 25, 2008 11:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error occurred in call to ORPHCallActivePluginInitialize().
Replies: 1
Views: 4793

Again, a search is the first suggested path you should take. 18 matches on this one.
by chulett
Sun May 25, 2008 10:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Non-pipe (or non-virtual data set) with .v in its name error
Replies: 3
Views: 7704

I got 14 matches when I searched for "Non-pipe (or non-virtual data set) with .v in its name". Did none of them help?
by chulett
Sun May 25, 2008 7:18 pm
Forum: General
Topic: ./uv -admin -clearsockets not working on v8 ?
Replies: 15
Views: 5840

With the server shut down? I don't believe that would be a problem. You may still have to manually clear any shared memory segments and 'hung' ports that remain before it will restart, however.
by chulett
Sat May 24, 2008 2:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read a webpage data
Replies: 3
Views: 956

If the site hosts a web service that could deliver that data, then yes. Otherwise (AFAIK) you'd need to find some other way to retrieve that and either leverage it via an External Source stage or just land the data and process it from there like 'normal'.
by chulett
Sat May 24, 2008 10:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSSendMail Problem
Replies: 4
Views: 1921

Why not just read their message and stop sending the parameters it is telling you are not being used? Better solution. :wink:
by chulett
Sat May 24, 2008 8:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSSendMail Problem
Replies: 4
Views: 1921

That's not a 'failure' but rather just informational. It will tell you things like the 'server' param isn't used, which is normal for UNIX. Those messages can be ignored or you can remove the offending parameters from your call.
by chulett
Sat May 24, 2008 7:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: compare data between 2 tables
Replies: 8
Views: 2533

If you just need to know the differences when the keys match, then no. Two jobs, perhaps, if you also needed to report where a key did not exist in the other table. Job1 both situations, Job2 just the missing from the other 'direction'.
by chulett
Sat May 24, 2008 6:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: compare data between 2 tables
Replies: 8
Views: 2533

Technically, you could do the comparison all in Oracle with a fugly query, case statements, all columns, derived change flags, etc etc.