Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to limit SQL Server Developer Edition to features found in more restrictive versions?

Essentially, we're developing for mostly SQL Server Web Edition for some databases and SQL Server Standard Edition for others. We'd like to prevent the possibility of introducing a feature such as vardecimal in development if it won't be supported in the staging (and consequently production) versions.

Ideally there would be an option similar to compatibility level.

Thanks!

like image 337
BlackjacketMack Avatar asked Nov 12 '22 23:11

BlackjacketMack


1 Answers

There is no such feature from Microsoft, but Kimble Group strongly advise in their The Microsoft Data Warehouse Toolkit to push the code through test or UAT environments (hopefully through continuous integration) where the version/edition would match the production. That of course relies on the assumption that most often this is the deployment strategy anyway.

like image 111
bartover Avatar answered Nov 15 '22 06:11

bartover