Link to home
Start Free TrialLog in
Avatar of futureDBA
futureDBA

asked on

Anomalies in database link querying (Oracle to MS SQL Server 2005)

I have a database link from oracle to mssql using db4odbc / odbc32 (windows)

Problem 1,

When i do 

SELECT 
    *
  FROM Orderdetail@"DB"

query executes in 0.561 seconds..

when i do 

SELECT 
    *
  FROM Orderdetail@"DB" where "ItemNumber" = 10242;
This query was running for 10 minutes before i canceled it, (i know we have a itemnumber 10242

Open in new window


Problem 2
when i do 
SELECT 
    *
  FROM Customers@"DB";

I get
ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid column name 'A'. {42S22,NativeErr = 207}[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid column name 'RContactName'. 
ORA-02063: preceding 2 lines from DB
28500. 00000 -  "connection from ORACLE to a non-Oracle system returned this message:"

Open in new window



Problem 3

I have to use double quotes on "ColumnNames" in order to exectute query, I can't do ColumnNames, is there anyway to get rid of this?
Avatar of EugeneZ
EugeneZ
Flag of United States of America image

how fast does the query SELECT
    *
  FROM Orderdetail where ItemNumber = 10242;


run on sql server?  ItemNumber  may has no indexes or you run during busy hours and something is blocking  specially if the table is big.


about this one  run the query in Sql server first and try do not use * -
--
also you may check this

Accessing SQL Server from Oracle with Database Gateway for ODBC (DG4ODBC)

http://www.easysoft.com/applications/oracle/database-gateway-dg4odbc.html#config
ASKER CERTIFIED SOLUTION
Avatar of Qlemo
Qlemo
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of futureDBA
futureDBA

ASKER

i ran the same query

one via oracle (Sql Developer) one straight from the MS SQL Server using Toad for SQL,

Oracle execution time = 84.998 seconds
MSSQL execution time = 0.0051 seconds

SELECT
    *
  FROM Orderdetail@"DB" where "ItemNumber" = 10242
Can you execute the query on MSSQL without the double quotes?
yes, in mssql (via toad) I can do

SELECT * FROM Orderdetail where itemnumber = 10242
Then I guess you have issues with the dblink, using ODBC. Then you might want to switch to Ole DB, which can use Native Driver, and allows for better support of datatypes and objects.
hsolesql, which is the corresponding application (to be used in the PROGRAM section of the HS listener file), is desupported meanwhile, but can be used nevertheless. You have to create a .UDL file containing:
[oledb]
Provider=SQLOLEDB.1;Password=Pwd;Persist Security Info=True;User ID=Usr;Initial Catalog=TheDB;Data Source=TheMSSQLInstance;Application Name=Orace-Gateway 

Open in new window

Then create a hs/admin/init«OLE-SID».ora file as copy of the corresponding template in that folder (renaming your ODBC one, of course), and enter the full path and name of above UDL file with forward slashes.
More info about the "old" HS methods: http://docs.oracle.com/cd/B19306_01/server.102/b14232/gencon.htm