Windows Server 2008 上的批处理作业

发布于 2024-11-05 16:04:53 字数 239 浏览 2 评论 0原文

我需要设置一个批处理作业来定期(假设每分钟)监视 SQL 表并检查是否有数据要处理。如果有,那么它应该调用脚本来处理数据。在调用处理脚本之前,还需要检查是否已经发生相同的过程。如果当前正在进行相同的过程,则它将停止,否则仅处理数据。

在 LAMPP 环境中,我只需创建一个 PHP 脚本来进行处理,设置一个 cron 作业来调用该脚本并将 cron 作业设置为每分钟运行一次。

在 .NET 环境中执行此操作的最佳方法是什么?谢谢。

I need to setup a batch job that monitor an SQL table regularly (let's say every minute) and check if there is data to process. If there is then it should call a script to process the data. Before calling the processing script, it also needs to check if the same process has been happening. If the same process is currently going on then it stops, otherwise just process the data.

In LAMPP environment, I would just create a PHP script to do the processing, setup a cron job to call the script and set the cron job to run every minute.

What's the best approach to do this in .NET environment? Thank you.

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

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

发布评论

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

评论(1

叫嚣ゝ 2024-11-12 16:04:53

创建控制台应用程序,然后使用 Windows 任务计划程序对其进行计划。

或者,创建一个持续运行的 Windows 服务,并使用计时器按一定时间间隔运行处理程序,或者使用 SqlDependency 在表更改时运行处理程序。

Create a console application, then schedule it using Windows Task Scheduler.

Alternatively, create a Windows Service that runs continually, and either use a timer to run a handler at an interval, or use a SqlDependency to run your handler whenever the table changes.

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