oracle创建用户

来源:互联网 发布:五笔for mac 编辑:程序博客网 时间:2024/06/17 15:45

oracle创建用户


方式1:

 

  上面4步都需要操作到位!!!


方式2:

把下面所有名为username和password单词改为你想要的用户名和密码
-- Create the user
create user username  IDENTIFIED BY password
  default tablespace SYSTEM
  temporary tablespace TEMP
  profile DEFAULT;
-- Grant/Revoke role privileges
grant connect to username;
grant resource to username;
-- Grant/Revoke system privileges
grant unlimited tablespace to username;


0 0