当数据库记录写入 postgres 时运行 shell 脚本
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 PL/sh 编写触发函数。这就是它的用途。
Write a trigger function using PL/sh. That's what it's for.
您可能可以使用规则或触发器并为支持它的任何 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.