-- The OPTION clause must be used with query hints (which are distinct from table hints)
select
*
from
dbo.FileAssetRepository t with (nolock)
OPTION (recompile, table hint(t, nolock))
↧