停止 sqlldr

发布于 2024-12-24 21:15:52 字数 85 浏览 1 评论 0原文

我有一个使用 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 技术交流群。

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

发布评论

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

评论(1

书信已泛黄 2024-12-31 21:15:52

如果您只是终止 sqlldr 进程,您可能会遇到一些问题:

  • 如果提交行数很小,您可能已经提交了数据,现在必须将其删除。如果您在使用前截断表,这可能并不重要,但清理是一个取决于您的系统的操作问题。
  • 如果提交行数和文件大小很大,那么您可能会遇到回滚段太小或回滚本身需要很长时间才能完成的问题(如果您使用直接路径,则不应出现问题)。

您可以如上所述使用 kill -9 终止会话,也可以从数据库中终止会话:

alter system kill session 'sid,serial#';

如果您使用的是 Windows,则可以使用 orakill 实用程序。

A few issues you can run into if you just kill the sqlldr process:

  • If the number of commit rows is small you may have data already-commited which will now have to be removed. This may not matter if you are truncating the tables before use but the cleanup is an operational issue that is dependent upon your system.
  • If the number of commit rows and the size of your file is large then you may get issues with the rollback segments being too small or the rollback itself taking a long time to complete (shouldn't an issue if you are using direct path).

You can kill using kill -9 as mentioned, or you can kill the session from within the database:

alter system kill session 'sid,serial#';

If you are using Windows then you can use the orakill utility.

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