Search found 53125 matches
- Fri Apr 25, 2008 3:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Partitioning Problem
- Replies: 11
- Views: 2818
- Fri Apr 25, 2008 3:02 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Cannot import job as it says job already exists in project
- Replies: 4
- Views: 1597
- Fri Apr 25, 2008 6:45 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Cannot import job as it says job already exists in project
- Replies: 4
- Views: 1597
"Can't see it" is usually a symptom that the repository needs re-indexing. Or it may be that your local DataStage repository has somehow gotten out of synchronization with the XMETA common repository. It won't do any harm to try DS.REINDEX ALL against your DataStage repository, if you have exclusive...
- Fri Apr 25, 2008 6:41 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Additional features in DS 8x parallel
- Replies: 3
- Views: 1263
There are only two new stages in version 8.0 (call it 8.0.0); the Connector stage and the Slowly Changing Dimension stage. The Lookup stage has been enhanced to support range lookups, either on the stream or on the reference input link. New stages can come along at any time. For example a Teradata E...
- Fri Apr 25, 2008 6:32 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Is there any function for converting single to double byte
- Replies: 9
- Views: 4333
Hi again, Suppose I have a column with 5 japanese characters with Single byte kana (Katakana). That should be converted to 10 Japanese characters with double byte kana. I am not sure how it can be done in DataStage since there is no conversion function like that. Can anyone help me out on this issu...
- Fri Apr 25, 2008 6:29 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Rename link rename file nightmare!
- Replies: 3
- Views: 1049
There's no way to prevent it, apart from making sure that the hashed file name is not the same as the link name. I too find this "feature" annoying. I'd prefer the old way (pre version 4 if my memory serves) where the file name was not tied to the link name at all - but lazy developers complained th...
- Fri Apr 25, 2008 6:26 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Can we use a table name in custom routine
- Replies: 2
- Views: 1007
"Use" the table name? That's a bit vague. You can pass the table name as an argument. You can load up the table name into a job parameter or environment variable and interrogate that. You can use a number of system variables, like @USER0. The best approach may even be to have the routine code interr...
- Fri Apr 25, 2008 6:22 am
- Forum: General
- Topic: Dropping Columns off a sequential file
- Replies: 3
- Views: 951
- Fri Apr 25, 2008 2:58 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Stop the job from running when there is no i/p file
- Replies: 14
- Views: 6649
Grammar Check Ajay, The second person personal pronoun in English is spelled "you", not "u". U is a common Burmese name, and is the name of one of the posters on DSXchange. The appropriate present tense form of the verb "to be" is spelled "are", not "r". The second person personal possessive pronou...
- Fri Apr 25, 2008 2:51 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Additional features in DS 8x parallel
- Replies: 3
- Views: 1263
I produced such a document for one of my clients. It runs to 215 pages. There is a lot that is different. Unfortunately, this document is covered by a non-disclosure agreement. Contact IBM through your sales rep; they should be able to provide a "what's new" document. One ships with the version 8.0 ...
- Fri Apr 25, 2008 2:49 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Repository List
- Replies: 2
- Views: 1216
Almost certainly your repository database needs to be reindexed. When you can get exclusive access to the project, connect with the Administrator client and execute this command in the Command window.
Code: Select all
DS.REINDEX ALL- Fri Apr 25, 2008 12:19 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DOS command to abort a job
- Replies: 10
- Views: 1614
- Fri Apr 25, 2008 12:12 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Fixing a corrupt project- Step by Step
- Replies: 2
- Views: 1839
Let's assume that the project directory exists, and that there is a correct entry in UV.ACCOUNT for it but no entry for it in UV_SCHEMA. To determine whether that is the case, use VERIFY.SQL with the SCHEMA keyword, the pathname of the project directory (note: NOT the project name) and without the F...
- Thu Apr 24, 2008 11:27 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Fixing a corrupt project- Step by Step
- Replies: 2
- Views: 1839
Begin by determining that there is an entry for the project in both the UV.ACCOUNT and UV_SCHEMA system tables. SELECT @ID,PATH FROM UV.ACCOUNT WHERE @ID = '<<ProjectName>>'; SELECT SCHEMA_NAME, PATH FROM UV_SCHEMA WHERE SCHEMA_NAME = '<<ProjectName>>'; Let's make sure that your Step 1 is correct ne...
- Thu Apr 24, 2008 9:46 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Difference between MQ stages
- Replies: 4
- Views: 1270
A Connector is something new in version 8, in which you can store the connection/authentication information as a re-usable component in the Repository. The plug-in stage is a typical stage, where the connection/authentication information has to be supplied to the stage at design time (perhaps via jo...