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.
我想知道Query Store站在哪里,存储执行计划、运行时统计信息?我研究了 SQL Server 如何编译、执行查询以及查询存储在哪一部分工作以及它是如何工作的。但我无法获得足够的信息,它的位置以及存储所有信息的最大尺寸功能。
谢谢
如果启用了查询存储,SQL 将信息存储在系统数据库视图中,您可以查询这些视图以检索查询存储的配置和状态。
SELECT actual_state_desc, desired_state_desc, current_storage_size_mb, max_storage_size_mb, readonly_reason FROM sys.database_query_store_options;
或查看全部
SELECT * FROM sys.database_query_store_options;