Search found 6797 matches
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...
- 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
- 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
- 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.
- 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.
- 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...
- 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:
Go to the stage variables property and specify the initial value of 'counter' as KeyMgtGetNextValue('YourJobName'). Your done.
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.
- 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
- Wed Dec 27, 2006 9:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: look up problem
- Replies: 3
- Views: 654
- 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
- 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.
- 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
- 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...