About 51 results
Open links in new tab
  1. How do I create and query linked database servers in SQL Server ...

    Oct 9, 2008 · However, you may also do this via Enterprise Manager (2000) or SQL Server Management Studio (2005). Under the "Security" node, there is a "Linked Servers" node, which you can use to …

  2. SQL Server Linked Server Example Query - Stack Overflow

    While in Management Studio, I am trying to run a query/do a join between two linked servers. Is this a correct syntax using linked db servers: select foo.id from databaseserver1.db1.table1 foo, ...

  3. Como funciona un Linked Server? SQL Server 2016 - Stack Overflow en ...

    Apr 3, 2023 · Sí, puedes configurar un "linked server" en ambos servidores para acceder a la información en ambas direcciones. Para aclarar, si tienes dos servidores SQL Server, Servidor1 y …

  4. SQL Linked Server returns error "no login-mapping exists" when non ...

    The Linked Server works great when I login to the local server using a SQL-login account with sysadmin server role. I can query against the remote server, so I know the Linked Server setting is correct.

  5. How to list all tables & columns names of a linked-server database in ...

    The system stored procedure sp_tables is used to list out the tables available in the current database of the current server. You can use sp_tables_ex for the linked server.

  6. How to execute a stored procedure against linked server?

    Jan 24, 2019 · And from the SQL Server 2000 Books Online: Note Support for remote servers is provided for backward compatibility only. New applications that must execute stored procedures …

  7. Selecting data from two different servers in SQL Server

    Jul 17, 2009 · Typically linked servers are configured to enable the Database Engine to execute a Transact-SQL statement that includes tables in another instance of SQL Server, or another database …

  8. sql - How to create linked server on remote server to local PC - Stack ...

    Sep 21, 2017 · 4 How to add linked server establishing connection from remote SQL Server linking to local instance of SQL Server Express? By local I mean the PC I use with SQL Server Express …

  9. How to find linked_server name in sql server management studio?

    Aug 8, 2016 · I am trying to query the following in sql server management studio: select colname from openquery (linked_server, 'exec XX.YY.PrcName @Parameter') When i try to give XX as linked …

  10. Cannot get Linked Servers to work with MS SQL Server developer edition

    Jan 17, 2025 · I have a situation where I'm running SQL Server Dev edition locally and want to use linked servers and synonyms to create views that consume data on other servers in my dev/test …