Search found 53125 matches
- Wed Apr 11, 2007 4:09 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: CFF issue
- Replies: 5
- Views: 1747
- Wed Apr 11, 2007 4:08 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DB2 Version 8.2 Comapatibility with Datastage version 7.1r2
- Replies: 1
- Views: 1606
Not seen it, but didn't have much experience with 7.1r2. It might be interesting to farm this back to IBM support, and watch the DS support point the finger at DB2 and vice versa. I suspect you're right, that there's a version compatibility issue. What does your DataStage manual say about the DB2 st...
- Wed Apr 11, 2007 4:02 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Can We Recover deleted job
- Replies: 10
- Views: 7660
From your Administrator client Command window:
to learn the column names.
to identify what was deleted when and by whom. Constrain on CLASS = '2' to limit the report to jobs.
Code: Select all
LIST.DICT DS_AUDITCode: Select all
SELECT CLASS, INSTANCE, PREVDTD, PREVDELETOR FROM DS_AUDIT WHERE PREVDTD > '';- Wed Apr 11, 2007 3:57 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Version 8 on Fedora
- Replies: 4
- Views: 1473
- Wed Apr 11, 2007 3:56 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Reading parameter file
- Replies: 6
- Views: 1855
Check out PNav on Kim Duke's web site.
- Wed Apr 11, 2007 3:53 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Named pipe - error in 'write()' - No child processes
- Replies: 1
- Views: 922
- Wed Apr 11, 2007 3:50 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Sequential processing of Files
- Replies: 43
- Views: 11929
- Wed Apr 11, 2007 3:48 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Sql Server Upgrade
- Replies: 4
- Views: 1253
There's nothing else to do. Assuming that the table and column names remain the same, the connectivity remains the same, and the SQL syntax remains the same, there's nothing inside the jobs for you to check. The only possible area to check might be the ODBC connectivity files (.odbc.ini and uvodbc.c...
- Wed Apr 11, 2007 3:45 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Calling C program from DataStage Job
- Replies: 16
- Views: 6469
The before/after subroutine is executed from the job properties itself, not from a stage. If you want to execute your command from every row processed, then you could use an External Source, External Target stage or an External Filter stage, depending upon whether you need input, output or input and...
- Wed Apr 11, 2007 3:40 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: px installation on pc
- Replies: 6
- Views: 1734
- Wed Apr 11, 2007 3:38 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Records going in air
- Replies: 11
- Views: 3483
- Wed Apr 11, 2007 3:37 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Orchestrate Conversion
- Replies: 2
- Views: 1563
It is a simplification to assume a one-to-one relationship between stages and operators. Some stage types generate a composite operator - for example a Lookup stage (other than for sparse lookup) or a Data Set stage (when overwriting). A Copy stage that makes one identical copy of its input will be ...
- Wed Apr 11, 2007 3:35 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Convertions
- Replies: 21
- Views: 17931
Not all conversions are automatic as in server jobs. Your mindset is still on server jobs - you even marked this as a server jobs. The error message codes indicate that it isn't. You need explicitly to address each of the issues, with data type conversion functions and appropriate data types. There ...
- Wed Apr 11, 2007 3:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Palette is empty
- Replies: 5
- Views: 3069
Have you tried re-indexing the DS_STAGETYPES table in the Repository? Otherwise, can you achieve any progress with customizing the Palette, as Craig suggested? If not, you probably have the mismatched versions issue. You CAN have two client versions installed, but they must be installed in different...
- Wed Apr 11, 2007 3:27 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: prerequisite while Changing 32-bit To 64-bit Hashed File?
- Replies: 4
- Views: 1045
Reset 64BIT_FILES to zero and restart DataStage. As Craig said, to set this to 1 is a Bad Idea. Prefer to issue your own CREATE.FILE or mkdbfile commands to create 64-bit hashed files, but only when necessary. You can get the syntax from the Hashed File Calculator (on your DataStage CD). 64-bit hash...