Search found 472 matches

by tonystark622
Mon Jun 30, 2003 6:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting from Sybase 12.5 to Oracle 9i - on DS
Replies: 4
Views: 1173

Ricky,

The only thing I can add to what Vincent said, is to make sure you backup your work. Don't make changes on a job that you don't have backed up some way [:)]

Good Luck,
Tony
by tonystark622
Thu Jun 26, 2003 4:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC and native connection to same data source?
Replies: 7
Views: 2371

You got me, buddy. I'm having similar problems with ODBC here, but they're constant. I'll start a new thread if we don't get it fixed soon.

Good Luck,

Tony
by tonystark622
Wed Jun 25, 2003 4:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read/Write MS Access Database from Unix
Replies: 4
Views: 1764

Hey Mark, DataStage ships with ODBC drivers (for Unix) for many common DBMS systems. I believe that SQL Server is among them. They don't have an Access driver for Unix, however. [:(] Assuming you meant DataStage project when you said UNIX server project. If you didn't mean DataStage, Merant (?) make...
by tonystark622
Wed Jun 25, 2003 10:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC and native connection to same data source?
Replies: 7
Views: 2371

Hey Steve,

I've got several jobs that mix stage types, like you suggest. Oracle OCI8 and ODBC stages all at the same time.

What is the message you're getting?

Tony
by tonystark622
Wed Jun 25, 2003 7:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: types of hash files
Replies: 2
Views: 1074

There is some discussion on the various options available in the hash file stage chapter of the Server Job Developers Guide, which comes with DataStage. In Windows, Start->Programs->Ascential DataStage->Online Manuals->DataStage Documentation. This will bring up a PDF file "menu". Click on...
by tonystark622
Wed Jun 25, 2003 6:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Hangs When Running
Replies: 3
Views: 1951

nelc, Just wanted to pass along my findings with a similar situation... I had this exact situation and I found that I was doing a lookup on an external database (Oracle) and didn't give it enough fields to use the correct index, causing it to "table scan" the table for each lookup. When I ...
by tonystark622
Fri Jun 20, 2003 1:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No rows process through job
Replies: 19
Views: 6087

I've lead such a sheltered life. I never knew about the .NOTFOUND thingee. I've always used IsNull() or Not(IsNull()).[:)]

Tony
by tonystark622
Fri Jun 20, 2003 11:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No rows process through job
Replies: 19
Views: 6087

Ah, so there is a way to build an index encompassing all the fields that I need (composite index)? I figured that there had to be. I'll dive back into the Universe documentation. Maybe in the meantime someone will post back with the syntax.

Thanks Craig.

Tony
by tonystark622
Fri Jun 20, 2003 8:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No rows process through job
Replies: 19
Views: 6087

Just wanted to ask a question about another, ummm, "feature" that I found using this technique. When I have multiple columns that I need to join on in my hashfile/Universe stage, it runs slowly. It is slow even if I have indexes on each of the columns in the join. To fix this, I added a co...
by tonystark622
Thu Jun 19, 2003 11:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle Advanced Queue
Replies: 9
Views: 3475

Exactly what I needed.

Thanks, Todd.

Tony
by tonystark622
Thu Jun 19, 2003 11:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine Problem
Replies: 4
Views: 2043

Shivakumar,

I've just gone through a problem where the job didn't appear to be processing any rows. It turned out to be "slow lookups" because the fields that I was joining weren't indexed. Painfully slow. So, indexes do make a difference.

Tony
by tonystark622
Thu Jun 19, 2003 6:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC connection to Excel files in different folder
Replies: 5
Views: 1379

One of them is at:


Good Luck,
Tony
by tonystark622
Wed Jun 18, 2003 9:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle Advanced Queue
Replies: 9
Views: 3475

Vincent and Todd, I'm somewhat confused (I know, this is news? [:)]). Does the MQSeries plug-in work with Oracle Advanced Queue? I didn't think that it did, but after what's been posted here, I'm not sure. Vincent, how did you call the custom procedures to Enqueue the data (that's what I'm mostly in...
by tonystark622
Wed Jun 18, 2003 3:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle Advanced Queue
Replies: 9
Views: 3475

Todd,

So, you use an Oracle OCI stage to execute the Enqueue and Dequeue packages withink Oracle? Oh, wait, I see, you insert into an Oracle table and the trigger Enqueue's the inserted data into the AQ. Sorry for being slow. It's been an "interesting" day...[:)]

Thanks,
Tony
by tonystark622
Wed Jun 18, 2003 2:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No rows process through job
Replies: 19
Views: 6087

Just wanted to send an update along... I ran into this problem in another job. I was doing a lookup against an Oracle table. Because I needed to return multiple rows from my lookup link for every input row, I couldn't just use a hash file. I did end up copying the Oracle table into a hash file, and ...