Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Linking SQL7 to Oracle 2

Status
Not open for further replies.

rchalker

Programmer
Jul 10, 2001
4
US
How can I link SQl7 to Oracle using T-SQL? I keep getting a 7399 error message.
 

You can add a linked server in SQL 7 using the sp_addlinkedserver stored procedure.

EXEC sp_addlinkedserver
@server = 'Servername',
@srvproduct = 'Oracle',
@provider = 'MSDAORA',
@datasrc = 'MyServer'

Terry Broadbent
Please review faq183-874.

"The greatest obstacle to discovery is not ignorance -- it is the illusion of knowledge." - Daniel J Boorstin
 
Problem import data from Oracle using scheduled DTS package.
I used OLEDB Oracle provide to run a scheduled DTS job, got an error saying the Oracle client is needed.
I then used the ODBC Oracle driver, I got the job running forever and never ends.
Using either of these I was able to run the DTS package right away but not as a scheduled job.
Please help and thanks!
 
zhongd,

Please post your question in a new thread. New questions should always be posted in a new thread unless very closely related to the subject of the existing thread. Your question is only loosely related to the thread. Terry L. Broadbent - DBA
Computing Links:
faq183-874 contains "Suggestions for Getting Quick and Appropriate Answers" to your questions.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top