**
1,oracle有时候导入表dmp文件时,是存在于某个表空间中,若导入到的新数据库中没有该表空间,则会出错
所以每次导入时,先检查表空间是否存在,否则自己创建
create tablespace dp_dataloggingdatafile 'D:\oracle\product\10.2.0\orcl\dp_data.dbf'size 50Mautoextend on next 50M maxsize 20480Mextent management local;
**
本文共 292 字,大约阅读时间需要 1 分钟。
**
1,oracle有时候导入表dmp文件时,是存在于某个表空间中,若导入到的新数据库中没有该表空间,则会出错
所以每次导入时,先检查表空间是否存在,否则自己创建
create tablespace dp_dataloggingdatafile 'D:\oracle\product\10.2.0\orcl\dp_data.dbf'size 50Mautoextend on next 50M maxsize 20480Mextent management local;
**
转载于:https://www.cnblogs.com/qingmaple/p/4188322.html