Oracle表空间和用户的创建
1、plsql中,使用管理员账户登录
2、create tablespace test datafile 'D:\test.ora' size 1000m;--创建表空间,test为表空间名称
3、create user test identified by test default tablespace test quota 500m on users;--创建用户
--第一个test为用户名
--第二个test为密码
--第三个test为表空间名
4、grant all privileges to test;--进行授权
--test为用户名
5、用刚才创建的用户名test登录