You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm told that for our database using the following syntax is hurting performance:
SELECT FROM table WHERE field = N'...'
Because the field is a varchar (not unicode), being compared to a nvarchar value (unicode) is causing a performance hit.
Looking at the Quoting module it doesn't look like there is a way to override this behavior. Does it make sense to disable it when enable_default_unicode_types is false?