Oracle导出问题

发布于 2024-10-21 05:17:46 字数 215 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

如果您使用的是已弃用的导出实用程序,则无法排除单个对象。您必须在 TABLES 子句中指定您想要的每个表,即

exp username/password file=c:\bla.dmp tables=(T_1, T_2, T_3)

显然,这很快就会变得难以处理。您可以编写一个查询来为您生成表列表,然后复制并生成表列表。从 SQL*Plus 窗口粘贴。但这也相当笨拙。

但是,假设您使用的是相当新的 Oracle 版本,您应该能够使用导出和导入实用程序 expdp 的数据泵版本。与expdp

expdp username/password dumpfile=c:\bla.dmp exclude=T_4

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.

exp username/password file=c:\bla.dmp tables=(T_1, T_2, T_3)

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

expdp username/password dumpfile=c:\bla.dmp exclude=T_4
高冷爸爸 2024-10-28 05:17:46

您可以在命令行中指定感兴趣的表,例如

exp bla/bla file=c:\bla.bkp TABLES=(T_1,T_2,T_3)

“好吧,它只获取表”,其余的东西您将不得不使用/编写其他内容。查看在此处输入代码dbms_metadata.GET_DDL 过程,

You can specify teh tables of interest n the command line, something like

exp bla/bla file=c:\bla.bkp TABLES=(T_1,T_2,T_3)

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 heredbms_metadata.GET_DDL procedure,

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文