怎么在PL/SQL中新建一个用户?并且用这个用户能够登录。
这个新建的用户要能导入数据库。
这个新建的用户要能导入数据库。
2015-06-26
--创建用户 create user username identied by password; --权限 grant create session to username;--登录权限 grant unlimited tablespace to username;--使用表空间的权限 grant create table to username;--授予创建表的权限 grant drop table to username;--授予删除表的权限 grant insert table to username;--插入表的权限 grant update table to username;--修改表的权限 --这些权限应该可以满足以上要求
举报