How SID is different from Service name in Oracle tnsnames.ora(SID 与 Oracle tnsnames.ora 中的服务名称有何不同)
问题描述
为什么我需要两个?当我必须使用一种或另一种时?
Why do I need two of them? When I have to use one or another?
推荐答案
引用 @DAC
简而言之:SID = 的唯一名称您的数据库,ServiceName = 使用的别名连接时
In short: SID = the unique name of your DB, ServiceName = the alias used when connecting
不完全正确.SID = INSTANCE 的唯一名称(例如在机器上运行的 oracle 进程).Oracle 将数据库"视为成为文件.
Not strictly true. SID = unique name of the INSTANCE (eg the oracle process running on the machine). Oracle considers the "Database" to be the files.
服务名称 = 实例(或多个实例)的别名.这样做的主要目的是,如果您正在运行一个集群,客户端可以说将我连接到 SALES.acme.com",DBA 可以即时更改实例的数量可用于 SALES.acme.com 请求,甚至将 SALES.acme.com 移动到完全不同的数据库,而无需客户端更改任何设置.
Service Name = alias to an INSTANCE (or many instances). The main purpose of this is if you are running a cluster, the client can say "connect me to SALES.acme.com", the DBA can on the fly change the number of instances which are available to SALES.acme.com requests, or even move SALES.acme.com to a completely different database without the client needing to change any settings.
这篇关于SID 与 Oracle tnsnames.ora 中的服务名称有何不同的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:SID 与 Oracle tnsnames.ora 中的服务名称有何不同
基础教程推荐
- 带有WHERE子句的LAG()函数 2022-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- 带更新的 sqlite CTE 2022-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
