一些讓人忽略的oracle維護命令

來源:互聯網
上載者:User

  對象許可權

  select owner,

  table_name,

  grantor,

  privilege,

  grantable,

  hierarchy,

  'TABLE' /*o.*/ object_type

  from dba_tab_privs p

  where p.grantee = 'HR'

  order by p.owner, p.table_name;

  角色

  select granted_role, admin_option, default_role

  from dba_role_privs

  where grantee = 'HR'

  order by granted_role;

  系統許可權

  select privilege, admin_option

  from dba_sys_privs

  where grantee = 'HR'

  order by privilege;

  資料表空間限額

  select * from dba_ts_quotas where username = 'SYSMAN' order by tablespace_name;

  使用者或系統角色對應的許可權

  select * from role_sys_privs where role = 'RESOURCE'

  資料庫所有的系統許可權名稱

  select DISTINCT NAME from system_privilege_map t WHERE T.NAME LIKE '%SELECT%'

  df -h 磁碟空間使用率

  show parameter log_archive_format

  查看使用者的概要檔案

  select username, profile from dba_users where username='SCOTT';

  查看相應概要檔案的各項設定

  select resource_name, limit from dba_profiles where profile = 'DEFAULT';

  修改相應的概要檔案選項

  ALTER PROFILE "DEFAULT" LIMIT CONNECT_TIME 30; 最大連線時間30分鐘

  ALTER PROFILE "DEFAULT" LIMIT FAILED_LOGIN_ATTEMPTS 3; 最大登入嘗試次數 3次

  rman 啟動自動備份控制檔案功能

  show all;

  CONFIGURE CONTROLFILE AUTOBACKUP clear; #清除設定 恢複為預設值

  configure controlfile autobackup on; #設定為自動備份控制檔案

  CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 30 DAYS; #修改保留原則為保留30天

  backup archivelog all; 備份歸檔日誌

  backup tablespace users; 備份users資料表空間

  backup datafile 3; 備份資料檔案

  backup incremental level 0 database; 零級備份

  backup incremental level 1 database; 一級差異增量

  backup incremental level 1 cumulative database format '/oradata/bak/dblevel1.bak'; 一級累計增量

  backup as compressed backupset datafile 4; 以壓縮方式備份資料檔案 4

  歸檔空間滿時的處理辦法

  rm *.arc 先用作業系統命令手工刪除部分歸檔檔案

  rman target /

  change archivelog all validate;

  delete noprompt expired archivelog all;

  RUN { EXECUTE SCRIPT b_whole_10; } 執行rman的指令碼

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.