Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Sybase 中的 APPLICATIONNAME 用于信息模式查询(当前连接、慢查询等),因此结果不仅包含线程/进程 ID,还包含对负责给定查询的应用程序的更易读的描述。
mysql中有没有等价的?我的 google fu 让我失望了
在一个 SQL 电子邮件列表(list.prog.hu 中的 sq-l)上,我得到的答案是不,这在 MySQL 上不受支持,但一个相对常见的解决方法是在每个 SQL 语句前面加上一个描述性注释来标识发出应用程序。
例如:
/* cms_blog_module */ select * from blog_posts where id = ....
这样,无论查询在哪里,它的来源也都存在