Oracle 将包含数据、触发器、序列的自定义表导出到 dmp 文件中
主题说明了一切,我需要将包含数据、触发器和序列的自定义表导出到 dmp 文件中。
exp SYSTEM/password FULL=y FILE=dba.dmp LOG=dba.log CONSISTENT=y
此示例有助于导出所有数据库,但我需要导出自定义对象。 也许有人可以告诉我该怎么做?
谢谢。
topic says all, i need to export custom tables with data, triggers and sequences into dmp file.
exp SYSTEM/password FULL=y FILE=dba.dmp LOG=dba.log CONSISTENT=y
This example helps to export all database, but i need to export custom objects.
Maybe someone can tell me how to do that?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要创建一个参数文件来指定要包含的表。
下面是一个示例:
然后运行 expdb 实用程序,指定参数文件路径:
这将导出 table1、table2 和 table3 以及关联的序列、数据和触发器。
You need to create a parameter file which specifies the tables that you want to include.
Here is an example:
Then run the expdb utility, specifying your parameter file path:
That will export table1, table2 and table3 with associated sequences, data and triggers.