从 Oracle 数据库中提取 100 K 图像的最快方法是什么?
我想到的选项是:
1) 基于 C# 控制台的应用程序将图像提取到 Windows 文件系统。
2)java应用程序在基于unix的文件系统上提取图像。
如果您能想到其他方法,请告诉我。大约有 101,234 条记录,每个 BLOB 列可能有一个 1 MB 到 6 MB 之间的文件。
The options I am thinking of are:
1) C# Console Based App to extract images to the windows file system.
2) java app to extract images on the unix based file system.
Any other method that you can think of, please let me know. There are approximately 101,234 records and each BLOB column may have a file between 1 MB to 6 MB.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想要速度,我建议您使用 PL/SQL 存储过程将图像直接保存到文件。它应该比外部程序更快
检查这个链接
If you want speed, I would recomend you to use a PL/SQL stored procedure to save the images to files directly. It should be quicker than an external program
Check this Link