Skip to content

Commit 77496bc

Browse files
authored
Merge pull request #15266 from David-Engel/patch-3
Remove reference to missing content
2 parents 7e4ac83 + c24a32f commit 77496bc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/odbc/reference/dynamic-sql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Dynamic SQL | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "01/19/2017"
4+
ms.date: "06/03/2020"
55
ms.prod: sql
66
ms.prod_service: connectivity
77
ms.reviewer: ""
@@ -33,4 +33,4 @@ Although static SQL works well in many situations, there is a class of applicati
3333

3434
3. The program can use the EXECUTE statement repeatedly, supplying different parameter values each time the dynamic statement is executed.
3535

36-
Prepared execution is still not the same as static SQL. In static SQL, the first four steps of processing an SQL statement take place at compile time. In prepared execution, these steps still take place at run time, but they are performed only once; execution of the plan takes place only when EXECUTE is called. This helps eliminate some of the performance disadvantages inherent in the architecture of dynamic SQL. The next illustration shows the differences between static SQL, dynamic SQL with immediate execution, and dynamic SQL with prepared execution.
36+
Prepared execution is still not the same as static SQL. In static SQL, the first four steps of processing an SQL statement take place at compile time. In prepared execution, these steps still take place at run time, but they are performed only once; execution of the plan takes place only when EXECUTE is called. This helps eliminate some of the performance disadvantages inherent in the architecture of dynamic SQL.

0 commit comments

Comments
 (0)