Dear All,
i am making small web application using asp.net, C# ,sql2000.
i want a about regarding how to access view or table from other server to local server. i have base database where there is a view which need to access in my database of local server.
that is how to make select query to access view in other server
Please help
thanks
You have to add you second server to linked servers (server objects-> linked servers-> right click new linked server) and next in your query use server name in table name like:
select * from [server].[database].dbo.[tablename]
or use open query
Select * from OPENQUERY([servername],'SELECT * from [database].dbo.[tablename]')
second is faster but use it only if your query will hit only data on second server.
Thanks
sql
No comments:
Post a Comment