标签:
创建表空间
create tablespce test datafile ‘D:\TEST01.ora‘;
创建用户
create user test identified by test01;
给用户授权
grant create table,unlimited tablespace to test;--还可以授权 select insert 等等...
解锁账户
先用有dba权限的账户登录 ,或者在命令行 sqlplus /nolog 然后 connect / as sysdba 连接数据库
然后 alter user test account unlock; --给账户解锁。
标签:
原文地址:http://my.oschina.net/u/1429362/blog/504307