Hi,We installed SP1 for SQL Server 2014 this past weekend and got this error message in the logs. I found that if you set the db to read-write, it updates the system objects, even after SP1 has completed. Then you can set it back to read-only. I'm just posting this so other people can find it on the internet, as I wasn't able to find it specifically. Error Log Entry:System objects could not be updated in database 'x' because it is read-only.Problem:After installing SP1 for SQL Server 2014 you will find this message in the error logs saying read-only databases could not be updated. Solution:Simply set the db to read-write and the system objects will get updated, long after SP1 was installed. ALTER DATABASE [x] SET READ_WRITE WITH NO_WAITThen set it back to read-only:ALTER DATABASE [x] SET READ_ONLY WITH NO_WAITYou should then see these log entries:System objects could not be updated in database 'x' because it is read-only.Setting database option READ_WRITE to ON for database 'x'.Starting up database 'x'.CHECKDB for database 'x' finished without errors on 2015-07-25 01:02:28.143 (local time). This is an informational message only; no user action is required.Synchronize Database 'x' (129) with Resource Database.Setting database option READ_ONLY to ON for database 'x'.Starting up database 'x'.CHECKDB for database 'x' finished without errors on 2015-07-25 01:02:29.888 (local time). This is an informational message only; no user action is required.
↧