博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数据库基础环境查看
阅读量:6034 次
发布时间:2019-06-20

本文共 1296 字,大约阅读时间需要 4 分钟。

hot3.png

select * from v$version;

select * from dba_registry_database;
select  instance_name,host_name,version,status,database_status from v$instance;
select dbms_utility.port_string from dual;

-----------查看数据版本

select * from dba_registry;

-----------查看数据库安装的组件

select protection_mode, protection_level, remote_archive, database_role, dataguard_broker,guard_status

  from v$database;

-----------是否配置了dataguard

select log_mode from v$database;

-----------查看数据库是否启用了归档模式;

select flashback_on from v$database;

-----------是否起用了flashback database特性

select force_logging,supplemental_log_data_min, supplemental_log_data_pk, supplemental_log_data_ui,

  supplemental_log_data_fk, supplemental_log_data_all
  from v$database;

-----------是否启用了force logging和补充日志

select * from v$controlfile; --------控制文件的组成;

select l.group#, lf.type, lf.member, l.bytes, l.status LOG_STATUS, lf.status LOGFILE_STATUS
  from v$log l, v$logfile lf
  where l.group# = lf.group#
  order by 1,3; -------------REDO LOG日志文件

 

select owner, object_type, COUNT(*)

  from dba_objects
  where status = 'INVALID'
  group by owner, object_type;        ---------数据库中无效对象

select name,phyrds,phywrts,readtim,writetim
from v$filestat a,v$dbfile b
where a.file# = b.file#
order by readtim desc              ----------查看频繁读写的表空间

转载于:https://my.oschina.net/sansom/blog/178867

你可能感兴趣的文章
bzoj1565【NOI2009】植物大战僵尸(最小割)
查看>>
iphone-common-codes-ccteam源代码 CCDelete.h
查看>>
详解java定时任务
查看>>
Servlet 读取web.xml文件中的配置参数连接数据库
查看>>
For each循环中使用remove方法。
查看>>
Ajax 知识
查看>>
学习JAVA自我总结
查看>>
Codeforces D - The Child and Zoo
查看>>
数据结构与算法
查看>>
小小小游戏
查看>>
windows ntp安装及调试
查看>>
MYSQL 备份用户权限
查看>>
上传和设置Mime类型
查看>>
使用python处理selenium中的鼠标悬停问题
查看>>
071:【Django数据库】ORM聚合函数详解-Avg
查看>>
Hadoop在安装snappy过程中的问题
查看>>
py 的 第 7 天
查看>>
Bounce(弹走绵羊)lct裸题
查看>>
BZOJ3238 [Ahoi2013]差异
查看>>
mybatis的动态sql中collection与assoction
查看>>