April 29, 2010 at 8:16 am
Have you tried using OpenQuery instead?
Select * from OpenQuery(MyLinkedServer,'Select * from MySchema.MyTable')
For better, quicker answers, click on the following...
http://www.sqlservercentral.com/articles/Best+Practices/61537/
For better answers on performance questions, click on the following...
http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
April 29, 2010 at 9:40 am
Does oracle handle schemas the same way as MS SQL? (Totally clueless about all things oracle)
The other option to try might be:
select * from myLinkedServer...[mySchema.myTable]
April 29, 2010 at 9:49 am
Garadin (4/29/2010)
Does oracle handle schemas the same way as MS SQL? (Totally clueless about all things oracle)The other option to try might be:
select * from myLinkedServer...[mySchema.myTable]
I don't remember, but I think it doesn't use the 4 part naming convention like SQL nor does it need the brackets. I think it would be more like
select * from myLinkedServer.mySchema.myTable
For better, quicker answers, click on the following...
http://www.sqlservercentral.com/articles/Best+Practices/61537/
For better answers on performance questions, click on the following...
http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
Viewing 3 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply