- I've made a backup of a SqlServer database running on SqlServer 2008. 2.I've restored that backup into a SqlServer 2012 instance.
- I've set the compatibility level on the restored instance to Sql Server 2012 (110).
What does this do to the database? Does it, for example, 1. cause stored procedures to be examined for incompatibilities 2. cause any updates to all of the data pages in the database 3. Cause updates to to datapages as the are accessed in the future 4. Cause errors in the future if stored procedures or views are executed that use incompatible syntax
Where in books on line, or else where, can I find more detail?