Search found 6797 matches

by DSguru2B
Wed Dec 27, 2006 10:37 am
Forum: General
Topic: odbc
Replies: 41
Views: 15395

Nothing on your machine, drop the odbc stage on your canvas, open its properties, go to output tab, go to columns tab and click on load. Click on Import...'odbc table definitions'. From the drop down list in 'DSN' you should be able to see the entries that are in the two entries. Chose the one you w...
by DSguru2B
Wed Dec 27, 2006 10:30 am
Forum: General
Topic: odbc
Replies: 41
Views: 15395

you need to add entries to two files. uvodbc.config and .odbc.ini on the server. Search this forum for exact details on 'how to'
by DSguru2B
Wed Dec 27, 2006 10:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: multiple ODBC stages on one layout
Replies: 5
Views: 1131

It depends upon the 'inhouse' standards. But as a general practice, its not outside the boundry of 'best practices' to access different databases in a single job.
by DSguru2B
Wed Dec 27, 2006 10:27 am
Forum: General
Topic: odbc
Replies: 41
Views: 15395

What are you trying to achieve? Are you trying to connect to a database via odbc stage? Need more info then what you are providing buddy.
by DSguru2B
Wed Dec 27, 2006 10:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trouble viewing source data
Replies: 19
Views: 7841

What is the length that you have specified for char? Change it to varchar and see what happens.
by DSguru2B
Wed Dec 27, 2006 10:14 am
Forum: Site/Forum
Topic: For those who have a DataStage interview coming up.
Replies: 1
Views: 1944

For those who have a DataStage interview coming up.

I stumbled across Vincent's blog entry. Check thisout. For both, interviewer and interviewee.
by DSguru2B
Wed Dec 27, 2006 9:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Count the No.of Rrcords
Replies: 1
Views: 535

This has been discussed time and again, and again and again. This is one example.
by DSguru2B
Wed Dec 27, 2006 9:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: look up problem
Replies: 3
Views: 654

You dont have to. It will just be faster. Or you can do everything in user defined sql. Something like select MY.id,MY.name,MY.location,MY.country_id,MY.region_id, C.country_name, R.region_name from myTable MY left outer join country_table C ON MY.country_id = C.country_id left outer join region_tab...
by DSguru2B
Wed Dec 27, 2006 9:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File with multiple records
Replies: 10
Views: 2074

No problem. Small tweak to the stage varialbe 'counter', which is as follows:

Code: Select all

If cond then KeyMgtGetNextValue('YourJobName') else counter


Go to the stage variables property and specify the initial value of 'counter' as KeyMgtGetNextValue('YourJobName'). Your done.
by DSguru2B
Wed Dec 27, 2006 9:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Phantom and Zombie process
Replies: 3
Views: 1971

Phantom process is a DataStage internal process. Thats the high level definition. A zombie is a process from Freddy Vs. Jason. Just messing with ya. Click here
by DSguru2B
Wed Dec 27, 2006 9:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: look up problem
Replies: 3
Views: 654

These are two distinct lookups. Build two hashed files. One from country_table keyed on county_id and the second from region_table keyed on region id. Perform both the lookupn on those keys in one transformer. Its a regular lookup. I dont see the confusion.
by DSguru2B
Wed Dec 27, 2006 9:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: performence issue in transformer
Replies: 2
Views: 1011

Test it out. See what is the performance gain if any. Let us know too. Its hard to tell as we do not know what you are doing in modify.
by DSguru2B
Wed Dec 27, 2006 8:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dos to unix on Linux environment
Replies: 18
Views: 5914

Well, i guess then the OP needs to either convert the format explicity like he/she has been trying or as Craig said, use Dos record end setting. Check out thislink for a few more ways of doing that.
by DSguru2B
Wed Dec 27, 2006 8:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in Stored Procedure Stage
Replies: 11
Views: 5035

Are you using a 'Source' procedure type ? Did you check the 'Procedure returns multiple rows' box. Thats one way, the other way is to implement it within Datastage. Study what the stored procedure is doing and implement it with a simple database stage.
by DSguru2B
Wed Dec 27, 2006 8:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dos to unix on Linux environment
Replies: 18
Views: 5914

Well, I have always created test files on my desktop and ftp'd them over to the unix environment. Just a simple put command. It would convert it. No special command to convert it along with ftp. That is due to the fact that command line ftp uses ascii transfer mode as a default mode. The recieving m...