optimize for unknown for SQL Server 2005?
Asked Answered
M

3

3

I was listening to the SO podcast and they mentioned Optimize For Unknown for SQL server 2008, they also mentioned that there was something similar for SQL Server 2005. Anyone know what this is?

Mikkel answered 16/3, 2009 at 15:31 Comment(0)
G
2

As @Mladen Prajdic mentioned, OPTIMIZE FOR UNKNOWN was only introduced in SQL Server 2008.

If you have reasonable knowledge of your query workload, OPTIMIZE FOR can be used to improve query plan caching:

http://blogs.msdn.com/sqlprogrammability/archive/2008/11/26/optimize-for-unknown-a-little-known-sql-server-2008-feature.aspx

http://decipherinfosys.wordpress.com/2007/10/23/optimize-for-query-hint-in-sql-server-2005/

Grissel answered 17/3, 2009 at 2:2 Comment(0)
T
2

I came across this question... I know it's almost a year old. But Inside a stored procedure you can use a local parameter to mimic the behavior of OPTIMIZE FOR UNKNOWN. See this related stackoverflow question.

Thresathresh answered 10/2, 2010 at 16:3 Comment(0)
M
1

in sql server 2005 you don't have the unknown option. so the only thing you can do is specify a value of somekind.

Millwright answered 16/3, 2009 at 16:23 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.