Search found 42189 matches

by chulett
Wed Sep 22, 2004 8:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RTRIM(LTRIM()) help
Replies: 4
Views: 5141

Not really. Your RTRIM/LTRIM syntax is database syntax, you could replace it with just Trim() in the derivation and accomplish the same thing. If you are good with something like Perl or Awk (or perhaps a good editor), you may be able to export your job to .dsx or .xml format and make the substituti...
by chulett
Wed Sep 22, 2004 7:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of DataStage.
Replies: 15
Views: 8946

As have I...
by chulett
Wed Sep 22, 2004 7:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML output to an URL
Replies: 2
Views: 1363

Welcome!

I don't believe so, at least not the "HTTP the output stream to an URL" part. There have been other posts on this subject here, you may be able to turn them up with a search.
by chulett
Wed Sep 22, 2004 7:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dscmdexport window hang after job completed.
Replies: 8
Views: 1839

BACKUP.BAT? Is that something that comes with the Windows version of DataStage?
by chulett
Wed Sep 22, 2004 7:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help me on this to solve it
Replies: 6
Views: 2549

ray.wurlod wrote:That is, AND and OR have the same precedence.

Are you sure about that, Ray? I was under the impression that it followed more 'standard' precedence rules in that AND had precedence over OR. :? Maybe I've been fooling myself all these years...
by chulett
Wed Sep 22, 2004 6:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Between Lookup in Oracle Stage(OCI9i)
Replies: 23
Views: 9344

No, you don't. Didn't you get my reply to your Yahoo email regarding your example job? If not... you are only mentioning one field in your where clause - the first field or :1 which is fine. However, the first two fields are marked as keys. Try setting the second field to a key value of 'No' and onl...
by chulett
Tue Sep 21, 2004 4:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: On request jobs
Replies: 10
Views: 2112

I think that was already mentioned... along with the 'unlimited budget' comment. :wink:
by chulett
Tue Sep 21, 2004 2:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to handle serach and insert a table at the same time?
Replies: 4
Views: 510

Best Practice would have you create, in a "preprocessing" step or job, a hash file with all of the current business keys and their corresponding surrogate keys. Ideally, you would constrain that build to whatever records are currently staged for processing. Then your lookup can be done against the h...
by chulett
Tue Sep 21, 2004 1:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to handle serach and insert a table at the same time?
Replies: 4
Views: 510

How are you actually doing this "search"?
by chulett
Tue Sep 21, 2004 1:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: On request jobs
Replies: 10
Views: 2112

So, in other words you are emulating a BI tool with DataStage? :D Yerk. Do your users have a methodology whereby they could insert records into a database table? I'd probably create a set of jobs that periodically polled that table for unprocessed records that indicate specific requests and then run...
by chulett
Tue Sep 21, 2004 12:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: update taking forever
Replies: 12
Views: 2431

Probably a locking conflict where someone else has a record locked that your job is trying to update. DataStage will wait for it to become available before it moves on. Check with your DBA...
by chulett
Tue Sep 21, 2004 12:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: On request jobs
Replies: 10
Views: 2112

Simple - we don't have any "user scheduled" jobs. Actually, I've never had a need to do this, so I would be curious what kind of jobs these people would be scheduling. Now, we do have "loosely scheduled" jobs that are waiting for files from various people... but they run over a specific window and p...
by chulett
Tue Sep 21, 2004 6:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Count command
Replies: 3
Views: 1268

Yes, it is possible - but you do have to create a VOC record to do so. Search the forum if you need it, the syntax has been posted here many times. I use a routine I found here that creates the VOC record 'on the fly', does the count on the hash and then removes the VOC record. Simple enough to setu...
by chulett
Mon Sep 20, 2004 5:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Stored Procedure
Replies: 2
Views: 925

Ok, let's try our luck with this one. First thought would be to ditch the stored procedure and replicate whatever work it is doing in DataStage. I think you'll find this easier to maintain going forward. That being said, if you only want to run this once you either need to run this 'after job' or on...
by chulett
Mon Sep 20, 2004 3:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Between Lookup in Oracle Stage(OCI9i)
Replies: 23
Views: 9344

Maybe... however, I do use the syntax that I posted quite a bit, so I know that using the quotes inside the sql (around the parameter marker) works just fine.

:?