我们可以查看SQL Server中所有查询的日志,如MySQL常规查询日志吗? 如何实现这一目标?
答案 0 :(得分:0)
是。 您可以尝试下面的查询
SELECT *
--use only text to see relevant query information
FROM
sys.dm_exec_query_stats stats
CROSS APPLY
sys.dm_exec_sql_text(stats.sql_handle)
-- Note that this is a function which takes in sql_handle as parameter
编辑:您可以在DBA SO网站上看到类似的问题
https://dba.stackexchange.com/questions/4043/can-i-see-historical-queries-run-on-a-sql-server-database