vote up 4 vote down star
1

If I need to copy a stored procedure (SP) from one SQL Server to another I right click on the SP in SSMS and select Script Stored Procedure as > CREATE to > New Query Editor Window. I then change the connection by right clicking on that window and selecting Connection > Change Connection... and then selecting the new server and F5 to run the create on the new server.

So my question is "What is the T-SQL syntax to connect to another SQL Server?" so that I can just paste that in the top of the create script and F5 to run it and it would switch to the new server and run the create script.

While typing the question I realized that if I gave you the back ground to what I'm trying to do that you might come up with a faster and better way from me to accomplish this.

flag

74% accept rate

5 Answers

vote up 6 vote down check

Also, make sure when you write the query involving the linked server, you include brackets like this:

SELECT * FROM [LinkedServer].[RemoteDatabase].[User].[Table]

I've found that at least on 2000/2005 the [] brackets are necessary, at least around the server name.

link|flag
vote up 1 vote down

Try creating a linked server (which you can do with sp_addlinkedserver) and then using OPENQUERY

link|flag
Wayne - if I understand your suggestion correctly then this executes an SP residing on server1 on server2 right? It doesn't create the same SP on server2 does it? – Guy Sep 24 '08 at 4:54
It executes a sp on server1 that opens a link to server2. You can then pasa through a query or call to something on server2. – Wayne Sep 24 '08 at 5:08
vote up 5 vote down

Update: for connecting to another sql server and executing sql statements, you have to use sqlcmd Utility. This is typically done in a batch file. You can combine this with xmp_cmdshell if you want to execute it within management studio.


one way is to configure a linked server. then you can append the linked server and the database name to the table name. (select * from linkedserver.database.dbo.TableName)

USE master
GO
EXEC sp_addlinkedserver 
    'SEATTLESales',
    N'SQL Server'
GO
link|flag
vote up 4 vote down

If I were to paraphrase the question - is it possible to pick server context for query execution in the DDL - the answer is no. Only database context can be programmatically chosen with USE. (having already preselected the server context externally)

Linked server and OPEN QUERY can give access to the DDL but require somewhat a rewrite of your code to encapsulate as a string - making it difficult to develop/debug.

Alternately you could resort to an external driver program to pickup SQL files to send to the remote server via OPEN QUERY. However in most cases you might as well have connected to the server directly in the 1st place to evaluate the DDL.

link|flag
vote up -1 vote down

dears i create a linkedin server but i got this error

The OLE DB provider "SQLNCLI" for linked server "Linksrv04" does not contain the table ""BizRequest"."dbo"."Countries"". The table either does not exist or the current user does not have permissions on that table.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.