Search found 42189 matches

by chulett
Fri Jul 21, 2006 3:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to use entries in previous record in next record.
Replies: 2
Views: 1044

Stage Variables can hold the 'previous' values of things so you can use them against the next row that comes along. It's all about declaring them in the proper order. There's a Tech Tip in this zip file that explains how to do group change detection with stage variables. The technique will also work...
by chulett
Fri Jul 21, 2006 2:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Joining Hash File and Flat File
Replies: 7
Views: 2352

If your process created the hashed file, it should write the max value out and use a column with a literal key value, maybe something like "FRED". <snip> When your job references this hashed file, just put "FRED" in the key expression for the lookup. The same row will be found over and over and ove...
by chulett
Fri Jul 21, 2006 1:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple Instances of jobs and logs
Replies: 11
Views: 4246

Sure, they all go into a single log, but they are identified by Invocation ID. Director can show them as 'separate logs' and you can treat them like same. Instead of using jobname with the dsjob command, using jobname.invocationid should do the trick. Or are you looking for something other than that...
by chulett
Fri Jul 21, 2006 12:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Counting duplicates
Replies: 10
Views: 1503

Don't worry about it, at least you seem to be trying to figure it out on your own. Sometimes people don't even do that much.

Keep at it and if you have more questions, post them. :wink:
by chulett
Fri Jul 21, 2006 12:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to initialize plug-in:
Replies: 7
Views: 2242

As far as I know, it doesn't even use the PATH variable for things like that. As a matter of fact, I've got nothing in the way of Oracle in my PATH statement and it works just fine. It's all about the Shared Library...
by chulett
Fri Jul 21, 2006 10:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating XML Files in Datastage
Replies: 5
Views: 1505

I'm assuming 'I am no able' actually means 'I am now able'. :wink:

Care to share any words of wisdom, what worked for you, things that would help a fellow searcher who had the same problem and found your post?
by chulett
Fri Jul 21, 2006 10:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to initialize plug-in:
Replies: 7
Views: 2242

What do you mean by 'the same path' that worked before you installed ODBC drivers? Are you saying that you could import plug-in metadata via the OCI stages before but can't now? Or never could? I don't see anything wrong with your dsenv off the bat, are you sure your ORACLE_HOME is being set correct...
by chulett
Fri Jul 21, 2006 10:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reset one job
Replies: 3
Views: 999

It might be best to say why you think you need this and then alternatives can be proposed. Like... using dsjob from the command line with the -run -mode RESET options. Otherwise, from a routine - by getting a handle on the job and then using that handle to issue a DSPrepareJob on it. Then dettaching...
by chulett
Fri Jul 21, 2006 9:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: creating a blank table
Replies: 2
Views: 625

Sure, just create a job that looks like it inserts data into the table, but don't actually send anything. Simplest to do this with a job that starts from a Transformer. 1) Create a dummy stage variable in the Transformer. 2) Set the constraint to @FALSE. 3) Include all the columns and set their deri...
by chulett
Fri Jul 21, 2006 8:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: System level public hashed file sharing question
Replies: 6
Views: 1583

Yes please! :D
by chulett
Fri Jul 21, 2006 7:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job performance
Replies: 8
Views: 1879

thompsonp wrote:Out of interest what is Lakh as in '2.5 Lakh records'?

It's a unit of measure equal to 100,000. 100 Lakh = 1 Crore, btw. :wink:
by chulett
Fri Jul 21, 2006 7:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: System level public hashed file sharing question
Replies: 6
Views: 1583

I'm in the same boat, haven't touched it for years. Curious what comes of all this.
by chulett
Fri Jul 21, 2006 7:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UserDefined SQL for inserting Timestamp in DB2
Replies: 3
Views: 1595

If you search the forum, I do believe you'll find that DB2 wants any date fields in internal format... I wonder if the same is true for timestamps? :?
by chulett
Fri Jul 21, 2006 7:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: db2 timestamp to date conversion
Replies: 7
Views: 2778

Re: db2 timestamp to date conversion

bhaskarjha wrote:i also tried with "timestamp.to.date(sourcecoulmn[1,19])" but its then rejects the row

That looks like a PX derivation, you sure your Job Type is 'Server'? :?