Search found 4605 matches

by kduke
Fri Jul 08, 2005 1:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Search jobs that uses a particular file
Replies: 8
Views: 2011

You need to telnet into your DataStage server. If you are on Windows then you will get a TCL prompt ">". LOGTO YourProject PTERM CASE NOINVERT (paste SQL statement above.) If on UNIX: cd `cat /.dshome` ./bin/uv (now you should see the TCL prompt ">") LOGTO YourProject PTERM...
by kduke
Fri Jul 08, 2005 9:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Table Definitions
Replies: 6
Views: 1562

You can add columns if you double click on either the imported table definition or the saved one. So save it to a different name and edit it.
by kduke
Fri Jul 08, 2005 9:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there any Universe ODBC driver for download?
Replies: 12
Views: 6431

Ray

How do they get the metadata into Redbrick? I was assuming they could get it out of the MetaStage respository easier than Universe.
by kduke
Fri Jul 08, 2005 1:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there any Universe ODBC driver for download?
Replies: 12
Views: 6431

Why not MetaStage?
by kduke
Thu Jul 07, 2005 11:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there any Universe ODBC driver for download?
Replies: 12
Views: 6431

You could do this in a shell or perl script. You could uv, uvsh, ds or dssh to execute SQL to retrieve information. You could also use dsjob.

What exactly do you want?
by kduke
Thu Jul 07, 2005 12:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job with no "Primary Input" stage
Replies: 5
Views: 2721

I did not think it is possible but it will allow you to have a transform without primary input. You need stage variables. Like x=1 initial value then x=x+1. Next you need a constrait like x<100. Try it. I have seen people do this to create time and day dimensions. Saves coding the whole thing in a b...
by kduke
Thu Jul 07, 2005 12:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC problem with Datastage
Replies: 2
Views: 907

You have to go to the Windows server. They are all normal DSNs setup usually with %SystemRoot%\system32\odbcad32.exe in the control panel.
by kduke
Thu Jul 07, 2005 10:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading Cash Changing
Replies: 4
Views: 1034

The cache limits are preloaded in uvconfig. You have to stop and start DataStage to change them. You cannot set these to arbitrary values either. There is a command called shmtest or something close to that which will tell you the max values you can set them at. If you exceed these limits then DataS...
by kduke
Thu Jul 07, 2005 10:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there any Universe ODBC driver for download?
Replies: 12
Views: 6431

They have disabled it except for internal use. If you use localuv as a DSN then it works for UV stages and internally in BASIC. Otherwise forget it.
by kduke
Thu Jul 07, 2005 10:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle/DB2/Sql Server date Error
Replies: 3
Views: 974

I would dump the first few rows to a sequential file just to make sure the date is formated the way you think it is. Depending on the version you may need milliseconds.
by kduke
Wed Jul 06, 2005 11:52 pm
Forum:
Topic: Manage Business Metadata using MetaStage
Replies: 14
Views: 8809

Ray

I think this question is valid. MetaStage is really designed to extract meta data from DataStage, Oracle, SQL Server and other databases, ERwin, BO, Cognos and other reporting tools. Can it get meta data from other sources like spreadsheets?
by kduke
Wed Jul 06, 2005 11:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Wanna keep a set of jobs in loop
Replies: 6
Views: 1637

You might be able to do this better in one job. Ask Ray.
by kduke
Wed Jul 06, 2005 7:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: link information in parllel job
Replies: 6
Views: 1789

If you cannot get it this way then try this SQL at TCL. SELECT DS_JOBOBJECTS.OLETYPE as LinkType, DS_JOBS.NAME as JobName, DS_JOBOBJECTS.NAME as LinkName, DS_JOBS.CATEGORY as Category FROM DS_JOBOBJECTS, DS_JOBS WHERE OBJIDNO = JOBNO Group by LinkType, JobName, LinkName, Category ; Let us know if it...
by kduke
Wed Jul 06, 2005 7:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Wanna keep a set of jobs in loop
Replies: 6
Views: 1637

I am not sure you can do this. Each job runs independently. Unless you have only one record in a file and then run all the jobs then process the next file with only one record in it.

That sounds really ugly. Explain why you think you need to do this.