-- 创建用户 create user WQ identified by "123456" default tablespace SYSTEM temporary tablespace TEMP profile DEFAULT; -- 连接到SYS用户下去授权 grant execute on SYS.DBMS_ALERT to WQ; grant execute on SYS.DBMS_AQ to WQ with grant option; grant execute on SYS.DBMS_AQADM to WQ with grant option; grant execute on SYS.DBMS_AQELM to WQ with grant option; grant execute on SYS.DBMS_AQ_IMPORT_INTERNAL to WQ with grant option; grant execute on SYS.DBMS_DEFER_IMPORT_INTERNAL to WQ; grant execute on SYS.DBMS_REPCAT to WQ; grant execute on SYS.DBMS_RULE_EXIMP to WQ with grant option; grant execute on SYS.DBMS_SQL to WQ; grant execute on SYS.DBMS_SYS_ERROR to WQ; grant execute on SYS.DBMS_SYS_SQL to WQ; grant execute on SYS.DBMS_TRANSFORM_EXIMP to WQ with grant option; grant select, insert, update, delete, references, alter, index on SYS.INCEXP to WQ; grant select, insert, update, delete, references, alter, index on SYS.INCFIL to WQ; grant select, insert, update, delete, references, alter, index on SYS.INCVID to WQ; grant select on WMSYS.WM$UDTRIG_INFO to WQ; grant aq_administrator_role to WQ with admin option; grant dba to WQ with admin option; grant unlimited tablespace to WQ with admin option;
oracle给用户sys权限,oracle创建用户并赋予sys角色权限
最新推荐文章于 2021-11-10 21:46:01 发布
本文档详细介绍了如何在Oracle数据库中创建用户并授予各种权限的过程。这些权限包括执行特定数据库管理包的权利以及对系统表的增删改查等操作。此外,还展示了如何赋予用户管理员角色和无限表空间权限。

318

被折叠的 条评论
为什么被折叠?



