LazyStudent,
What does the article that you provided the link give me, in terms of an answer to my question.
By the way, is MDAC 2.1+ a requirement for my linked server to work?
Thanks.
Main Topics
Browse All TopicsI want to set up a linked server on SQL Server 2000 which is running on a Win2k Advance Server.
The linked server I want to setup is required to link to an Oracle 7 database that is sitting on a WinNT4.0 server.
Below is what I have done on the SQL Server server.
1. Installed the Oracle client version 7.3.4
2. Setup the linked server on SQL Server - I am using MS OLE DB Provider for Oracle as the Provider name.
3. Although setting up the linked server gives me no problem, clicking on either TABLEs or VIEWS in this linked server gives me the error above (in the title - Error 7399: ...).
Is there something that I am missing out that will make my linked server to work? Your help will be appreciated.
Rochus
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Hi,
This is my experience for installing link server for oracle, for your reference only.
Mine is using Oracle 9i, i think it should be no problem with other versions; Also i am using Microsoft ODBC for Oracle:
1. tnsnames.ora
Install Oracle 9i Client
Modify the tnsnames.ora under c:\orant\network\admin
MOON81.XXXX.COM =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = moon)(PORT = 1521))
)
(CONNECT_DATA =
(SERVICE_NAME = moon81)
)
)
moon81 =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS =
(PROTOCOL = TCP)
(Host = moon)
(Port = 1521)
)
)
(CONNECT_DATA = (SID = moon81)
)
)
Notes:
1. This is Oracle 9i client, so got to have both Service_name and SID
tnsping moon81
2. set up link server
EXEC sp_addlinkedserver @server = 'moon', @srvproduct = 'MSDASQL', @provider = 'MSDASQL',
@provstr = 'DRIVER={Microsoft ODBC for Oracle};SERVER=moon81;UID=
go
sp_addlinkedsrvlogin 'moon', false, NULL, 'readonly', 'readonly'
Good luck!!!
rmission: Article tells about problem fields.
Oracle 8.x-specific data types, such as CLOB, BLOB, BFILE, NCHAR, NCLOB, and NVARCHAR2, are not supported.
( sure your database contains some text or nvarchar fields )
The Unicode feature against Oracle 7.x and 8.x servers is not supported.
( this is about nvarchar or ntext fields )
If you have some batch statetements in VIEWS or stored procs - it not supported also.
and this article contains
HOW TO: Set Up and Troubleshoot a Linked Server to Oracle in SQL Server
http://support.microsoft.c
I thought it would be very helpful for you.
Thanks to both LazyStudent and xxq4813. My problem is now fixed. And yes, the fix included:
1. Installing Oracle7 Client on the SQL Server machine
2. Setting up alias in TNSNAMES.ORA that pointed to the Oracle instance I wanted to link to.
3. Installing MDAC 2.7 (2.5 would have suffice in my case too).
I have decided to share the 400 points equally among LazyStudent and xxq4813.
Thanks again.
rmission:
This old question needs to be finalized -- accept an answer, split points, or get a refund. For information on your options, please click here-> http:/help/closing.jsp#1
EXPERTS:
Post your closing recommendations! No comment means you don't care.
Business Accounts
Answer for Membership
by: LazyStudentPosted on 2003-02-02 at 16:03:55ID: 7864714
INFO: Limitations of Microsoft Oracle ODBC Driver and OLEDB Provider om/default .aspx?scid =kb;EN- US; Q244661
http://support.microsoft.c