November 19, 2009 at 3:53 am
I had created linked server against oracle in sql server 2005
How to access the tables of oracle with four-part name(not with openquery)
can u give me the examples/syntax?
November 19, 2009 at 6:09 am
assuming your linked server was aliased as "MyOracle" this command should help:
--list all the tables and their names
EXEC sp_tables_ex MyOracle
GO
we have a "model" kind of schema withthe user "CHANGE_ME" as well as other users/databases
select * from MyOracle..CHANGE_ME.TBCITY
select * from MyOracle..PROD.INVOICES
Lowell
November 19, 2009 at 6:11 am
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply