Understanding SQL Server Simple and Forced Parameterization

I have heard about parameterization for SQL Server queries, but what is Forced and Simple Parameterization and which one should I use for my SQL Server database?

There are two different parameterization options that one can use in SQL Server. Simple parameterization and Forced parameterization. Let’s discuss each one in a little more detail.

Simple Parameterization

When you execute a SQL statement without parameters, SQL Server internally will add parameters where needed so that it can try to reuse a cached execution plan. For example, if you look at the execution plan of the following statement you will see that SQL Server changes the WHERE value to a parameter (@1):

 

Simple Parameterization

SQL Server builds this execution plan as if a parameter was the input instead of the number 11. Because of this parameterization, the following two statements show an example of SQL Server reusing the same execution plan even though the data results are different:

 

SQL Server builds this execution plan as if a parameter was the input

This is the default behavior for Simple parameterization, however, it only applies to a small class of queries. If you want all your queries parameterized, you will need to enable the option, Forced parameterization.

Forced Parameterization

Forced parameterization is when the database engine parameterizes any literal value that appears in a SELECT, UPDATE, INSERT, or DELETE statement submitted in any form, but there are a few exceptions.  Refer to this article for a list of these exceptions.

Some applications use queries that pass in literals as opposed to stored procedures that pass in parameters. For these type of applications you may want to experiment with enabling Forced parameterization to see if it has a positive effect on the workload by reducing query compilations.

Running the following query in Simple parameterization produces the following execution plan where the WHERE clause is not parameterized:

unning the following query in Simple parameterization produces the following execution plan

After enabling Forced parameterization and running the same query we get the following execution plan where the execution plan is parameterized:

enabling Forced parameterization

Keep in mind that in some cases when the data in a table is highly skewed, Forced parameterization may cause a suboptimal plan to be reused, thus degrading performance.

Enabling Parameterization

To determine the current setting of parameterization you can run the following query:

  • 1 indicates Forced
  • 0 indicates Simple

To enable Parameterization you can use the following ALTER DATABASE statements:

…Or you can use SSMS.  Right click on the database then go to Properties, Options, Parameterization as shown below:

you can use SSMS. Right click on the database, Properties, Options, Parameterization

Using Plan Guides

After testing your workload you may find that Forced parameterization seems to work better for your SQL Server, but you notice a few statements that aren’t performing well that were optimized before you made the parameterization change. In this case, you could use a plan guide to change such statements to use Simple parameterization. The following is an example of where a query will perform better using Simple parameterization:

To learn more about how to use a SQL Server Plan Guide check the article here.

Things to remember
  • Setting parameterization to FORCED flushes all query plan from cache except for those that are currently running, compiling, or recompiling.
  • Setting the parameterization option will not lock the database and doesn’t require restarting the SQL service.
  • When restoring a database, the parameterization option is preserved.

Want me to do this for you? Drop me a line: itgalaxyzzz {at} gmail [dot] com