溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

oracle DBA如何實(shí)現(xiàn)角色重建

發(fā)布時(shí)間:2021-11-11 11:43:42 來源:億速云 閱讀:169 作者:小新 欄目:關(guān)系型數(shù)據(jù)庫

這篇文章給大家分享的是有關(guān)oracle DBA如何實(shí)現(xiàn)角色重建的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。

由于誤操作,在pl/sql developer中直接將公司測試數(shù)據(jù)庫服務(wù)器中DBA 角色給刪除了,導(dǎo)致system用戶建立普通用戶的權(quán)限丟失,只好協(xié)助其重建,通過晚上查看資料,過程如下:

-- Create the role
oracle DBA如何實(shí)現(xiàn)角色重建create role DBA;
oracle DBA如何實(shí)現(xiàn)角色重建-- Grant/Revoke object privileges
oracle DBA如何實(shí)現(xiàn)角色重建grantexecuteon DBMS_DBVERIFY to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grantexecuteon DBMS_DEFER_QUERY to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grantexecuteon DBMS_DEFER_SYS to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grantexecuteon DBMS_FEATURE_USAGE to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grantexecuteon DBMS_FLASHBACK to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grantexecuteon DBMS_MONITOR to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grantexecuteon DBMS_RESUMABLE to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grantexecuteon DBMS_SERVER_ALERT to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grantexecuteon DBMS_SERVER_TRACE to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grantexecuteon DBMS_SERVICE to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grantexecuteon DBMS_STORAGE_MAP to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grantexecuteon DBMS_UADV_ARR to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grantexecuteon DBMS_UNDO_ADV to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grantexecuteon DBMS_WORKLOAD_REPOSITORY to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grantexecuteon LOAD_UNDO_STAT to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grantselect, insert, update, delete, alteron MAP_OBJECT to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grantexecuteon OUTLN_EDIT_PKG to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grantexecuteon OUTLN_PKG to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grantexecuteon RESET_UNDO_STAT to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建-- Grant/Revoke role privileges
oracle DBA如何實(shí)現(xiàn)角色重建grant delete_catalog_role to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grant execute_catalog_role to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grant exp_full_database to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grant gather_system_statistics to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grant imp_full_database to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grant java_admin to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grant java_deploy to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grant olap_dba to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grant scheduler_admin to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grant select_catalog_role to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grant wm_admin_role to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建grant xdbadmin to DBA;
oracle DBA如何實(shí)現(xiàn)角色重建-- Grant/Revoke system privileges
oracle DBA如何實(shí)現(xiàn)角色重建grant administer any sql tuning setto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grant administer databasetriggerto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grant administer resource manager to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grant administer sql tuning setto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grant advisor to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalterany cluster to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalterany dimension to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalterany evaluation context to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalteranyindexto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalterany indextype to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalterany library to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalterany materialized viewto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalterany outline to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalteranyprocedureto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalterany role to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalteranyruleto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalteranyrulesetto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalterany sequence to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalterany sql profile to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalteranytableto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalteranytriggerto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalterany type to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalterdatabaseto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalter profile to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalter resource cost to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalterrollback segment to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalter session to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalter system to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalter tablespace to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantalteruserto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grant analyze anyto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grant analyze any dictionary to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grant audit anyto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grant audit system to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantbackupanytableto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grant become userto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grant comment anytableto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateany cluster to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateany context to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateany dimension to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateany directory to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateany evaluation context to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateanyindexto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateany indextype to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateany job to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateany library to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateany materialized viewto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateany operator to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateany outline to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateanyprocedureto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateanyruleto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateanyrulesetto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateany sequence to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateany sql profile to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateany synonym to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateanytableto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateanytriggerto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateany type to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateanyviewto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreate cluster to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreatedatabase link to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreate dimension to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreate evaluation context to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreate indextype to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreate job to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreate library to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreate materialized viewto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreate operator to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateprocedureto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreate profile to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreatepublicdatabase link to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreatepublic synonym to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreate role to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreaterollback segment to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateruleto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreaterulesetto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreate sequence to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreate session to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreate synonym to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreatetableto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreate tablespace to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreatetriggerto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreate type to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateuserto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantcreateviewto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grant debug anyprocedureto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grant debug connect session to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantdeleteanytableto DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grant dequeue any queue to DBA with admin option;
oracle DBA如何實(shí)現(xiàn)角色重建grantdropany cluster to DBA with admin option;

感謝各位的閱讀!關(guān)于“oracle DBA如何實(shí)現(xiàn)角色重建”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI