|
- select * from v$log;
- select d.RESETLOGS_CHANGE#, d.CHECKPOINT_CHANGE# ,d.CURRENT_SCN from v_$database d ;
- select * from v$logfile;
- select d.NAME from v_$database d;
- select * from v$database_incarnation;
- select * from v$datafile;
- alter tablespace users online;
- select d.FILE# ,d.NAME ,d.STATUS ,d.CHECKPOINT_CHANGE# from v_$datafile d;
- select t.table_name, t.tablespace_name from dba_tables t where t.owner='HR' and t.table_name='TBIG';
- select * from v$controlfile;
复制代码
|
|