我一直在 windows 命令提示符中使用此语句来导入 .dmp 文件。 'full' 这个词在这里是什么意思?

I have been using this statement in windows command prompt for importing .dmp files . what does the word 'full' mean here?

我一直在 windows 命令提示符中使用此语句来导入 .dmp 文件。 'full' 这个词在这里是什么意思?

imp me_user/password_me file='C:\Users\user\Desktop\file.dmp' full=Y

要导入转储文件的全部内容,请使用 FULL=Y 参数,如下所示:

imp userid=system/manager file=my_dump.dmp full=y log=imp.log

请仔细阅读以下 link:-

Use FULL=Y to get entire contents of the DUMP file

用户 (me_user) 和表空间将在您的数据导入到的新位置使用 full 选项设置为 Y 自动创建。

在 Oracle 数据库中有许多模式,例如 hr、scott、system 和 sys 等。

If I am importing single user then i will use imp hr/hr file='C:\Users\user\Desktop\file.dmp' log=file='C:\Users\user\Desktop\hr-imp.lo

所以上面的语句只会导入hr用户。

如果我使用 full=y

imp system/manager file='C:\Users\user\Desktop\file.dmp' log=file='C:\Users\user\Desktop\full-imp.log full=y

现在将自动导入所有四个用户(hr、scott、system 和 sys)。