Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use the Oracle Provider for OLE DB driver to create a script for a sqlserver linked server

2025-03-30 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

Editor to share with you how to use the Oracle Provider for OLE DB driver to create a sqlserver link server script, I believe that most people do not know much about it, so share this article for your reference, I hope you will learn a lot after reading this article, let's go to know it!

Execute the following in the master library:

-- set up a database link server

EXEC sp_addlinkedserver

@ server = named Oraclelinkbones,-- the alias of the linked server to be created

@ srvproduct=N'Oracle',-- Product name

@ provider=N'OraOLEDB.Oracle',-- name of the OLEDB driver

@ datasrc=N'ORCLDB'-data source oracle "ora10g" network "admin" tnsnames.ora view

EXEC sp_addlinkedsrvlogin

'Oraclelink',-the name of the linked server that has been established

'false',-fixed * /

NULL,-- write a user name * / if you use this linked server for each user who logs in to SQL SERVER.

'reader',-account number (oracle)

'123456'- password

Exec sp_serveroption 'Oraclelink','rpc out','true'

Exec sp_serveroption 'Oraclelink','rpc','true'

-- these two open rpc,rpc out, which defaults to False, and can be used to change distributed transactions remotely. (if there is a distributed transaction operation must be set)

Execute the query statement against the remote end of the oracle in sqlserver:

Select * from openquery (ORACLEDB,'select * from all_users')

The above is all the contents of the article "how to create a script for a sqlserver linked server using the Oracle Provider for OLE DB driver". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report