Install SQL Server Syntax

Can I install SQL Server 2008 R2 for ANSI SQL-92 syntax only?

So, when I execute a query using the ANSI SQL-89 syntax, it will show some error.

If so, how to do it?

Thanks at Advance

+3
source share
2 answers

No, but you can track the use of deprecated features with a performance counter and event tracking of deprecated SQL Server objects. You will not receive real-time warnings, but you do not want this, it can break your applications. Instead, you just want to keep track of which code you need to fix.

+1
source

Do not think so

sp_configure , . .

-1

All Articles