| title | sp_query_store_unforce_plan (Transact-SQL) | ||||
|---|---|---|---|---|---|
| description | Enables unforcing a previously forced plan for a particular query in the Query Store. | ||||
| author | markingmyname | ||||
| ms.author | maghan | ||||
| ms.reviewer | randolphwest | ||||
| ms.date | 09/23/2025 | ||||
| ms.service | sql | ||||
| ms.subservice | system-objects | ||||
| ms.topic | reference | ||||
| ms.custom |
|
||||
| f1_keywords |
|
||||
| helpviewer_keywords |
|
||||
| dev_langs |
|
||||
| monikerRange | =azuresqldb-current || >=sql-server-2016 || >=sql-server-linux-2017 || =azuresqldb-mi-current || =fabric-sqldb |
[!INCLUDE sqlserver2016-asdb-asdbmi-fabricsqldb]
Enables unforcing a previously forced plan for a particular query in the Query Store.
:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions
sp_query_store_unforce_plan
[ @query_id = ] query_id ,
[ @plan_id = ] plan_id ,
[ @replica_group_id = ] 'replica_group_id'
[ ; ]
[!INCLUDE extended-stored-procedures]
The ID of the query. @query_id is bigint, with no default.
The ID of the query plan that will no longer be enforced. @plan_id is bigint, with no default.
You can unforce plans on a secondary replica when Query Store for readable secondaries is enabled. Execute sp_query_store_force_plan and sp_query_store_unforce_plan on the primary replica. Using the @replica_group_id argument defaults to the local replica where the command is being executed, but you can specify a replica_group_id referencing the sys.query_store_plan_forcing_locations system catalog view.
0 (success) or 1 (failure).
Requires the ALTER permission on the database.
Query Store for secondary replicas is supported starting in [!INCLUDE sssql25-md] and later versions, and in Azure SQL Database. For complete platform support, see Query Store for secondary replicas.
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
INNER JOIN sys.query_store_query AS qry
ON pl.query_id = qry.query_id
INNER JOIN sys.query_store_query_text AS txt
ON qry.query_text_id = txt.query_text_id;After you identify the query_id and plan_id that you want to unforce, use the following example to unforce the plan.
EXECUTE sp_query_store_unforce_plan 3, 3;- sys.query_store_replicas (Transact-SQL)
- sys.query_store_plan_forcing_locations (Transact-SQL)
- sp_query_store_force_plan (Transact-SQL)
- sp_query_store_remove_plan (Transact-SQL)
- sp_query_store_remove_query (Transact-SQL)
- sp_query_store_reset_exec_stats (Transact-SQL)
- sp_query_store_flush_db (Transact-SQL)
- Query Store catalog views (Transact-SQL)
- Monitor performance by using the Query Store
- Best Practice with the Query Store