oracle 12c查询数据库名、实例名等

时间:2021-12-03 21:42:29
C:\Users\example>sqlplus / as sysdba


SQL*Plus: Release 12.1.0.2.0 Production on 星期一 8月 22 11:12:14 2016


Copyright (c) 1982, 2014, Oracle.  All rights reserved.




连接到:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing opt
ions


--查询数据库名
SQL> show parameter db_name


NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------

db_name                              string      hyhis

--查询实例名

SQL> show parameter instance_name


NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------

instance_name                        string      hyhis

--查询数据库域名

SQL> show parameter domain


NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------

db_domain                            string

--查询数据库服务器

SQL> show parameter names


NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
global_names                         boolean     FALSE

service_names                        string      hyhis

--查询数据库服务名

SQL> show parameter service_name


NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
service_names                        string      hyhis

SQL>