- 最后登录
- 2014-10-23
- 在线时间
- 3 小时
- 威望
- 0
- 金钱
- 4
- 注册时间
- 2012-8-2
- 阅读权限
- 10
- 帖子
- 6
- 精华
- 0
- 积分
- 0
- UID
- 664
|
5#
发表于 2012-8-2 23:05:57
可以手动在test库中把表空间创建好,我想你的test库和exp库在同一个机器上吧
在exp库运行以下脚本
- select 'create tablespace '
- ||tablespace_name||
- ' datafile '''||replace(file_name,'exp','test')||
- ''' size '||bytes/1024/1024||'M autoextend on maxsize 10238m;' from dba_data_files
- where tablespace_name not in ('SYSTEM','SYSAUX','TEMP','USERS','UNDOTBS');
复制代码 |
|