线上无小事
发布时间:2019-09-19 16:35:43
--1、查看表空间的名称及大小 SELECT t.tablespace_name, round(SUM(bytes / (1024 * 1024)), 0) ts_size FROM dba_tablespaces t, dba_data_files d WHERE t.tablespace_name = d.tablespace_name GROUP BY t.tablespace_name; --2、查看表空间物理文件的名称及大小 SELECT tablespace_name.........【阅读全文】
发布时间:2019-09-19 16:13:16
select * from v$log; select * from v$logfile; alter system switch logfile; select * from v$log_history; select dbid,name,created,log_mode from v$database; select recid,stamp,thread#,sequence#,name from v$archived_log; alter database add logfile group 1.........【阅读全文】
发布时间:2019-09-19 16:09:58
查看日志文件组状态信息 select group#,status from v$log; inactive:非活动状态 current:当前正在被使用 active:活动的非当前日志,该日志可能已经完成归档,也可能没有归档,活动的日志文件在crash恢复时会被用到 unused:日志从未被使用 上图表名数据库正在使用日志文件组3.........【阅读全文】