gpt4 book ai didi

mysql - 如何显示其他用户创建的过程?

转载 作者:行者123 更新时间:2023-11-29 06:49:03 25 4
gpt4 key购买 nike

我可以通过执行以下命令来获取过程列表:

show procedure status where Db='test1';

通常,我们可以通过执行以下命令来获取 CREATE 语法:

show create procedure sampleProcedure1;

但是CREATE procedure显示为空。是否有任何解决方法可以获取过程的原始CREATE

最佳答案

来自 MySQL documentation :

To use either statement, you must be the user named in the routine DEFINER clause or have SELECT access to the mysql.proc table. If you do not have privileges for the routine itself, the value displayed for the Create Procedure or Create Function field will be NULL.

因此,解决方案是授予用户 SELECT 访问 mysql.proc 的权限:

GRANT SELECT on mysql.proc TO 'user'@'hostname'

用户主机名替换为适当的值。

关于mysql - 如何显示其他用户创建的过程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48218384/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com