Search found 53125 matches
- Thu Apr 14, 2005 8:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routine Fix Repeat
- Replies: 6
- Views: 2533
- Thu Apr 14, 2005 3:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage Engine StartUp error ..
- Replies: 5
- Views: 3899
That sounds like the Engine directory has been damaged, corrupted or moved. I haven't got access to DataStage this week (doing something else). Contact your support provider to learn what code UVI0001 means. For example, has someone removed the hidden file /.dshome ? Has someone moved the DS Engine ...
- Thu Apr 14, 2005 3:10 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unknown file changes in DSEngine directory
- Replies: 4
- Views: 2131
DS_LICENSE (among other things) records when each client is connected, so is updated when any client connects or disconnects. All of the entries in catdir are object code - the ones you've listed are used when DataStage jobs run (for example $DS.SEQOPEN opens a file from a Sequential File stage). Th...
- Thu Apr 14, 2005 3:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: remove carriage return
- Replies: 5
- Views: 8183
EREPLACE is less efficient than CONVERT where appropriate to use it. CONVERT performs character-by-character conversion. EREPLACE replaces one substring with another. You can use CONVERT to replace single characters with other single characters, including "". However, if you want to replace one or m...
- Thu Apr 14, 2005 3:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Easy access of Job Description
- Replies: 22
- Views: 3744
A job can't attach to itself for the simple reason that it already is attached to itself! You can use DSJ.ME for the job handle argument (always the first argument) in the DSGet... discovery functions. The structure of the repository is scheduled to change; in the Hawk release (Sep 2005) if all goes...
- Thu Apr 14, 2005 2:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DS75 Upgrade - jobs running as dsadm
- Replies: 5
- Views: 1298
- Thu Apr 14, 2005 2:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: VersionControl Project - sharedcontainers without categories
- Replies: 4
- Views: 1852
- Thu Apr 14, 2005 2:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Updating link metadata without losing derivations
- Replies: 9
- Views: 1657
The columns, including their derivations, are properties of the LINK, not of the stage. Therefore, if you drop the columns - from either end of the link, the derivations are lost. I believe, without having the ability to test it this week, that the same is true even if you overwrite the column infor...
- Thu Apr 14, 2005 2:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Handling multipls files.
- Replies: 15
- Views: 4834
- Thu Apr 14, 2005 2:42 pm
- Forum: Information Analyzer (formerly ProfileStage)
- Topic: ProfileStage going non-responsive
- Replies: 4
- Views: 3499
- Thu Apr 14, 2005 2:36 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: remove carriage return
- Replies: 5
- Views: 8183
Code: Select all
Convert(Char(10):Char(13),"",InLink.ColumnName)- Thu Apr 14, 2005 2:32 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Select DS_JOBS not finding multiple instances
- Replies: 4
- Views: 1717
Jobs are stored in DS_JOBS. It's the table that maps job names to job numbers. It does not record instances. Being capable of running in multiple instances is a property of the job; the individual instances are not separate jobs. Instances are run-time, not design-time, properties, and so are stored...
- Wed Apr 13, 2005 8:43 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Purging of DataStage Log from Unix Script
- Replies: 14
- Views: 12853
- Wed Apr 13, 2005 3:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: LOOKUP
- Replies: 8
- Views: 1526
- Wed Apr 13, 2005 3:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ILLEGAL SYMBOL 1; VALID SYMBOLS ARE <IDENTIFIER>
- Replies: 1
- Views: 2721
The Dynamic Relational Stage always displays SQL with Oracle (positional) parameter markers, even though it uses the correct ones "under the covers". However, the poster specifies that an ODBC stage has been used. The SQL was passed through to DB2 (the message came back from the database, not from t...