话不多说直接上SQL语句。
create user apt
identified by "apt"
default tablespace users
temporary tablespace temp
profile default
account unlock;
grant create procedure to apt;
grant create view to apt;
grant select any table to apt;
grant create table to apt;
grant create session to apt;
grant create sequence to apt;
GRANT "DBA" TO apt;
alter user apt quota unlimited on users;
本文提供了创建Oracle数据库用户的SQL语句,并详细展示了如何为新创建的用户授予多种权限,包括创建过程、视图、表、序列等,以及授予DBA角色。
91

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



