Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
341 views

How do I create an ODBC connection to OracleXE using sp_addlinkedserver in MSSQL using a DSN-LESS connection string?

How do I create an ODBC connection using sp_addlinkedserver in SQL using a DSN-LESS connection string? I assume I am doing something wrong with syntax, here is how I set up the connection: EXEC ...
2
votes
1answer
686 views

Getting an Error on inserting data when using Linked Server Queries

UPDATE : The issue was col1 was hiereachyid type and even a select didnt work for it. Hi all, I am getting this error - Objects exposing columns with CLR types are not allowed in distributed ...
2
votes
5answers
2k views

SQL 2005 Linked Server Query Periodically Failing

We have a database running on SQL 2005. One of the store procedure looks up a user's email address from Active Directory using a linked server. The call to the linked server occurs in a database ...
1
vote
1answer
705 views

How to use a SQL2000 Linked Server to query an Oracle 11G table

Can someone help me construct the SQL that I need to query the Projects_dim table using the Linked Server "idwd"? To test the connection, I ran a sample query using the linked server name. To access ...
1
vote
1answer
686 views

Force addition/deletion of a linked server and correct syntax to import data into a table from Excel

I'm trying to create a linked server in Sql server 2008 R2, just tried downloading the '64-bit version of the Office 2010 Access AD Engine' exe from Microsoft. Unfortunately, I had tried adding a ...
1
vote
5answers
3k views

Fastest way to copy a single large (30,000 rows) table from one database to another?

I've got a large table in a SQL Server 2005 database and I'd like to copy it over to another database. What's the fastest way to do this? Is there a shortcut to linking servers and doing inserts?
0
votes
2answers
53 views

SQL Linked Server query with Parameters

I need to select value from SQL Linked Server & get it to loacal variable This is what I've written so far: DECLARE @SQLQUERY AS VARCHAR(1000) DECLARE @FINALQUERY AS VARCHAR(1000) DECLARE ...
0
votes
1answer
801 views

“ORA-01747: invalid user.table.column, table.column, or column specification”

I am trying to execute this query against Oracle linked server, and getting the following error, which I know that my query is malformed, but I couldn't figure out where and how. DECLARE ...
0
votes
1answer
1k views

how to setup an oracle 10 g linked server in sql server 2008 R2 (windows server 2008 R2) 64 bit

I need to setup a linked server on my new sql 2008 R2 server but there is no oracle data provider in providers list of my server and when I'm trying to install oracle client or oracle data provider ...
0
votes
2answers
497 views

Cannot get the data of the row from the OLE DB provider 'ProviderName' for linked server 'LinkedServerName'

I am running into this issue when I try to execute this query involving Linked Server to Oracle. Find the query underneath, SELECT DISTINCT Convert(nvarchar(100),A.ZIP_CD) ...
0
votes
3answers
208 views

Update linked SQL server with parameters

I have two linked SQL servers and i am trying to issue an update on the other server but am getting an error "Statement(s) could not be prepared.", followed by "Must declare the scalar variable ...
0
votes
1answer
352 views

ODBC Linked server in sql 2005 doesn’t work from remote box

I have a dev workstation with sql 2005 installed and in it I created a linked server to a odbc connection to a clarion database. I can run select statements against it inside sql Mgt studio. When I ...
0
votes
1answer
180 views

Performance issue while Querying the oracle database using linked server

I am connecting the oracle db server from sqlserver 2005 using linked server with microsoft oledb oracle drivers. Table present in the oracle db is having the DateTime Stamp. So i will be fetching ...
0
votes
1answer
288 views

Scripting a distributed transaction on SQL

Hello Im using SQL Server with distributed transaction on local Oracles Linked servers, as the following : GO BEGIN DISTRIBUTED TRANSACTION; SET XACT_ABORT off; GO SELECT MAX(DEPTNO)+1, ...
0
votes
4answers
412 views

How can “order by” change my results here? Using T-SQL, OPENQUERY, SELECT INTO

I have a scheduled AM process on SQL Server 2008 that imports data from Oracle using a linked server. I am overwriting the imported data from Oracle using drop table, then select into pattern ...
0
votes
1answer
3k views

how to create a linked server using ODBC correctly?

can someone please let me know the steps on creating a linked server using ODBC connection? thanks....
0
votes
3answers
2k views

Moving data between oracle and sql server using Linked server

I have set up Oracle Linked server on Sql Server 2005 box using Oracle provider oledb and its working fine from sql server 2005 to oracle 9i, i.e. When i run distributed query from sql server i get ...
0
votes
2answers
810 views

Teradata Linked Server in SQL 2005

I am trying to connect to Teradata using a Linked Server in SQL Server 2005. When I try to use SQL Server to connect using OPENQUERY, I get the following errors: Msg 7399, Level 16, State 1, Line 1 ...