oracle数据库信息如何获取?
1、取得instance信息
取得当前连接的instance名,主机名,启动时间等
select instance_name, host_name, version, startup_time from v$instance ;
2、取得 DBID
select * from v$database ;
3、取得拥有 dba 权限的用户
select * from v$pwfile_users ;
4、取得系统版本信息
select * from product_component_version;
5、取得可选软件的安装情况
select * from v$option;