导出某个命名空间所有表:
exp 'XXXXX/"YYYYYYYY"' compress=N buffer=65536 full=y file=/home/oracle/XXXXX.dmp
导入某个命名空间所有表:
imp 'XXX/"YYY"' file=/home/oracle/1.dmp fromuser=XXX touser=XXX;
查询命名空间以及存储路径:
select t1.name,t2.name from v$tablespace t1,v$datafile t2 where t1.ts# = t2.ts#;