使用 PL/SQL,向客户端代码发送大量数据有哪些好的选择?

发布于 2024-07-19 04:45:41 字数 148 浏览 7 评论 0 原文

使用 PL/SQL,向客户端代码发送大量数据有哪些好的选择?

详细来说,服务器端 PL/SQL 对请求进行操作并生成包含大量数据的响应,这些数据必须发送到客户端代码。 是否有“好的选择”来发送大量数据? 这里需要重点考虑哪些类型的 Oracle 优缺点?

Using PL/SQL, what are good options for sending large amounts of data to client side code?

To elaborate, server side PL/SQL operates on a request and generates a response with a large amount of data that must be sent to the client side code. Are there "good options" for sending down large amounts of data? What types of Oracle pros/cons are important to consider here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

﹂绝世的画 2024-07-26 04:45:41

当您想要返回大量数据时,您遇到的两个问题是:

  • 带宽问题
  • 内存问题(在服务器和客户端)

如果可能,您应该尝试流式传输数据,而不是一次返回全部数据。 您将占用相同的带宽,但峰值使用量较少,并且可以防止内存问题(至少在服务器上,这取决于您的客户端实现如何使用内存)。

Oracle 通过管道函数提供流支持。 您可以在此处此处

The two problems you have when you want to return large amounts of data are:

  • bandwidth issues
  • memory issues (both at the server and the client)

If in any way possible, you should attempt to stream the data instead of returning it all at once. You will occupy the same bandwidth but there is less peak usage and you prevent memory issues (at least at the server, it depends on your client implementation how memory is used over there).

Oracle provides streaming support through pipelined functions. You can find examples here and here.

剑心龙吟 2024-07-26 04:45:41

没有好的选择,总是尝试向客户端发送最小量的数据。 您的数据库和网络将感谢您!

如果您可以随着时间的推移发送小块,那会比一次转储所有内容更好。

there are no good options, always try to send the smallest amount of data to the client. your database and network will thanks you!

if you can send small chunks spread over time, that would be better that dumping everything at once.

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