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!

SQl to Oracle query part 2

Status
Not open for further replies.

rchalker

Programmer
Jul 10, 2001
4
US
The query:
select * from localoracle..system.country

gets me

OLE DB provider 'MSDAORA' does not contain table '"system"."county"'.

In SQL Server Enterprise Manager Using the Linked Servers utility under Security I can 'see' the table. I linked using the 'system' id and the default password. Any suggestions?
 
Any chance you may have spelled the table name wrong? Your query reads:

select * from localoracle..system.country

But your error message says:

OLE DB provider 'MSDAORA' does not contain table '"system"."county"'.

Note that the query is referencing the table "country" and the error message is showing the table "county" (Missing the "r").

Regards,
Suresh
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top