Search found 15603 matches
- Thu Sep 01, 2005 11:23 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Performing a non-equal lookup
- Replies: 1
- Views: 1119
Hello NewPX, the search clauses 'range lookup' or 'select BETWEEN' will get you on your way. There really are quite a few threads and many posts on this subject -- is it a particularly common issue found in most implementations and has many different ways of approaching a solution, so you need to ch...
- Thu Sep 01, 2005 6:24 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Estimations
- Replies: 2
- Views: 847
- Thu Sep 01, 2005 6:21 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routines
- Replies: 6
- Views: 1296
You need to define the function within itself,
Code: Select all
MyFunction(Arg1)
DEFFUN MyFunction(argument1) CALLING 'DSU.MyFunction'
CALL DSLogInfo(Arg1,'MyFunction')
IF Arg1 > 0 THEN MyFunction(Arg1-1)- Thu Sep 01, 2005 5:26 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routines
- Replies: 6
- Views: 1296
- Thu Sep 01, 2005 4:15 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage Engine Commands
- Replies: 6
- Views: 2629
Mandar, the DataStage Server Engine is built on an almost identical copy of the application that IBM now owns and is called UniVerse'. This application is a postrelational database system that is very comprehensive. This is why I pointed you to the documentation on the IBM pages --- almost all of th...
- Wed Aug 31, 2005 4:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Is CVS compatible with DS Server?
- Replies: 5
- Views: 1670
Hello MJ, Although DataStage has it's own integrated version control system it is possible to use CVS. Since DataStage jobs are stored within it's own database system they cannot simply be checked in and out as one could do with source code. A recent project of mine used .dsx datastage export files ...
- Wed Aug 31, 2005 8:09 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unix DS services
- Replies: 4
- Views: 1183
- Wed Aug 31, 2005 5:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Square root of a negative
- Replies: 7
- Views: 3029
- Wed Aug 31, 2005 3:25 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: regarding length function
- Replies: 4
- Views: 1607
- Wed Aug 31, 2005 3:06 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: regarding length function
- Replies: 4
- Views: 1607
- Tue Aug 30, 2005 11:43 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Monitoring %CP
- Replies: 3
- Views: 890
Ray is quite right, plus the %cpu value does not take multi-cpu systems into account. I had a job yesterday loading 1million rows per minute into Oracle showing a very high %cpu value (sampling interval in PX of 5million rows) but since the system has 10 physical processors the real load on cpu was ...
- Tue Aug 30, 2005 11:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage Engine Commands
- Replies: 6
- Views: 2629
Mandar,
a good beginning to the system description and commands can be found by downloading the PDF files located at IBM UniVerse Documentation.
a good beginning to the system description and commands can be found by downloading the PDF files located at IBM UniVerse Documentation.
- Tue Aug 30, 2005 11:54 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Dead Lock
- Replies: 3
- Views: 991
I am not really surprised that the problem goes away - if there is a process on the "other" side in DB/2 that got hung up then most likely it got killed or timed out, thus removing the deadlock. I think the Designer opens/closes the sessions and isn't persistent so shouldn't keep a lock (then again,...
- Tue Aug 30, 2005 10:51 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error when trying to view data from oci stage
- Replies: 2
- Views: 1018
All I can answer is that "PX works that way"; due to it's highly parallel working methodology it needs to know quite a bit more about the source/target Oracle instance than a Server job. Notice that only SELECT is required and if you look at the definitions for those table contents it becomes cleare...
- Tue Aug 30, 2005 10:48 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Dead Lock
- Replies: 3
- Views: 991
This is most likely more of a Database issue that your friendly DB/2 DBA needs to clear up. A deadlock is when one process is waiting on a resource that is held by another process, which in turn is waiting on a resource help by the first. There are other ways of achieving a deadlock as well, but thi...