Orcale create user

-- 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;

posted @ 2017-10-13 09:47  生锈的大砍刀  阅读(107)  评论(0)    收藏  举报