Search found 4605 matches
- Fri Aug 11, 2006 4:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Warnings from routines returning other than 0
- Replies: 20
- Views: 5842
If you are on DS 7.5 or above then any argument in a routine can be used as a parameter value. So your routine can return 0 or 1 and also return an argument with the real value you what passed back. You may need to add an argument to do this. I think the same is true for variables within the sequenc...
- Fri Aug 11, 2006 4:09 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Migration from Abinitio to Datastage
- Replies: 13
- Views: 10403
- Fri Aug 11, 2006 4:07 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: datastage conversion unix to windows
- Replies: 9
- Views: 4501
- Fri Aug 11, 2006 4:06 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: datastage conversion unix to windows
- Replies: 9
- Views: 4501
The biggest problem I have seen is the "/" to "\". This can be fixed pretty easy if you know some tricks. Most of my routines plan for this so they can fix themselves. The rest are usually in parameters so they are easily fixed. Otherwise just export and import. If you hardcoded path names then you ...
- Fri Aug 11, 2006 4:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Jobs with no warning/Error Aborted
- Replies: 2
- Views: 753
- Fri Aug 11, 2006 4:00 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Any plans -> DataStage meaningless drivel
- Replies: 4
- Views: 1867
- Fri Aug 11, 2006 3:56 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Metadata - list of all tables
- Replies: 15
- Views: 5244
If you type HELP SQL then you can see some of what is supported. UNIQUE and other commands are used by Pick/Prime style commands. Universe is a derivative of Prime Information which is a derivative of Pick. Some of these keywords are used in both SQL and Pick style commands so it is difficult to kno...
- Fri Aug 11, 2006 3:49 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Writing table metadata details
- Replies: 8
- Views: 2972
- Fri Aug 11, 2006 6:47 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Writing table metadata details
- Replies: 8
- Views: 2972
- Thu Aug 10, 2006 6:50 pm
- Forum: Site/Forum
- Topic: Slow Refresh
- Replies: 7
- Views: 3195
- Thu Aug 10, 2006 6:47 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Question about dual core CPUs and hyperthreading!!
- Replies: 9
- Views: 2400
- Thu Aug 10, 2006 6:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Writing table metadata details
- Replies: 8
- Views: 2972
- Thu Aug 10, 2006 6:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Writing table metadata details
- Replies: 8
- Views: 2972
This is stored in DS_METADATA. It is hard to import the metadata for these repository tables. You have to trick DataStage into doing it. Also the columns you need are not included in the product so you have to create these columns. You need to know quit a bit about Universe in order to do this. Thes...
- Thu Aug 10, 2006 6:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Capture job start time and end time
- Replies: 2
- Views: 1084
- Thu Aug 10, 2006 6:13 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Metadata - list of all tables
- Replies: 15
- Views: 5244
The system tables are part of the DataStage engine. The respoitory tables are what I think you want a list of. The repository tables usually start with DS or RT. Most of what you want is in either DS_JOBS or DS_JOBOBJECTS. You can access these through SQL. The DataStage engine is an old version of a...