Elmah and SQL Server 90 compatibility mode

The script for configuring the SQL Server database for Elmah has a warning saying that the database is designed to work in SQL Server 80 compatibility mode (SQL Server 2000). Does anyone know if there are problems running the script to create the database in the compatibility mode database.

+3
source share
2 answers

There are no known problems running the script on server 90 (2005) or 100 (2008), so you can remove this line from the script if you want. This is simply because it has not been officially tested 100%

We are using it on the SQL 2005 server at the moment, but will soon update to 2008.

+5
source

I am using Elmah with Sql Server 2008 R2 without any problems.

+4
source

Source: https://habr.com/ru/post/1710192/


All Articles