Oracle导出问题
cmd:
exp bla/bla file=c:\bla.bkp
我的 bla 模式在对象中
Table
T_1
T_2
T_3
T_4
Functions
F_1
F_2
Procedure
P_1
P_2
我需要所有对象但不在表中 (T_4) 如何制作?
cmd:
exp bla/bla file=c:\bla.bkp
my bla schema in objects
Table
T_1
T_2
T_3
T_4
Functions
F_1
F_2
Procedure
P_1
P_2
I need all object but not in table ( T_4 ) how to make ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是已弃用的导出实用程序,则无法排除单个对象。您必须在 TABLES 子句中指定您想要的每个表,即
显然,这很快就会变得难以处理。您可以编写一个查询来为您生成表列表,然后复制并生成表列表。从 SQL*Plus 窗口粘贴。但这也相当笨拙。
但是,假设您使用的是相当新的 Oracle 版本,您应该能够使用导出和导入实用程序 expdp 的数据泵版本。与expdp
If you are using the deprecated export utility, you cannot exclude a single object. You would have to specify every table that you wanted in a TABLES clause, i.e.
Obviously, that gets unwieldy rather quickly. You can potentially write a query that generates the tables list for you and then copy & paste from a SQL*Plus window. But that is also rather unwieldy.
Assuming you are using a reasonably new version of Oracle, however, you should be able to use the data pump version of the export and import utilities, expdp. With expdp
您可以在命令行中指定感兴趣的表,例如
“好吧,它只获取表”,其余的东西您将不得不使用/编写其他内容。查看
在此处输入代码
dbms_metadata.GET_DDL 过程,You can specify teh tables of interest n the command line, something like
Ok, that only gets tables, the rest of the stuff you are going to have to use/write something else. Look at the
enter code here
dbms_metadata.GET_DDL procedure,