Skip to content

Latest commit

 

History

History
59 lines (43 loc) · 1.47 KB

File metadata and controls

59 lines (43 loc) · 1.47 KB
title sp_unprepare (Transact-SQL)
description Discards the execution plan created by the `sp_prepare` stored procedure.
author markingmyname
ms.author maghan
ms.reviewer randolphwest
ms.date 06/23/2025
ms.service sql
ms.subservice system-objects
ms.topic reference
f1_keywords
sp_cursor_unprepare_TSQL
sp_cursor_unprepare
helpviewer_keywords
sp_unprepare
dev_langs
TSQL
monikerRange >=aps-pdw-2016 || =azure-sqldw-latest || >=sql-server-2016 || >=sql-server-linux-2017 || =azuresqldb-mi-current

sp_unprepare (Transact-SQL)

[!INCLUDE sql-asdbmi-asa-pdw]

Discards the execution plan created by the sp_prepare stored procedure. sp_unprepare is invoked by specifying ID = 15 in a tabular data stream (TDS) packet.

Syntax

sp_unprepare handle
[ ; ]

Arguments

[!INCLUDE extended-stored-procedures]

handle

The handle value returned by sp_prepare. handle is int.

Examples

The following example prepares, executes, and unprepares a basic statement.

DECLARE @P1 AS INT;

EXECUTE sp_prepare
    @P1 OUTPUT, N'@P1 NVARCHAR(128), @P2 NVARCHAR(100)',
    N'SELECT database_id, name FROM sys.databases WHERE name = @P1 AND state_desc = @P2';

EXECUTE sp_execute @P1, N'tempdb', N'ONLINE';

EXECUTE sp_unprepare @P1;

Related content