The tag has no wiki summary.

learn more… | top users | synonyms

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

Why is using OPENQUERY on a local server bad?

I'm writing a script that is supposed to run around a bunch of servers and select a bunch of data out of them, including the local server. The SQL needed to SELECT the data I need is pretty ...
2
votes
1answer
140 views

order hint for openquery?

I need to execute the following SQL (SQL Server 2008) in a scheduled job periodically. The Query plan shows 53% cost is sort after the data is pulled from the oracle server. However, I've ordered the ...
2
votes
1answer
529 views

Getting syntax error when trying to use OPENQUERY

I am trying to do a query via ODBC to our ERP database. The documentation guide suggests that we use OPENQUERY to send the query. Here is my example query SELECT Q.Part_No, Q.[Description], ...
2
votes
0answers
545 views

OpenRowSet, OpenQuery, OpenDataSource - which is better in terms of performance

This can be a debatable answer, but I'm looking for the case where a local Excel file needs to be exported to a local SQL Server 2008' table. Has anyone ever had the chance to check execution time to ...
2
votes
3answers
2k views

including parameters in OPENQUERY

How can I use a parameter inside sql openquery, such as: SELECT * FROM OPENQUERY([NameOfLinkedSERVER], 'SELECT * FROM TABLENAME where field1=@someParameter') T1 INNER JOIN ...
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: ...
1
vote
1answer
102 views

Linked Server - LDAP - Msg 7321

Below is an abbreviated query I am trying to execute against LDAP using a linked server: select * from openquery(ADSI,'') The query runs fine, except when I change the "Domain controller: LDAP ...
1
vote
1answer
70 views

Open query in hibernate

I am using struts and hibernate in my problem. I tried the following query String hql ="insert into "+ "OPENQUERY(OracleLinkedServer, \'SELECT * FROM report_access_log\') "+ ...
1
vote
1answer
670 views

Extremely slow insert OpenQuery performance on SQL Server to MySQL linked server

Using SQL Server Management Studio to copy the entire contents of a table from SQL Server to an identical table on a MySQL machine. The MySQL db is connected to Management Studio as a linked server ...
1
vote
1answer
312 views

SQL: OPENQUERY Question

I am currently using OPENQUERY to import Data into a Database from an Oracle Linked Server. I am currently using SELECT INTO. It works well, but I have to drop the database and recreate it everytime ...
1
vote
3answers
1k views

Execute stored proc with OPENQUERY

I have SQL Server 2008 with a linked Sybase server and I am trying to execute a stored procedure on the Sybase server using OPENQUERY. If I have a stored proc that doesn't take parameters it succeeds ...
1
vote
1answer
256 views

Possible to use “INSERT INTO @VARIABLE EXEC() AT LINKED_SERVER” syntax? (SQL Server 2005)

I am trying to execute a query on a linked server, but I need the results locally. DECLARE @test TABLE ( greeting CHAR(5) ) INSERT INTO @test EXEC('select ''hello'' as greeting') SELECT * FROM ...
1
vote
1answer
201 views

SQL: not exist with openquery not working as expected

I do have an oracle 8 database from which I want to fetch data to SQL Server 2005. The following statement works fine, if the table on SQL Server 2005 is empty. If I run with let's say one entry ...
1
vote
1answer
417 views

OPENQUERY on SQL Server 2005 64bit behaves weird

I just recently moved a SQL DB from SQL2005 32 bit --> 64 bit. I am having an issue connecting to Oracle using the OraOLEDB.Oracle Provider. I was able to install Oracle 10G Client , ODAC 64 bit. I ...
0
votes
1answer
52 views
+50

high 'total_worker_time' for stored proc using OPENQUERY in SQL Server 2005

[Cross posted from the Database Administrators site, in the hope that it may gain better traction here. I'll update either site as appropriate.] I have a stored procedure in SQL Server 2005 (SP2) ...
0
votes
1answer
18 views

How to use replace in openquery SQL?

I need to remove Special characters from columns which has them from linked server using OpenQuery. Here is the example, but it's not working DECLARE @Query VARCHAR(MAX) SET @Query = ' ...
0
votes
1answer
40 views

UPDATE OPENQUERY failure

I'm getting an error in the following OPENQUERY statement that I'm trying to execute against a MySql database from SQL Server. UPDATE OPENQUERY(MYWPDB, 'SELECT total FROM wp_tt WHERE id = 112121') ...
0
votes
0answers
36 views

Calling an Oracle stored procedure that uses a ref cursor as an out param through SQL Server OPENQUERY call

I have a stored procedure in Oracle that uses a ref cursor as an out parameter. CREATE OR REPLACE PROCEDURE DOCSADMIN.GET_DOCS_SP ( ID IN NUMBER, out_DATA OUT SYS_REFCURSOR ) AS BEGIN OPEN ...
0
votes
1answer
139 views

Openquery SQL how to check if exists?

I am using sql OPENQUERY to check if record exist passing parameter update it, if not insert a new record. Here is what I have so far DECLARE @sql VARCHAR (8000) DECLARE @Id VARCHAR(20) SET @Id= ...
0
votes
0answers
126 views

How to pass parameter to open query? [closed]

Possible Duplicate: including parameters in OPENQUERY I have an openquery like the one you see below. UPDATE OPENQUERY (OracleSvr, 'SELECT name FROM joe.titles WHERE id = 101') SET name = ...
0
votes
1answer
100 views

Open query in hibernate exception

I am using struts2 and hibernate for development. The Java Code i used to run my open query is as follows String hql ="insert into "+"OPENQUERY(OracleLinkedServer, \'SELECT * FROM ...
0
votes
3answers
178 views

How to make WHERE clause case insensitive: From SQL Server querying Oracle linked server

We have a MS SQL Server 2005 installation that connects to an Oracle database through a linked server connection. Lots of SELECT statements are being performed through a series of OPENQUERY() ...
0
votes
1answer
411 views

Calling parameterized stored procedure in OpenQuery - SQL Server 2008

I am calling a stored procedure in OpenQuery and passing parameters to the stored procedure. declare @Src nvarchar(max),@Tgt nvarchar(max) declare @sql_str nvarchar (4000) set @Src = ...
0
votes
1answer
174 views

Dynamic sql query from MS SQL to MySQL

I have 2 dbs one on MS SQL and another on Mysql. I have written some sql scriots which fetch data from Mysql and insert into MS SQL. To do this I have set up device driver connection and linked server ...
0
votes
2answers
122 views

Select From SQL Server Stored Procedure Resutls

I am migrating several hundred stored procedures from one server to another, so I wanted to write a stored procedure to execute an SP on each server and compare the output for differences. In order ...
0
votes
1answer
103 views

executing mdx within and sql query on a local cube

I am trying to get a series of ids from a local cube to piggy back off of the dynamic security, however I can't seem to figure out how to do this. I have tried openquery, but when I try that I get an ...
0
votes
1answer
154 views

Equivalent option like openquery of SQL server in MySQL

Is there similar kind of option like "OpenQuery" used in SQL server in MySQL. Actually I need to operate the database residing in another server using MYSQL Command. If there is any option, please ...
0
votes
1answer
404 views

SQL SP_EXECSQL @VAR to run a “dynamic” OpenQuery

I have an OpenQuery (Used in SQL2005 to run a query against a legacy database). I'm building the string to run so that I'll return the last 6 months of data. The problem I'm having is with '||' to ...
0
votes
0answers
307 views

Trigger with OpenQuery parameters (SQL Server - MySQL)

I have MySQL Linked server in SQL Server 2005, I coded a trigger on my SQL Server table to send some data to the MySQL Linked server. First, I had problem with my OPEN Query that could not accept ...
0
votes
1answer
216 views

TSQL Openquery with Text Field hangs up MS SqlServer

This happens when I query a text field using linked server. For example: select * from openquery(LS,'select text_field from table') then my server blows up! HELP?
0
votes
1answer
453 views

openquery update on linked server

I want to execute the following statement through from a linked server (openquery): UPDATE SAP_PLANT SET (OWNER, OWNER_COUNTRY) = (SELECT import.AFNAME, import.COUNTRY ...
0
votes
2answers
353 views

Linked Server Query Runs But Doesn't Finish?

June 29, 2010 - I had an un-committed action from a previous delete statement. I committed the action and I got another error about conflicting primary id's. I can fix that. So morale of the story, ...
0
votes
1answer
325 views

openquery issue in SQL Server

I am using SQL Server 2008 (let us call this source database server in this question discussion), and in SSMS, I have created a linked server to another SQL Server 2008 database (let us call this ...
0
votes
1answer
688 views

How to handle an empty result set from an OpenQuery call to linked analysis server in dynamic SQL?

I have a number of stored procedures structured similarly to this: DECLARE @sql NVARCHAR(MAX) DECLARE @mdx NVARCHAR(MAX) CREATE table #result ( [col1] NVARCHAR(50), [col2] INT, [col3] INT ) ...
0
votes
1answer
553 views

T-SQL OPENQUERY to MySQL - Insert ID

I am using OPENQUERY to do an insert from MSSQL 2005 to MySQL. How do I get at the last inserted id on the MySQL db back into my MSSQL procedure?
0
votes
2answers
700 views

Why does OPENQUERY not accept variables?

I am well aware that MS SQL Server does not allow variables to be used in the OPENQUERY statement and I'm aware of the workarounds. What I'd like to know is, does anyone know WHY variables or ...
0
votes
1answer
264 views

Sybase openqueries?

Does open query exist in sybase ? Or more generally, in sybase, what are the possible way to select among the result of a procedure (temporary tables, out params, others ??)
0
votes
1answer
1k views

T-SQL Indexing Service SQL openquery optimization

Scenario: I am using a T-SQL stored proc (Sql Server Management Studio) to return search matches for text documents using the MS Indexing Service and this (simplified) query: SELECT * FROM ...
0
votes
2answers
611 views

How to get around openquery defaulting columns to not null

I have a sql server pass-thru query like this: *select * into myTable from openquery (yourComputer, 'select x,y,z, from yourTable')* The problem is the columns in myTable are defaulting to not null ...
0
votes
3answers
1k views

Using the results of a query in OPENQUERY

I have a SQL Server 2005 database that is linked to an Oracle database. What I want to do is run a query to pull some ID numbers out of it, then find out which ones are in Oracle. So I want to take ...
0
votes
1answer
308 views

Making update to AS400 from SQL 2000

I'm trying to update something in AS400 from sql server 2000 through openquery like following. UPDATE OPENQUERY(odbcname, 'SELECT * FROM "libname"."filename" WITH NC') SET NBFLAG01=1 WHERE NBFLAG01 ...