如何从sql执行windows批处理命令?
你好
我编写了一个 Windows 批处理命令,可对存储在 Oracle 数据库中的视频文件进行操作。对这些视频文件执行此批处理命令的最佳方法是什么?
我能想到的一种方法是使用 sql 脚本将视频文件拉到临时文件夹中,并编写另一个程序(可能是在 java 中),对这些文件执行批处理命令并将结果存储在单独的文件夹中或提交到数据库中。
感谢您的建议。
HI
I have written a windows batch command that operates on video files which are stored on a oracle database. What is best way to execute this batch command on those video files ?
One way I can think of is to pull the video files to temporary folder using a sql script and write another program, maybe in java, to execute the batch command on those files and store the result in separate folder or commit in database.
Appreciate your suggestions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 DBMS_SCHEDULER 运行外部(可执行的)作业。
一个例子这里
不知道你的批处理文件从 Oracle“获取”视频文件。我将 BFILE 作为一种选择。
You can use DBMS_SCHEDULER to run external (executable) jobs.
An example here
Not sure how your batch file 'gets' the video files from Oracle. I'd look as BFILEs as one option.