当数据库记录写入 postgres 时运行 shell 脚本

发布于 2024-12-12 04:04:28 字数 86 浏览 0 评论 0原文

postgres 中是否有某种机制可以在写入数据库记录时触发 shell 脚本?我可以编写一个脚本来监视数据库和表,但在这样做之前我想确保没有“更好”的方法。

Is there some mechanism in postgres that can fire off a shell script when a database record is written? I can write a script to just monitor the database and table but before doing that I wanted to make sure there wasn't a "better" way.

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

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

发布评论

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

评论(2

时光与爱终年不遇 2024-12-19 04:04:28

使用 PL/sh 编写触发函数。这就是它的用途。

Write a trigger function using PL/sh. That's what it's for.

寻梦旅人 2024-12-19 04:04:28

您可能可以使用规则或触发器并为支持它的任何 PL 启动 shell 脚本,但我认为更好的方法是使用它来发送通知并从单独的进程监视它。

You can probably use rule or trigger and start your shell script for whatever PL that supports it, but I think the better way is to use it for sending notification and monitor it from a separate process.

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