0

我有一个负载非常高的 Oracle 服务器。我想选择具有数百万行数据的大表并使用 SQL Developer 下载数据。如何在对生产数据库的性能影响很小的情况下做到这一点?

4

1 回答 1

0

使用 oracle 的导出工具从表中最有效地转储数据。例子

exp user/password tables=mytable query="optional where clause here" 

请注意,您必须安装 oracle 客户端才能使用它。

于 2013-04-03T18:45:40.270 回答