Search found 42189 matches

by chulett
Sun Jan 13, 2008 9:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjobinfo and dsjobrun through cron
Replies: 3
Views: 1182

Classic problem - a relative path to the script. Use an absolute one in cron.
by chulett
Sun Jan 13, 2008 9:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: OverView Of SQLLDR ??
Replies: 14
Views: 2654

A good source for help with Oracle questions should be your friendly neighborhood DBA-man. And as noted, you should be able to easily Google up the manuals on Oracle's site and others. If you are working with Oracle, you really should be familiar with it, DataStage or no DataStage. You'll also find ...
by chulett
Sat Jan 12, 2008 10:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to create Sequence file with date stamp?
Replies: 3
Views: 960

You either need to pass the 'stamp' in as a job parameter (we do this) and then use #it# in the name, or create a constant filename and then rename it in the O/S after job. It's been discussed here a bajillion times.
by chulett
Sat Jan 12, 2008 8:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue with the job logs
Replies: 28
Views: 5133

Understood. Yes, the -9 kill is frowned upon but that doesn't mean it should never be used. You may not actually have needed it in this case, but if the other kill levels failed to stop the thread dumping log messages, then I certainly would have gone for the 'sure kill'. Still wondering what exactl...
by chulett
Sat Jan 12, 2008 8:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle insert statement with ORACLE sequence.
Replies: 14
Views: 7064

This isn't difficult and really shouldn't have generated this many replies. Sure, a trigger is possible but I've seen way too many places that are 'trigger shy' for lack of a better term. Sure, you can use a lookup to select the nextval from dual so it just becomes another data value in the job, but...
by chulett
Sat Jan 12, 2008 8:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in constraint/checking for alphabatic and numeric
Replies: 5
Views: 1042

Not sure how you can say "the null is handled" when your error is "Nullstringarguement". What do you have in the way of null handling at this point?
by chulett
Sat Jan 12, 2008 8:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failed to call datastage from Grid Unix Server
Replies: 3
Views: 1392

A continuation of this post. Syntax was requested there and not provided, perhaps we'll have more luck here.
by chulett
Fri Jan 11, 2008 5:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Placing a constraint in transformer
Replies: 9
Views: 3203

Looked up the term as I hadn't heard it used like this.

http://en.wikipedia.org/wiki/Mantissa

Also found this:

http://en.wikipedia.org/wiki/Significan ... antissa.22

Doesn't really help, just thought it was interesting enough to share. :wink:
by chulett
Fri Jan 11, 2008 5:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue with the job logs
Replies: 28
Views: 5133

kcbland wrote:That's why I said: Kill the thread. Clear the log from Director.

Exactly. Why reimport the job just for this? Kill/Clear/Done. :wink:

ps. What are you considering "support files"? :?
by chulett
Fri Jan 11, 2008 4:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need to check file on a Unix box from our ETL server till...
Replies: 8
Views: 2502

Why not go for the traditional 'semaphore' file? Don't poll for the actual file, but have them touch into existence an empty file that you poll for? When it shows, you know the other is ready and can be picked up.
by chulett
Fri Jan 11, 2008 1:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling dsjob from unix to run the same sequencer
Replies: 7
Views: 5862

It also means the job is running, which what it sounds like you've said you've done. The only way to allow multiple 'copies' to run at the same time it to make them multi-instance and use distinct Invocation Ids.
by chulett
Fri Jan 11, 2008 10:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle insert statement with ORACLE sequence.
Replies: 14
Views: 7064

Ah... missed the fact that you only have two column names but three values in your sql again:

Code: Select all

insert into DT_TBL(A,B,C) VALUES (DT_SEQ.NEXTVAL,:1,:2)
by chulett
Fri Jan 11, 2008 9:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle insert statement with ORACLE sequence.
Replies: 14
Views: 7064

How many columns are defined in your stage? I'm guessing the answer isn't "two".
by chulett
Fri Jan 11, 2008 8:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To find the total number of days
Replies: 8
Views: 1501

Sure. How about subtracting the first day of the target date (internal format) from the first day of the next month, then subtract 1?
by chulett
Fri Jan 11, 2008 7:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequence issue
Replies: 15
Views: 4165

Re: sequencer issue

just4u_sharath wrote:
chulett wrote:Apparently what you have not done is read the docs.

Yes. Its true. So if any condition returns other than zero, then i should not use routine.

Again, no. And again, the docs describe how to use automatic handling with a routine that does not return a zero. It's all in the triggers.