Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
5answers
20k views

How to find a text inside SQL Server procedures / triggers?

I have a linkedserver that will change. Some procedures call the linked server like this: "[10.10.100.50].dbo.SPROCEDURE_EXAMPLE". We have triggers also doing this kind of work. We need to find all ...
7
votes
1answer
208 views

Trying to call a T-SQL Stored Procedure which selects data from linked server in SSIS package

I have a scenario where I am trying to select some data in a table t1 & t2 from a remote Server (on which I just have read permissions) S1 in DB db1 from another remote Server(on which I am DBO ...
7
votes
4answers
532 views

Slow query when connecting to linked server

I've got this query UPDATE linkeddb...table SET field1 = 'Y' WHERE column1 = '1234' This takes 23 seconds to select and update one row But if I use openquery (which I don't want to) then it only ...
5
votes
2answers
724 views

SQL Server: Is there an “IF EXISTS” test for a linked server?

I want to be able to programmatically (in T-SQL) check if a specific linked server already exists for my current server and database (so that if the link doesn't exist yet, I can create it). I tried ...
5
votes
9answers
8k views

Linked Server Performance and options

So at work we have two servers one is running an application a lot of people use which has an sql 2000 back end. I have been free to query this for a long time but can't add anything to it such as ...
4
votes
3answers
186 views

What are the drawbacks of using linked servers in SQL Server?

Are there any huge performance issues or security concerns? Using SQL Server 2005 and higher
4
votes
1answer
66 views

Where is the bottleneck / what are the gotchas when selecting records from a remote (linked) SQL server?

I'm in a satellite office that needs to pull some data from our main office for display on our intranet. We use MS SQL Server in both locations and we're planning to create a linked server in our ...
4
votes
1answer
310 views

SQL Server spatial and linked servers

I have a SQL Server 2008 instance that I've added a linked server to another 2008 instance. The table I'm accessing on the linked server contains spatial types. When I try to query the table I receive ...
4
votes
1answer
773 views

SQL 2005 - Linked Server to Oracle Queries Extremely Slow

On my SQL 2005 server, I have a linked server connecting to Oracle via the OraOLEDB.Oracle provider. If I run a query through the 4 part identifier like so: SELECT * FROM [SERVER]...[TABLE] WHERE ...
4
votes
2answers
272 views

SQL Servers: Linked-servers without linking servers?

Both my local (and remote) SQL SERVER 2005 administrators claim that "allowing linked-servers is a security issue" and forbid their use here. (Huh?) Anyway, is there a way to do something similar ...
4
votes
2answers
298 views

Selecting a column with period in the column name SQL Server

I am linked to a Proficy Historian that allows periods in the column names. Because the data is stored in a non DBMS format I can not use openquery to get the data because there is no set schema to ...
4
votes
5answers
12k views

There is insufficient system memory in resource pool 'internal'

SQL Server 2008 Linked Server and ad-hoc INSERTs cause a rapid memory leak which eventually causes the server to become non-responsive and ends with the following error: Msg 701, Level 17, State 123, ...
4
votes
4answers
275 views

Best practices for managing migrations that update several databases?

My team is evaluating tools and processes for managing database migrations/database refactoring as described by Martin Fowler, Pramod Sadalage, et. al. We're interested in automated, repeatable, ...
4
votes
3answers
4k views

Can you have a Foreign Key onto a View of a Linked Server table in SQLServer 2k5?

I have a SQLServer with a linked server onto another database somewhere else. I have created a view on that linked server create view vw_foo as select [id], [name] from ...
3
votes
1answer
58 views

Is there a way to prevent SQL Server from Validating the SQL in a stored procedure during CREATE / ALTER

One aspect of our system requires our SQL Server instance to talk to a MySQL Server via a linked Server Connection. MSSQL -> LinkedServer(MSDASQL ODBC Provider) -> MySQL ODBC Connector -> MySQL DB ...
3
votes
1answer
192 views

Cannot connect to SQL Azure using a Linked Server

I've been following this article here: http://blogs.msdn.com/b/sqlcat/archive/2011/03/08/linked-servers-to-sql-azure.aspx on how to setup a Linked Server from SQL Server 2008 R2 to an SQL Azure ...
3
votes
2answers
324 views

SQL Server Error: maximum number of prefixes. The maximum is 3. with join syntax

Trying to run a cross-server update: UPDATE CMSLIVE.CashierManagementSystem.dbo.Sessions SET CMSLIVE.CashierManagementSystem.dbo.Sessions.DisciplineVarianceAmount=DisciplineVariances.VarianceAmount ...
3
votes
1answer
421 views

OpenQuery from SQL Server to Oracle server hangs indefinitely if connection is lost

I have a scheduled job which runs on a SQL Server 2005 database. It runs a stored proc which imports data from a View. This View consists of an OPENQUERY to a linked Oracle server. I have no control ...
3
votes
2answers
1k views

SQL Server Linked Server Example Query

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
votes
3answers
3k views

How can I connect to an external database from a sql statement or a stored procedure?

When running a SQL statement or a stored procedure on a database, can you connect to an external database and pull data from there? something like: SELECT a.UserID, b.DataIWantToGet FROM ...
3
votes
2answers
210 views

Call a Sproc on another SQL Server without being linked via TSQL

I want to call a sproc on server B from server A in TSQL without linking the servers. Is it possible to use something like a connection string to execute this sproc? The return will be a single ...
3
votes
1answer
4k views

SQL Server Linked Server query running out of memory

I have a DBF file on a network share that I'm trying to select into a SQL Server table. This query: SELECT * FROM OPENQUERY(MyLinkedServer, 'SELECT * FROM DP') ... throws this error: OLE DB ...
3
votes
3answers
1k views

Openquery works much faster than a query straight to a linked table

Trying to figure out why there is such a significant difference between select * from linkedserver..tablename and select * from openquery(linkedserver, select * from tablename). 4 minutes vs 13 ...
3
votes
6answers
7k views

Having trouble adding a linked SQL server

I'm trying to pull in data from a remote SQL Server. I can access the remote server using SQL authentication; I haven't had any luck using the same credentials with sp_addlinkedserver. I'm trying ...
3
votes
2answers
5k views

SQL Server query against two linked databases using different collations

I've got 2 remote databases as part of a query select p.ID,p.ProjectCode_VC,p.Name_VC,v.* FROM [serverB].Projects.dbo.Projects_T p LEFT JOIN [serverA].SOCON.dbo.vw_PROJECT v on p.ProjectCode_VC = ...
2
votes
0answers
157 views

Performance implications for using OPENQUERY in a view [closed]

I am using an EasySoft ODBC driver to link a SQL Server 2008 R2 Express instance to Interbase and I am having some difficulty with getting metadata from the remote server. From looking about on the ...
2
votes
3answers
48 views

Optimisation of an oracle query

I'm trying to make my query run as quickly as possible but i'm struggling to get it under 5 seconds. I think it's because i'm referencing two linked databases Here's my query select column2, ...
2
votes
1answer
115 views

SQL Server 2008 Linked Server and CONTEXT_INFO

I'm trying to use the SQL Server 2008 Change Tracking feature. Once the feature is enabled, you can make use of the CHANGETABLE(... function to query the change tracking history that is kept ...
2
votes
1answer
101 views

Inserting Results Of Stored Procedure From Linked Server

Is it possible to insert the results of a remote stored procedure into a temp table? For example CREATE TABLE #test(id INT) INSERT INTO #test EXEC [linkedserver].remoteDB.dbo.tst DROP TABLE #test ...
2
votes
1answer
159 views

View linked server dependencies sql server 2008

Does any know how / if it is possible to view all tables/views/stored procedures that depend on a linked server in Sql Server 2008. Basically as if the context menu "View dependencies" was accessible ...
2
votes
1answer
106 views

Inconsistent Error Messages When Querying Linked SQL Server

I'm building a data warehouse that queries databases that are sometimes located on linked servers. When executing some queries, I have occasionally encountered the following error message ...
2
votes
1answer
249 views

Stored procedure error with linked server

I have set up a stored procedure to update a database on my linked server CREATE procedure MyProcedure @myfield varchar(50), @mycolumn varchar(10) AS UPDATE MyDB SET myfield = @myfield WHERE ...
2
votes
2answers
203 views

how to grant access to a sql authentication account to access linked server

how to grant access to a sql authentication account to access linked server? Thanks
2
votes
1answer
461 views

SQL Server 2008: What is lazy schema validation?

Saw this option when I made a linked server
2
votes
5answers
87 views

SQL Server connecting to another SQL server?

So I have 2 SQL servers, both internal on the firewall, and my webserver is on the DMZ. The webserver currently connects to one of the SQL servers for it's data. I need some information from the ...
2
votes
1answer
515 views

Problems with sp_addlinkedserver in SQL Server 2000

I'm having a bit of a problem with moving specific data from one server running SQL Server 2000 (A) and another running SQL Server 2008 (B). I'm writing a script according to customer specifications ...
2
votes
3answers
983 views

Performance of inter-database query (between linked servers)

I have an import between 2 linked servers. I basically got to get the data from a multiple join into a table on my side. The current query is something like this: select a.* from db1.dbo.tbl1 a ...
2
votes
3answers
2k views

How to reference a sql server with a backslash (\) in its name?

Givens: One SQL Server is named: DevServerA Another is named: DevServerB\2K5 Problem: From DevServerA, how can I write a query that references DevServerB\2K5? I tried a sample, dummy query ...
2
votes
4answers
6k views

Create View using Linked Server db in SQL Server

How can I create View on Linked Server db. For Example I have a linked server [0.0.0.0] on [1.1.1.1]. Both db servers are SQL Sserver 2005. I want to create View on [1.1.1.1] using table on linked ...
2
votes
1answer
1k views

How to optimize simple linked server select query?

I have a table called Table with columns: ID (int, primary key, clustered, unique index) TEXT (varchar 15) on a MSSQL linked server called LS. Linked server is on the same server computer. And: ...
2
votes
4answers
778 views

Is it possible to create a temp table on a linked server?

I'm doing some fairly complex queries against a remote linked server, and it would be useful to be able to store some information in temp tables and then perform joins against it - all with the remote ...
2
votes
1answer
2k views

SQL Server Linked Server to Microsoft Access

I have tried to make use of linked servers in SQL Server 2008 by doing the following to access a Microsoft Access 2003 Table. EXEC sp_addlinkedserver access1t, 'OLE DB Provider for Jet', ...
2
votes
3answers
712 views

sp_addlinkserver using trigger

I have the following trigger, which causes an error when it runs: CREATE TRIGGER ... ON ... FOR INSERT, UPDATE AS IF UPDATE(STATUS) BEGIN DECLARE @newPrice VARCHAR(50) DECLARE @FILENAME ...
2
votes
3answers
559 views

Problem with SQL subquery using Top() on Linked Server

I am using SQL Server 2008 and I have the following SQL script: Select o.CustomerId as CustomerNoId, OrderValue, OrderDate From dbo.Orders as o Inner Join ( Select Top (10) CustomerId From ...
2
votes
3answers
798 views

Retrieve data from remote server in SQL Server!

Is there any other way to retrieve data from a remote server in SQL Server 2005 instead of using linked server?
2
votes
2answers
4k views

Linked SQL Server database giving “inconsistent metadata” error

I am currently running a third-party software suite, which uses SQL Server as its database. I have a second instance of SQL Server running in a different location, and some apps that I am building in ...
2
votes
5answers
4k views

Execute DB2 iSeries Stored Procedure from a SQL 2005 Linked Server

I am trying to execute a stored procedured from a linked database in MS SQL 2005. The linked database is a db2 database on a iseries server. I am using the iSeries IBMDASQL service provider. I am ...
2
votes
3answers
1k views

OpenQuery to DB2/AS400 from SQL Server 2000 causing locks

Every morning we have a process that issues numerous queries (~10000) to DB2 on an AS400/iSeries/i6 (whatever IBM calls it nowadays), in the last 2 months, the operators have been complaining that our ...
2
votes
1answer
739 views

How to prevent an Insert query from enrolling into a Distributed Transaction?

I have a SQL Insert query inside a stored proc, for inserting rows into a linked server table. Since the stored proc is getting called within a parent transaction, this Insert statement tries to use ...
1
vote
4answers
53 views

INNER JOIN on Linked Server Table much slower than Sub-Query

I came across this very odd situation, and i thought i would throw it up to the crowd to find out the WHY. I have a query that was joining a table on a linked server: select a.*, b.phone from ...

1 2 3 4 5 6