ORACLE中导表语句中touser何意?
发布网友
发布时间:2022-05-05 23:15
我来回答
共2个回答
热心网友
时间:2022-05-06 00:44
fromuser就是把当前的dmp文件中的某一个用户下的数据取出。
touser就是把现在dmp文件中的数据导入到目标库的指定用户下。
具体命令这样。
exp userid=system/manager owner=username1 file=expfile.dmp
imp userid=system/manager fromuser=username1 touser=username2 ignore=y file=expfile.dmp full=y