Search found 42189 matches
- 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...
- 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...
- Fri Jul 21, 2006 2:50 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Multiple Instances of jobs and logs
- Replies: 11
- Views: 4246
- 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...
- Fri Jul 21, 2006 12:11 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Counting duplicates
- Replies: 10
- Views: 1503
- 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
- 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
- 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...
- 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...
- 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...
- 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
- 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
- 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
- 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
- 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'?