Search found 42189 matches

by chulett
Tue Feb 15, 2011 12:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter Set Change - Compile Jobs
Replies: 12
Views: 13830

Perhaps it was reintroduced. Regardless, that would be a question for your official support provider.
by chulett
Tue Feb 15, 2011 12:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter Set Change - Compile Jobs
Replies: 12
Views: 13830

From what I recall, older 8.x releases had this issue but it has since been corrected. What release / hot fix are you running?
by chulett
Tue Feb 15, 2011 10:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compare values in transformer stage
Replies: 27
Views: 10357

ravi7487 wrote:Thank you for clarifying, But what initial value should I put in for the previous value?
chulett wrote:Whatever non-null value will not match with anything that might come in on the first record.
by chulett
Tue Feb 15, 2011 8:23 am
Forum: General
Topic: connection between job and sequencer
Replies: 4
Views: 1816

What kind of trigger is between "Job sequence3" and "Parallel job1"? Your job failure has nothing to do with your Sequence, you need to check the appropriate log to see what is going on. And by "appropriate" I mean the log of the job that failed.
by chulett
Tue Feb 15, 2011 8:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compare values in transformer stage
Replies: 27
Views: 10357

As noted, you are not "manually" initializing them, you are properly initializing them using the mechanism provided for exactly that purpose. Make sure you understand, however, that it doesn't need to be a hard-coded value there, you can use an expression or function or job parameter there...
by chulett
Tue Feb 15, 2011 8:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Insert thousand separator ","
Replies: 4
Views: 1927

It would seem your only other alternative is to write a custom operator.
by chulett
Mon Feb 14, 2011 1:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compare values in transformer stage
Replies: 27
Views: 10357

So... in other words, exactly what's already ready been posted as being used. :wink: Me, personally, I would rely on the expression automatically assigning the proper values, there's no need to do it "manually". Then treat the result as the Boolean it is. IsDup: DSLink2.deptno = LastValue ...
by chulett
Mon Feb 14, 2011 1:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compare values in transformer stage
Replies: 27
Views: 10357

You've got all the logic you need right here. :? One issue could be your incoming data is not sorted properly. Another consideration could be the number of nodes this job is running on, if it is running on more than one node you'd need make sure you hash partition properly on the value(s) you are us...
by chulett
Mon Feb 14, 2011 7:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compare values in transformer stage
Replies: 27
Views: 10357

Whatever non-null value will not match with anything that might come in on the first record.
by chulett
Mon Feb 14, 2011 7:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compare values in transformer stage
Replies: 27
Views: 10357

ravi7487 wrote:for the first current variable, what will be the previous variable?
Whatever you put in the Initial Value of the stage variable when you define it.
by chulett
Mon Feb 14, 2011 7:33 am
Forum: General
Topic: How to get last hour from System time at Sequence?
Replies: 6
Views: 2584

You need to get the time as well, that or TimeDate() which gets both. And 1 hour = 3600 seconds, which is what you would need to subtract from the internal time, then convert back.
by chulett
Sun Feb 13, 2011 8:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compare values in transformer stage
Replies: 27
Views: 10357

Switch the order of the stage variables.
by chulett
Sat Feb 12, 2011 11:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Any limitation in the Userdefined query tab in Oracle/DRS St
Replies: 4
Views: 2414

You did ask how to solve it, hence my response. Last time I had the same question, I asked IBM. Some details could have changed in the last couple of years but should be close.
by chulett
Sat Feb 12, 2011 10:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Any limitation in the Userdefined query tab in Oracle/DRS St
Replies: 4
Views: 2414

One answer would be to create a view from the overly large SQL and then source from the view.
by chulett
Sat Feb 12, 2011 8:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to create this job
Replies: 1
Views: 1304

All the various approaches here have been discussed ad nauseam. You can find them by doing an exact search for ETLStats as that always gets at least a mention in the thread.