Search found 4605 matches

by kduke
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...
by kduke
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

I was told IBM/Ascential had a tool to automate this conversion as well as converting from Informatica. It does not convert everything but supposed to convert most. Ask them. Ray may know.
by kduke
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

I forgot ExecSH. Shell scripts are another big problem.
by kduke
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 ...
by kduke
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

A lot of the time it does not have permission to write to a hashed file or the log file therefore it cannot tell you why it failed.
by kduke
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

Buzzword forum or double speak. Good idea. Those you can do, Those who can't teach or buzzword you to death.
:P
by kduke
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...
by kduke
Fri Aug 11, 2006 3:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing table metadata details
Replies: 8
Views: 2972

You are welcome.

I have used Universe for many years and I learn something new from Ray's code all the time. I figured others might get lost if they try to figure it out.
by kduke
Fri Aug 11, 2006 6:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing table metadata details
Replies: 8
Views: 2972

Even if you are really good with Universe then Ray's code is very advanced. This can dump DS_METADATA to a xml file or a comma deleimted. This is not the same code originally posted. To break it down a little bit. Command = "SELECT DS_METADATA WITH DSRID LIKE " : Quote("0X'" ...
by kduke
Thu Aug 10, 2006 6:50 pm
Forum: Site/Forum
Topic: Slow Refresh
Replies: 7
Views: 3195

It disconnected me 3 times today. It is slow too.
by kduke
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

IBM charges for hyperthreading almost like it is another CPU. So watch it.
by kduke
Thu Aug 10, 2006 6:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing table metadata details
Replies: 8
Views: 2972

You want me to post the rest then let me know.
by kduke
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...
by kduke
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

You need to download EtlStats from the links on my signature.
by kduke
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...