我正在尝试使用ASE添加login triggers
,同时遵循此site,一切正常。但是如下所述,我收到了一个ct_result()错误,我可以更改错误吗?
CT-LIBRARY error:
ct_results(): network packet layer: internal net
library error: Net-Library operation terminated due to
disconnect
When this happens, the ASE errorlog will contain a message like:
EXECUTE permission denied on object my_proc, database my_db, owner dbo
我想要的是将消息更改为Permission Denied,联系支持。我能做到吗
答案 0 :(得分:0)
在您提供的链接中,Rob Verschoor谈到了此错误消息。
1)您是否在ASE日志文件中看到任何错误消息?
2)您是否已授予my_proc存储过程的权限,例如:?
grant execute on my_proc to <user/role>
go
示例:
grant execute on my_proc to public
go