Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

openquery error 0x8000ffff

Status
Not open for further replies.

gcole

Programmer
Aug 2, 2000
390
US
I have a linker server to an informix database. It quit working on Friday. Some of the drivers I needed were missing. I reinstalled and I can see the tables and views in the linked server but when I run :

select commodity
FROM OPENQUERY(ONLINE_TCP, 'SELECT * FROM adsave')

I get:
Server: Msg 7399, Level 16, State 1, Line 1
OLE DB provider 'MSDASQL' reported an error. The provider reported an unexpected catastrophic failure.
OLE DB error trace [OLE/DB Provider 'MSDASQL' IDBProperties::GetProperties returned 0x8000ffff: The provider reported an unexpected catastrophic failure.].

Any ideas?
 
I ran into this on my google search for your error, it may help you out.


States this as a fix to encountering that error:

Geeta said:
Here are the steps to resolve the problem.
1. In OBDC, while creating the DSN (with the Sybase server name as DSN name) the database name should not be given.

2. In the Linked server properties only the Data source should be given. Remote login (sa and pwd) and in server options only Collation compatible and Data Access are to be selected.

3. The default database for sybase 'sa' login was taken as the user database for which the tables are to be linked.

The above solution works perfectly without issues.

Hope it is helpful to all.
Regards
Geeta


[monkey][snake] <.
 
The final on this is that we are using very old infomrix drivers. Rebooting several systems has fixed this. We are looking into getting newer drivers.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top