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 中的服务名称有何不同
基础教程推荐
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- oracle区分大小写的原因? 2021-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- 在多列上分布任意行 2021-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
