Search found 53125 matches
- Fri Aug 12, 2005 5:54 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: # of uvsh.exe s running
- Replies: 5
- Views: 2207
The number of uvsh processes has no effect whatsoever on the transaction size, which is a property in the stage that actuallky loads the database table. The number of uvsh processes is solely a function of the number of active stages in the job and how these are connected to each other (and, perhaps...
- Fri Aug 12, 2005 5:42 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: warning due to seq file in parallell EX
- Replies: 6
- Views: 2152
- Fri Aug 12, 2005 5:38 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: ODBC Connection to DB/2 - problems with VarChar(1000) column
- Replies: 7
- Views: 1720
Odd. Most databases allow VarChar out to at least 1024, if not longer. Did you try Long VarChar? (I presume you made the schema data type match what you're generating in the CAST expression.) The ":" character being complained about comes from the generated OSH used for View Data. Unfortunately I do...
- Fri Aug 12, 2005 5:34 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Runtime Error in transformer!!!!!
- Replies: 10
- Views: 3053
/usr/lib is definitely not enough. You also need the DataStage lib directory, the branded ODBC drivers' lib directory, any other operating system library directories and, in particular, the directory containing the "missing" V0S1_testjobtrans_Transformer_1.so. You need to adjust LD_LIBRARY_PATH in $...
- Fri Aug 12, 2005 1:52 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Jobs intermittently hanging when starting
- Replies: 3
- Views: 1122
- Fri Aug 12, 2005 1:45 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: rejectedcode previously undefined
- Replies: 3
- Views: 1043
- Fri Aug 12, 2005 1:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Seq file
- Replies: 2
- Views: 1285
- Fri Aug 12, 2005 1:35 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash File Number of Rows
- Replies: 10
- Views: 1882
If that's true then you have got major problems in your project. Try (with administrator privilege) executing the command UPDATE.ACCOUNT This should refresh your VOC file with necessary entries. Note also that the hashed file name is case sensitive, and that you must have a pointer in the VOC file t...
- Fri Aug 12, 2005 1:20 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: CREATE.INDEX
- Replies: 4
- Views: 2047
Do you want to build separate indices on the three columns? You do not need an index on the combined key (which is called @ID), since this is already taken care of by the hashing algorithm. When the three key values are put together, they are assembled into a character string with a text mark (@TM, ...
- Fri Aug 12, 2005 1:10 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Long DataType - Oracle datatype not presently supported
- Replies: 14
- Views: 9879
- Fri Aug 12, 2005 1:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Querying DB2
- Replies: 1
- Views: 1024
- Fri Aug 12, 2005 12:57 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Urg :Connectivity to TURBOIMAGE database on HP3000/Mainframe
- Replies: 2
- Views: 997
Please do not post URGENT Answers on this forum all come from volunteers, in their own unpaid time. If you want urgent answers, sign up for premium support from your support provider, and learn the true cost of urgent. And posting the same question twice in quick succession isn't going to win you a...
- Fri Aug 12, 2005 12:54 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Urg: Character Set Conversn for data of HP3000/mainframe sys
- Replies: 1
- Views: 1152
- Fri Aug 12, 2005 12:50 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Searching a hash File
- Replies: 11
- Views: 3285
If you are searching for the primary key, the row will be returned instantly irrespective of its location. Why? The key value is processed by a hashing algorithm that returns the address of the page on which the key and its record are stored. One I/O operation is required to retrieve that page. If y...
- Fri Aug 12, 2005 12:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ETL/data mapping
- Replies: 3
- Views: 884
Please don't post the same question on more than one forum Lots of grey areas and overlaps - one of the dangers of applying labels. Validation is ensuring that values are valid; this might include data type and range checking, might include "exists on file" checking too. Cleaning is applying algori...