Try changing the compatibility level. worked for me.
Check at what level he
USE VJ_DATABASE; GO SELECT compatibility_level FROM sys.databases WHERE name = 'VJ_DATABASE'; GO
Then make it compatible with the old version
ALTER DATABASE VJ_DATABASE SET COMPATIBILITY_LEVEL = 110; GO
- 100 = Sql Server 2008
- 110 = Sql Server 2012
- 120 = Sql Server 2014
By default, Sql Server 2014 will only change the compatibility of db versions from 2014, using @@ version , which you must specify in which version of Sql Server.
Then run the command above to change its version.
An additional step: make sure that the database availability is not reset, do this by right-clicking on the properties of the folder and database. (make sure you have rights so that you do not deny access)
user3390927 Oct 13 '14 at 21:59 2014-10-13 21:59
source share