Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

quering remote database using sql server?

I have used sp_addlinkedserver to access the remote machines db now i am writing queries explicitly on database like,

select * from [server\instance].database.owner.tablename

Now with this,

  1. [Server\instance] : this has to be provided explicitly
  2. [database] : can we find databases on specified instance using query like ms_ForEachDB ?
  3. [owner] : Can we find the database owner name using query ?

If these values are found using queries do we need to use EXEC() to execute this or we can still achieve it using nice queries ?

Thanks all,

like image 635
Anil Namde Avatar asked Dec 29 '22 00:12

Anil Namde


1 Answers

The "nice" format you mention is simply a 4 part object reference.

select * from [server\instance].database.owner.tablename

3 part

select * from database.owner.tablename

2 part

select * from owner.tablename

If you want to dynamically change any of the server, db or schema values then you have one option:

EXEC (@sqlstring)

However, if you only access stored procs remotely...

DECLARE @RemoteSP varchar(500)

SET @RemoteSP = '[server\instance].database2.schema.proc2'
EXEC @RemoteSP @p1, @p2, @p3 OUTPUT

SET @RemoteSP = '[server\instance].database1.schema.proc1'
EXEC @RemoteSP @p4, @p5, @p6 OUTPUT

However, changing the components of the object reference makes no sense arguably: if you know you're going to query a table then just call that table in that database...

like image 109
gbn Avatar answered Jan 14 '23 02:01

gbn