使用DBCA建库,Global Database Name为:prod.origtec.com SID:prod
An Oracle database is uniquely identified by a Global Database Name,typically of the form “name.domain”
Global Database Name:
A database is referenced by at least one Oracle instance which is uniquely identified form any other instance on this computer by an Oracle System identifier(SID).
Configure Enterprise Manager这里不选择,安装完数据库后,使用netca创建监听。
下面使用netca创建监听,每一步我都截图吧;
图1
图2
(For remote connections to be made to your Oracle database you must have at least one Oracle Net listener)
图3
图4
图5
图6
图7
图8
图9
Each Oracle database or service has a service name. An Oracle database’s service name is normally its global database name.Enter the service name of the database or other service you want to access.
图10
图11
图12
图13
图14
Change Login,输入Password
图15
图16
Enter a name for this net service name.
The Oracle Net Configuration Assistant has default the net service name to be the same as the service name you entered earlier.
图17
图18
图19
图20
主机名为secondary.origtec.com
使用netca创建了监听和本地网络服务,会在$ORACLE_HOME/network/admin下分别生成listener.ora和tnsnames.ora
开始创建完数据库,这下面是没有listener.ora和tnsnames.ora的;当然如果选择configuration Enterprise Manager的话必须要创建监听,创建监听了就会生成listener.ora.
Oracle的版本为:
先来测试下网络配置是否正常吧
1).监听要启动
2).使用sys和system账户
sqlplus sys/[email protected] as sysdba
sqlplus system/[email protected]
成功!!!
conn sys/[email protected] as sysdba
conn system/[email protected]
失败!!!
那现在,我们来看看listener.ora和tnsnames.ora的具体内容
listener.ora
LISTENER 这是默认的名字,其他的好像也没啥,ADDRESS中的PROTOCOL和HOST、PORT很容易理解
最后有个ADR_BASE_LISTENER = /u01/app/oracle
官方文档的解释:
(http://docs.oracle.com/cd/E11882_01/network.112/e10835/listener.htm#NETRF420)
ADR_BASE_listener_name
Purpose
To specify the base directory in to which tracing and logging incidents are stored when ADR is enabled.
Defult
The default is ORACLE_BASE, or ORACLE_HOME/log if ORACLE_BASE is not defined.
Values
Any valid directory path to a directory with write permisson.
Example
ADR_BASE=/oracle/network/trace
关于ADR的enabled查看:
SELECT NAME,VALUE FROM V$DIAG_INFO;
再来看看tnsnames.ora
第10行(SERVICE_NAME = prod.origtec.com),这里的prod.origtec.com就是Global Database Name,上面图10所示,Service Name
第4行的PROD是图17中的Net Service Name
所以conn sys/[email protected] as sysdba中的prod是Net Service Name,当然大小写不同,换成大写试下,应该也是可以的。
正确语法:
connect username/[email protected]_service_name
我一直的错误是建立tnsnames.ora时,Service Name直接写成prod,其实没在意我建库时Global Database Name是prod.origtec.com,和SID不同,SID是prod
Global Database Name=数据库名+数据库域名
SID:
查询数据库服务名:
图10中的Service Name
Net_Service_Name除了在tnsnames.ora查看,暂时没找到其他方法查看。
下面这段来源于:http://www.2cto.com/database/201110/108457.html
介绍了全局数据库名(Global Database Name)和SID、服务名的等等
“
数据库实例名与ORACLE_SID
虽然两者都表是oracle实例,但两者是有区别的。instance_name是oracle数据库参数。而ORACLE_SID是操作系统的环境变量。ORACLD_SID用于与操作系统交互,也就是说,从操作系统的角度访问实例名,必须通过ORACLE_SID。在winnt不台,ORACLE_SID还需存在于注册表中。
且ORACLE_SID必须与instance_name的值一致,否则,你将会收到一个错误,在unix平台,是“ORACLE not available”,在winnt平台,是“TNS:协议适配器错误”。
“
以上使用的origtec.com域名,拥有者是苏州溯源天成信息技术服务有限公司。