Search found 42189 matches

by chulett
Mon Mar 15, 2004 9:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal Termination - Urgent
Replies: 3
Views: 1519

Welcome! Sorry to see you here for the first time with a problem like this. A handfull of points - a) If it's truly urgent, call your Support provider. Not everybody checks the boards all the time, or lives at the other end of an RSS feed. b) You got a coredump from your job, which means it blew up ...
by chulett
Mon Mar 15, 2004 8:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How do we capture duplicate records
Replies: 11
Views: 4138

Here's what REALLY matters. By the time this happens:

A) Does anybody notice?
B) Are you still there?

:lol: Kidding, of course. Sorta. :wink:

I'd amend one of your statements to: "You document the method used and what could happen."
by chulett
Mon Mar 15, 2004 8:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to run a Server job by setting a row limit
Replies: 3
Views: 1072

Another possibliity!

Create a 'local' copy of the table (perhaps in your own schema / workspace) and populate it with only 100 of the rows from your source table. Fast and easy to work with it when it's bite sized. :wink:
by chulett
Mon Mar 15, 2004 8:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: constant parameter
Replies: 4
Views: 1182

If you used Job Parameters, I'm at a loss as to why it would 'keep on changing' while the job runs. Don't use Job Parameters, use a Stage Variable. Check your online help for @DATE and @TIME which can be one way to get what you want. Either that or the DSJobStartTimestamp macro. Here is the importan...
by chulett
Fri Mar 12, 2004 3:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Last_Updated_On and Last_Updated_By
Replies: 3
Views: 823

Yes, you'll need to account for all of the columns so you can check to see if any have changed. Sounds to me like you need to include your six columns in whatever kind of reference lookup your are doing. Then, when the record already exists you can check your six fields to see if at least one of the...
by chulett
Fri Mar 12, 2004 7:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How do we capture duplicate records
Replies: 11
Views: 4138

There's no magic bullet. You will need to create a process to compare one row to another, just like you would with any other 'tool' or database. A couple of suggestions off the top of my head: Drop the output to a flat file and then use your O/S to remove the duplicates. For example, from UNIX you c...
by chulett
Fri Mar 12, 2004 7:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How should I use the system variables(@User0-@User4)
Replies: 8
Views: 2723

Interesting. Up to this point, all I've ever done is use them to "pass" information between coordinated routines, so have yet to stumble across the issue of them staying red in the Transformer. Good to know. I was concerned that the OP was trying to use them exactly as typed in their message and, wh...
by chulett
Thu Mar 11, 2004 3:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Keeping old job log message
Replies: 2
Views: 2578

If this "import" is actually a promotion activity, i.e. bringing the latest version of the job into Production from test, then consider using Version Control... unless somehow you can't use it for PX jobs. :? It will preserve the old logs.
by chulett
Thu Mar 11, 2004 11:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: using ORAOCI before stage tab?
Replies: 4
Views: 647

Simply put, no - it's not possible. I would suggest you attempt to further optimize your query. If a subquery (correlated or otherwise) is too slow, then consider using an inline view to "run" your first query and then join that to your second query. Of course, it's hard to make useful suggestions w...
by chulett
Thu Mar 11, 2004 7:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Week Of the Year
Replies: 3
Views: 790

Never hurts to search the forum first! Chances are someone else has already had this question (or at least a very similar one) asked and answered.

For example, check out:

http://www.dsxchange.com/viewtopic.php? ... =week+year
by chulett
Thu Mar 11, 2004 7:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number of records inserted/updated in each stage
Replies: 3
Views: 1340

Hmmm... that's kind of a big question and the answer could vary based on your knowledge of DataStage. High level: The answers you seek, Grasshopper, are all in the log. As each stage is "closed" (in the reverse order they are opened, BTW) the number of rows they processed are recorded. There are sev...
by chulett
Thu Mar 11, 2004 7:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How should I use the system variables(@User0-@User4)
Replies: 8
Views: 2723

Re: How should I use the system variables(@User0-@User4)

Ray had told about the usage of system variables @User0-@User4.So out of curiosity I tried to use them but failed. Actually, what Ray mentioned was the use of @USER0 - @USER4. As with practically All Things DataStage, case is very important. If you literally tried using @User0 and got your error, s...
by chulett
Tue Mar 09, 2004 3:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server Licensing by CPU Count
Replies: 9
Views: 2929

Has it been installed yet and is this a 7.x version?
by chulett
Tue Mar 09, 2004 11:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server Licensing by CPU Count
Replies: 9
Views: 2929

Server Licensing by CPU Count (answered)

In case anyone cares what the answer is to this, this is (paraphrased) from Ascential Support. Note that this apparently applies to the 7.x release specifically, the 6.x release was meant to work this way but apparently... doesn't. You cannot install DataStage on a server with more CPUs than you are...
by chulett
Tue Mar 09, 2004 10:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: writing multiple output records from single input record..
Replies: 8
Views: 3491

Break the third field up into four separate fields before you hit the Pivot stage. Simplest way to do that would be with the FIELD function.