停止 sqlldr
我有一个使用 sqlldr 加载数据的进程。 但有时由于系统中的其他因素,它不会在合理的时间内停止。有没有办法安全地杀死 sqlldr。使用kill -9。
I have a process that load data using sqlldr.
But sometimes due to other factors in the system it does not stop in a reasonable amount of time. Is there a way to kill sqlldr safely. Using kill -9.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只是终止 sqlldr 进程,您可能会遇到一些问题:
您可以如上所述使用
kill -9
终止会话,也可以从数据库中终止会话:如果您使用的是 Windows,则可以使用 orakill 实用程序。
A few issues you can run into if you just kill the sqlldr process:
You can kill using
kill -9
as mentioned, or you can kill the session from within the database:If you are using Windows then you can use the orakill utility.