我收到了SQL Profiler跟踪长持续时间的查询。有很多工作需要15秒,但探查器会将查询文本报告为:
--*Statement text is removed ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
在什么情况下,探查者会使用以下声明审查文本:
声明文字已删除
在SQL Server 2000的旧时代,如果遇到Profiler:
SELECT Username, Password FROM Users WHERE UserID = 42
它将审查文本:
-- 'password' was found in the text of this event.
-- The text has been replaced with this comment for security reasons.
但从SQL Server 2005开始删除了。
今天还能触发什么?