Search found 53125 matches

by ray.wurlod
Tue Nov 15, 2005 10:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Exception raised in GCI subroutine
Replies: 10
Views: 6286

I think it uses the table name to validate the columns in your design when the connection to the database is established but before the request to prepare the SQL is issued.
by ray.wurlod
Tue Nov 15, 2005 10:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to give Permission to access jobs to a Particular User
Replies: 5
Views: 1386

You can not control access at the individual job level, other than by having the jobs in separate projects. You can manage access to projects with better effect than you imagine by well-planned and systematic use of operating system groups in conjunction with DataStage roles. Have a separate group f...
by ray.wurlod
Tue Nov 15, 2005 10:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to pass output of one sp as input to other sp
Replies: 3
Views: 1676

Can't you just pass the value along a link to the ODBC stage that invokes the second Stored Procedure?
by ray.wurlod
Tue Nov 15, 2005 10:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using universe for hashfile
Replies: 3
Views: 1011

UniVerse does not have a TimeStamp data type. Hashed files store all data as string, but DataStage allows the Hashed File stage to pretend that there really are data types out there. Ross is pretty close, but you won't need an index on the primary key, since the hashing algorithm will find keys fast...
by ray.wurlod
Tue Nov 15, 2005 6:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Null & Blank
Replies: 5
Views: 1418

On the Format tab there's a property in which you can specify how null is represented in the text file. By default this field is empty, which means that "" (a zero-length string) is treated as null. Change it to anything else (such as <NULL>) and you will read "" as "".
by ray.wurlod
Tue Nov 15, 2005 6:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Network / Bandwidth bottleneck
Replies: 5
Views: 1950

Best practice is to have dedicated network segments with different IP addresses from the rest of the LAN between machines. That way you do not experience saturation problems with the rest of the LAN. NICs are not that expensive - maybe a couple of hundred dollars.
by ray.wurlod
Tue Nov 15, 2005 6:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Which ports are needed?
Replies: 3
Views: 1418

Welcome aboard! :D

The ports really depend on what products you are using. The DataStage RPC daemon listens on port number 31538 by default. Other products, such as ProfileStage and QualityStage, use their own port numbers.
by ray.wurlod
Tue Nov 15, 2005 12:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server Shared container
Replies: 1
Views: 1011

There's a button in the Container properties that allows you to reconcile the names of links within the shared container with the names of the links connecting to the shared container.
by ray.wurlod
Tue Nov 15, 2005 12:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Imput parameter in sequencer
Replies: 2
Views: 1043

Set up parameters in the job sequence's job properties just the same way you would for a regular job.
In a Job Activity these become available via the Add Job Parameter button.
by ray.wurlod
Tue Nov 15, 2005 12:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Import Table definition in excel
Replies: 2
Views: 957

If you can find a UNIX-based ODBC driver for Excel you can go that route. If you also have a Windows-based DataStage you can use the Microsoft ODBC driver for Excel. Beware that worksheets are treated by the ODBC driver as system tables, so you have to check "include system tables" when importing. E...
by ray.wurlod
Tue Nov 15, 2005 12:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine example code
Replies: 2
Views: 1236

You are going to need a properly configured Oracle client on the DataStage server machine no matter what you want to do. Whether you use a DataStage job (the preferred approach) or not, what you're creating is a client application as far as Oracle is concerned. So do think about using the tool prope...
by ray.wurlod
Tue Nov 15, 2005 11:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 'Basic' Equivalent for 'Cast' operation of SQL
Replies: 5
Views: 1067

If you want to force left-justified (string) or right-justified (numeric) comparisons, you can use the Compare() function.
by ray.wurlod
Tue Nov 15, 2005 11:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple Keys
Replies: 2
Views: 695

It's not totally clear what you want to do. Can you please clarify? What I think you want to do is to assemble something on the output that is derived from multiple lookups. If that's it, you note that every input column reference is unambiguous, because it is qualified by its input link name. So yo...
by ray.wurlod
Tue Nov 15, 2005 11:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding HashFile
Replies: 2
Views: 798

It depends. How many rows? How big are the rows? For small values of each, an all-in-one-hashed-file is appropriate. But if they get too big then separate hashed files (note: hashed, not hash) would be appropriate.
by ray.wurlod
Sat Nov 12, 2005 5:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: uv command to create ds project
Replies: 27
Views: 11697

Can't open UV.ACCOUNT indicates a wider problem, which you may have introduced or may have just happened. Get into the UV project via telnet, in dssh, and try a query against UV.ACCOUNT, such as SELECT * FROM UV.ACCOUNT; Let us know what error messages appear (if any). Then try naming columns in the...