如何增加Oracle SQL Developer中的缓冲区大小以查看所有记录?

前端之家收集整理的这篇文章主要介绍了如何增加Oracle SQL Developer中的缓冲区大小以查看所有记录?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何增加Oracle sql Developer中的缓冲区大小以查看所有记录(默认情况下似乎设置了一定的限制)?任何屏幕截图和/或提示都将非常有帮助。
https://forums.oracle.com/forums/thread.jspa?threadID=447344

相关部分内容如下:

There’s no setting to fetch all records. You wouldn’t like sql
Developer to fetch for minutes on big tables anyway. If,for 1
specific table,you want to fetch all records,you can do Control-End
in the results pane to go to the last record. You could time the
fetching time yourself,but that will vary on the network speed and
congestion,the program (sql*Plus will be quicker than sql Dev because
it’s more simple),etc.

工具栏上还有一个“全部获取”按钮。

FWIW请仔细检索所有记录,对于非常大的记录集,可能会导致您有各种内存问题。

据我所知,sql Developer在后台使用JDBC来获取记录,并且JDBC setMaxRows()过程设置了限制,如果你可以改变这个(可能不受支持),那么你可以改变sql Developer行为。

原文链接:https://www.f2er.com/oracle/205871.html

猜你在找的Oracle相关文章