sp_query_store_remove_plan (Transact-SQL)sp_query_store_remove_plan (Transct-SQL)
適用対象:Applies to: SQL Server 2016 (13.x)SQL Server 2016 (13.x)
SQL Server 2016 (13.x)SQL Server 2016 (13.x)
Azure SQL データベースAzure SQL Database
Azure SQL データベースAzure SQL Database
Azure SQL Managed InstanceAzure SQL Managed Instance
Azure SQL Managed InstanceAzure SQL Managed Instance
SQL Server 2016 (13.x)SQL Server 2016 (13.x)
SQL Server 2016 (13.x)SQL Server 2016 (13.x)
Azure SQL データベースAzure SQL Database
Azure SQL データベースAzure SQL Database
Azure SQL Managed InstanceAzure SQL Managed Instance
Azure SQL Managed InstanceAzure SQL Managed Instance
クエリストアから1つのプランを削除します。Removes a single plan from the query store.
Transact-SQL 構文表記規則
Transact-SQL Syntax Conventions
構文Syntax
sp_query_store_remove_plan [ @plan_id = ] plan_id [;]
引数Arguments
[ @plan_id = ] plan_id
削除するクエリプランの id を指定します。[ @plan_id = ] plan_id
Is the id of the query plan to be removed. plan_id は bigint,、既定値はありません。plan_id is a bigint, with no default.
リターン コードの値Return Code Values
0 (成功) または 1 (失敗)0 (success) or 1 (failure)
解説Remarks
アクセス許可Permissions
データベースに対する ALTER 権限が必要です。Requires the ALTER permission on the database.
例Examples
次の例では、クエリストア内のクエリに関する情報を返します。The following example returns information about the queries in the query store.
SELECT Txt.query_text_id, Txt.query_sql_text, Pl.plan_id, Qry.*
FROM sys.query_store_plan AS Pl
JOIN sys.query_store_query AS Qry
ON Pl.query_id = Qry.query_id
JOIN sys.query_store_query_text AS Txt
ON Qry.query_text_id = Txt.query_text_id ;
削除する plan_id を特定したら、次の例を使用してクエリプランを削除します。After you identify the plan_id that you want to delete, use the following example to delete a query plan.
EXEC sp_query_store_remove_plan 3;
参照See Also
sp_query_store_force_plan (Transact-sql) sp_query_store_force_plan (Transact-SQL)
sp_query_store_remove_query (Transact-sql) sp_query_store_remove_query (Transact-SQL)
sp_query_store_unforce_plan (Transact-sql) sp_query_store_unforce_plan (Transact-SQL)
sp_query_store_reset_exec_stats (Transact-sql) sp_query_store_reset_exec_stats (Transact-SQL)
sp_query_store_flush_db (Transact-sql) sp_query_store_flush_db (Transact-SQL)
クエリストアカタログビュー (Transact-sql) Query Store Catalog Views (Transact-SQL)
クエリのストアを使用した、パフォーマンスの監視Monitoring Performance By Using the Query Store