10年工作经验,专研网站运维。
全部博文(454)
分类: 系统运维
2013-02-18 09:55:39
登录:
[oracle@crp2 ~]$ sqlplus /nolog
SQL> conn /as sysdba
1. 查看oracle TNS:
[oracle@testone crp_testone]$ cd /d01/oracle/crpdb/9.2.0/network/admin/crp_testone
[oracle@testone crp_testone]$ cat tnsnames.ora
2. 查询当前数据库名
SQL> select name from v$database;
NAME
---------
CRP
3. 查询数据库实例名
SQL> select instance_name from v$instance;
INSTANCE_NAME
----------------
crp
3. 查看用户所有的表:
SQL> select table_name from user_tables;
select table_name from dba_tables where owner='USERNAME';
4. 查看数据库中所有用户:
5. 查看数据库版本:
SQL> select * from product_component_version;6、查看数据库状态:
SQL> select status from v$instance;SQL> select open_mode from v$database;
OPEN_MODE
----------
READ WRITE
7. 查询数据库服务名(service name)
SQL> select name from v$database;8. 查询Global name
SQL> select global_name from global_name;