Oracle 新建用户并附dba权限
-- Create the user
create user glpmpp
identified by "glpmpp"
default tablespace USERS
temporary tablespace TEMP
profile DEFAULT;
-- Grant/Revoke role privileges
grant connect to glpmpp;
grant dba to glpmpp;
grant resource to glpmpp;
-- Grant/Revoke system privileges
grant create any table to glpmpp;
grant unlimited tablespace to glpmpp;

浙公网安备 33010602011771号