Search found 24 matches

by miamichillin99
Mon Apr 24, 2006 12:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Essbase - DataStage
Replies: 4
Views: 4028

akrzyzan,

I have the same issue. Did you find a solution?
by miamichillin99
Tue Mar 28, 2006 4:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Some licensing errors
Replies: 10
Views: 14120

I didn't read the thread thorough enough. sathyanveshi is using BASIC code to connect via ODBC...I'm getting the error using the ODBC stage within a Server job. Nothing fancy at all except for a user-defined SQL statement. My error is: DataStage Job 694 Phantom 16738 Warning: [DataDirect][ODBC SQL S...
by miamichillin99
Tue Mar 28, 2006 2:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Some licensing errors
Replies: 10
Views: 14120

Hi Ray, An Ascential consultant visited the premises and resolved this. I do not have exact idea as to what he did. Since DS was used across the organisation, he was called in by the IT Dept. head and he resolved it. I shall be contacting the Consultant and will get a detailed report of what he did...
by miamichillin99
Thu May 19, 2005 9:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MySQL on AIX 5.1
Replies: 15
Views: 9374

Bump!!

Anyone out there with any experience with MySQL?
by miamichillin99
Tue May 17, 2005 9:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MySQL on AIX 5.1
Replies: 15
Views: 9374

Ray thanks for your help. Really appreciate someone of your caliber coming to the rescue. I still got the same error: >DS_CONNECT MySQL_TESTING Enter username for connecting to 'MySQL_TESTING' DBMS [dsadm]: root Enter password for root: Abnormal termination of DataStage. Fault type is 4. Layer type ...
by miamichillin99
Mon May 16, 2005 2:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MySQL on AIX 5.1
Replies: 15
Views: 9374

MySQL on AIX 5.1

Ladies and Gentlemen, I've been trying to get this set up and it's impossible. I have DS 7x running on AIX 5.1. I wan't to connect to a remote machine running Linux and MySQL. I set up the uvodbc.config and .odbc.ini files correctly. When I try to import metadata in DS Designer is errors out like be...
by miamichillin99
Fri Mar 11, 2005 1:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file lookup and simultaneous update
Replies: 22
Views: 9379

I'm finally done!

These two jobs have been the most educational thus far in my Ascential learning process. Thank you all for your help. I was able to get the decimal and data type issue resolved by using two hash stages instead of a UV stage with a left join. Below is my final JOB 2. Again thank you and I hope to kee...
by miamichillin99
Thu Mar 10, 2005 8:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file lookup and simultaneous update
Replies: 22
Views: 9379

Craig,

I'll try your way of using purely hash stages and a lookup with a contraint and see if that takes care of my other problem...the decimal movement.

Thanks a lot. Have a good weekend.
by miamichillin99
Thu Mar 10, 2005 4:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file lookup and simultaneous update
Replies: 22
Views: 9379

Chullet, you hit the nail right on the head. I do have the 'Delete File before Create' option and the Create File option. I uncheckd both and now it works with the hash stage. thank you very much!!! But I'm having another problem that's related. If you look up to one of my first posts you will notic...
by miamichillin99
Thu Mar 10, 2005 1:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file lookup and simultaneous update
Replies: 22
Views: 9379

Update to Hash instead of UV

Well I tried changing it to a hash file instead of the UV stage, but now my Hash file only contains the records that went through the XFM as Not(NOTFOUND)'s. I wanted the hash file to contain the same amount of records that it had when it began. Since not all the records in the hash file are being u...
by miamichillin99
Wed Mar 09, 2005 5:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file lookup and simultaneous update
Replies: 22
Views: 9379

It WORKED!!!!!

Thank you all for your help. Below is the final set-up for JOB 1:

Code: Select all

         HASH_UPDATE(UV Stage) 
                  / 
OCI1 --> HASH   / 
           |  /          
           |/ 
OCI2 -->  XFM --> OCI_BULK
by miamichillin99
Wed Mar 09, 2005 3:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file lookup and simultaneous update
Replies: 22
Views: 9379

I think I have answered my own question by searching this forum, but to be sure is it the UV stage?
by miamichillin99
Wed Mar 09, 2005 3:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file lookup and simultaneous update
Replies: 22
Views: 9379

I have tried updating the hash file as shown below, but as you all know there is no updating feature in the hash file stage. What stage do I use to update a hash file? HASH_UPDATE(HASH Stage) / OCI1 --> HASH / | / |/ OCI2 --> XFM --> OCI_BULK
by miamichillin99
Tue Mar 08, 2005 6:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file lookup and simultaneous update
Replies: 22
Views: 9379

Thanks Sainath, Ray, and Chuck. I'll try it in the morning.
by miamichillin99
Tue Mar 08, 2005 4:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file lookup and simultaneous update
Replies: 22
Views: 9379

My big question is how do I update the hash-file during a lookup against the same hash file?

I want to perform the lookup in JOB #1 and update the hash column PROCESSED to TRUE. Then I can use the same hash file in JOB 2 and look for the ones that have the column PROCESSED set to FALSE.