Search found 53125 matches
- Wed Jul 19, 2006 2:23 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Ds takes fields from incorrect lookup
- Replies: 10
- Views: 2171
A virtual Data Set is the structure. Data are buffered through them; it is not necessary to fill it before draining any rows from it. A Copy stage can be optimized out by the compiler. I suspect the support analyst was trying to get a feel for whether your partitioning algorithm was distributing row...
- Wed Jul 19, 2006 2:14 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Implicit conversion from source type "int32" to de
- Replies: 8
- Views: 8288
- Wed Jul 19, 2006 2:12 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Creating Time_Key from TimeStamp giving Error
- Replies: 4
- Views: 1106
- Wed Jul 19, 2006 2:10 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Change Capture-duplicate records show different change_codes
- Replies: 5
- Views: 932
- Wed Jul 19, 2006 2:07 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: datastage xe/390
- Replies: 6
- Views: 1265
DataStage 390 generates COBOL and JCL which are run on a mainframe running OS/390. Do you have one of these? If not, your choice is already made. There is an extra charge for a DataStage 390 licence. Parallel and server job run on UNIX (or Windows) servers, and can access mainframe data through gate...
- Wed Jul 19, 2006 1:59 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: regarding extracting data from postgresql
- Replies: 4
- Views: 996
Writing your own plug-in stage is (theoretically at least) also an alternative. This is the reasoning behind the entire plug-in architecture of DataStage; to be able to create components to do things that the standard one's can not do. Is there an API for communicating with postgresql ? The manual P...
- Wed Jul 19, 2006 1:56 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Is there a place where all error messages are documented?
- Replies: 6
- Views: 1284
- Tue Jul 18, 2006 8:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sybase and Oracle errors
- Replies: 27
- Views: 9465
- Tue Jul 18, 2006 6:39 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Difference between Server and Enterprise Edition
- Replies: 11
- Views: 2148
- Tue Jul 18, 2006 6:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Waiting for file to finish and append
- Replies: 5
- Views: 1210
- Tue Jul 18, 2006 6:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reposistory missing Error
- Replies: 0
- Views: 1173
It would appear that something has gone badly awry in this project. I assume you are importing from a DataStage export file. My best advice would be to go into the Manager client and delete all "your" objects (not the ones supplied with DataStage) - jobs and routines particularly. Then re-import the...
- Tue Jul 18, 2006 6:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unzip in DS
- Replies: 10
- Views: 2710
- Tue Jul 18, 2006 6:27 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Did you know this about TRIM()?
- Replies: 12
- Views: 2716
If Char(N) was specified it was obviously for a reason (ok, or ignorance, or the default in the tool being used). It's in the spec, you have to follow what the spec says. Or challenge the spec, come to the right agreement, and get that decision recorded and signed off . This last step is commonly kn...
- Tue Jul 18, 2006 6:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Join on Null
- Replies: 8
- Views: 2054
Cats(A.Col=B.Col ) = sv1 If IsNull(sv1) Then sv1 Else @NULL = sv2 It is not permissible to assign to the @NULL system variable as you have done. I suspect you are trying to indicate "assign to". Maybe ==> would have been a better symbol. What are you trying to achieve with the Cats() function? As y...
- Tue Jul 18, 2006 6:19 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: error when using stored procedure
- Replies: 2
- Views: 1210
It is not possible to call a stored procedure from a Transformer stage (other than through a custom Routine, and even there it is not a good idea). So you don't understand completely what your job design is actually doing. A passive stage (for example ODBC or Stored Procedure stage) exposes the meth...