oracle数据库维护用到的查询语句合集

database

项目虽然完成了,但是需要自我扩充维护的基本知识!否则项目历练就白白浪费了!

 

1.查看控制文件

select name from v$controlfile;

2.查看日志文件

select member from v$logfile;

3.查看数据库版本

select version from product_component_version 
where substr(product, 1, 6) = "Oracle";

4.查看数据库日期以及归档方式

select created, log_mode, log_mode from v$database;

 

 

待续。。。。(持续更新)

 

Reference:

https://www.cnblogs.com/lipera/p/6201434.html

以上是 oracle数据库维护用到的查询语句合集 的全部内容, 来源链接: utcz.com/z/531688.html

回到顶部