|
|
呵呵,这几天正在做系统的接手工作
个人感觉在RDA的基础上还需要一下的信息需要收集:
select username,account_status,default_tablespace,temporary_tablespace,profile,to_char(created,'yyyy-mm-dd hh24:mi:ss')
from dba_users order by created;
select * from dba_profiles order by 1;
select job_name,to_char(start_date,'yyyy-mm-dd hh24:mi:ss'),enabled from Dba_Scheduler_Jobs order by 3,2;
select * from v$controlfile_record_section;
col comp_id for a30
col comp_name for a30
col version for a30
col status for a30
select comp_id,comp_name,version,status from dba_registry order by 4;
select * from dba_sys_privs where grantee='<user_name>';
select * from dba_tab_privs where grantee='<user_name>';
select * from dba_role_privs where grantee='<user_name>';
select * from dba_role_privs order by grantee;
select * from role_sys_privs order by role;
select * from role_tab_privs order by role;
conn system -- 测试 system 密码 |
|