create tablespace test datafile ‘c:\test.ora’ size 15000m;
create user test identified by test default tablespace test quota 15000m on users;
3. 成功创建用户后,进行授权。输入
执行该语句给test用户授权,此时test用户就可以登录了。
执行下面语句
如果还是不行的话执行下面语句
imp system/system@test file=c:\database\1.dmp
两种方法,一种是为表空间增加数据文件:
另一种方法是增加表空间原有数据文件尺寸:
————————————————————————–
可以先将其offline
将磁盘上的数据文件一同删除
删除用户:
如果用户的schema中有objects ,需要加cascade参数,即drop user xxx cascade;
