Oracle 建立監控賬戶 提高工作效率

來源:互聯網
上載者:User

為了把事情變成簡單化,我在多個Oracle資料上建立統一的檢查資料庫賬戶,並且賬戶只能訪問特定的幾個視圖(需要查詢的sql已產生視圖),具體做法如下:

root>sqlplus / as sysdba
用DBA的許可權進入資料庫,需要建立一個賬戶
http://www.jb51.net/article/20367.htm

SQL>create user dbmonitor identified by "ty_sd_s";
給賬戶授權
SQL>grant connect,resource to dbmonitor;

此賬戶執行的指令碼轉換成視圖 複製代碼 代碼如下:SQL> drop view vstablespace;
SQL> create view vstablespace as
(
select
a.tablespace_name "TABLESPACE",
sum(a.bytes) SUM ,
sum(b.bytes) FREE ,
sum(b.bytes)/sum(a.bytes)*100 PRECENTFREE
from
dba_data_files
a,dba_free_space b
where
a.file_id=b.file_id
group by a.tablespace_name
)

給使用者賦予select試圖的許可權
SQL>grant select on vstablespace to dbmonitor ;

如此下來,這個使用者只能查看此數圖,不能改動其他的,就可以保證資料庫的安全了

退出,再用建立的oracle賬戶登入
root>sqlplus dbmonitor/"ty_sd_s" as sysdba;
進入之後查看使用者所賦予的許可權
SQL>select * from user_tab_privs;

從這裡看到只用建立視圖的許可權
SQL>select * from sys.vstablespace ;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.