Why do I need two of them? When I have to use one or another?
|
feedback
|
|
@DAC
Not strictly true.. SID = unique name of the INSTANCE (eg the oracle process running on the machine). Oracle considers the "Database" to the be files. 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. | |||
|
feedback
|
|
Please see: http://www.sap-img.com/oracle-database/finding-oracle-sid-of-a-database.htm
In short: SID = the unique name of your DB instance, ServiceName = the alias used when connecting | ||||
|
feedback
|
|
As per Oracle Glossary : SID is a unique name for an Oracle database instance. ---> To switch between Oracle databases, users must specify the desired SID <---. The SID is included in the CONNECT DATA parts of the connect descriptors in a TNSNAMES.ORA file, and in the definition of the network listener in the LISTENER.ORA file. Also known as System ID. Oracle Service Name may be anything descriptive like "MyOracleServiceORCL". In Windows, You can your Service Name running as a service under Windows Services. You should use SID in TNSNAMES.ORA as a better approach. | |||
|
feedback
|