Search found 42189 matches
- Sun Oct 09, 2005 9:41 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: $CommandOutput
- Replies: 13
- Views: 7182
- Sun Oct 09, 2005 9:16 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to rollback transaction?
- Replies: 10
- Views: 2881
Do you have any better idea? Can we leverage the constraint setting in the transformer stage? Yes. As noted, you can setup a specific reject row link and constrain it so that only 'database issues' are sent down it using the Output Link Variable of REJECTEDCODE. Set that constraint to 'Abort after ...
- Sun Oct 09, 2005 8:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to automatically remove DS Server Instance on Windows
- Replies: 5
- Views: 1777
- Sun Oct 09, 2005 7:55 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to rollback transaction?
- Replies: 10
- Views: 2881
There's a little bit more to it than that. Yes, zero means 'all or nothing' and is needed in order to rollback an entire transaction if there are problems. However, in order to trigger the rollback, the job must abort - not finish in any fashion, including 'with warnings'. Accomplish this by various...
- Sat Oct 08, 2005 2:19 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: constraint voilation
- Replies: 2
- Views: 944
You can't or you would violate the constraint, as you've seen. But you can do a couple of different things with the second occurance of the primary key - 1) Update rather than insert or 2) throw the record away. That's something you would have to decide. I am assuming that you are doing a hashed loo...
- Sat Oct 08, 2005 7:20 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Encrypted parameter value displayed in Director log
- Replies: 5
- Views: 4052
Because the moment you reimported your changed source and recompiled it, those pesky lines were added right back in. You need to copy/paste the code into the Job Control page of a regular Server job - i.e. not use a Sequencer job type - and then you are free to hack away at it. Of course, then the m...
- Sat Oct 08, 2005 7:16 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Passing a Parameter to a vbs file which is hanging
- Replies: 6
- Views: 1874
- Sat Oct 08, 2005 7:14 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: subtract the minutes with timestamp
- Replies: 10
- Views: 3550
- Sat Oct 08, 2005 7:13 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: subtract the minutes with timestamp
- Replies: 10
- Views: 3550
- Sat Oct 08, 2005 7:10 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Could not Move Jobs Between Categories
- Replies: 7
- Views: 1690
- Sat Oct 08, 2005 7:07 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: ver. 7.5.1.A installation
- Replies: 5
- Views: 1237
Client - sure. PX Server - no. You'd need a very specific version of DSEE (as just noted in another thread) 7.5.X2 I believe, in order to run PX jobs on a Windows box. Off the top of my head, the Client supports Win XP Pro, 2000 and 2003 while from what I recall the 'PX Server running on Windows' bi...
- Sat Oct 08, 2005 7:03 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Can we run a parallel Extender on s single processor
- Replies: 13
- Views: 3610
- Fri Oct 07, 2005 12:19 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Delete and then Insert into table
- Replies: 9
- Views: 4083
Check his delete statement, it's doing a WHERE clause with a range, it's not expecting a streaming of values to feed a DELETE cursor. That method would work if a single row, single column of data was fed to the ODBC stage using custom SQL to just perform the delete. Another stream would then send t...
- Fri Oct 07, 2005 11:39 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Delete and then Insert into table
- Replies: 9
- Views: 4083
- Fri Oct 07, 2005 8:12 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: .REJECTEDCODE = 0
- Replies: 5
- Views: 1798
Keep in mind the fact that 0 is the same as 'false' or equivalent to the @FALSE system variable while 1 (actually any non-zero value) is 'true' or equivalent to the @TRUE system variable. Check the online help for reject row handling as it goes through all this. REJECTEDCODE is non-zero (or @TRUE) w...