Msg 15138, Level 16, State 1, Line 1 The database principal owns a schema in the database, and cannot be dropped.
Syntax:
USE [DatabaseName]
GO
ALTER AUTHORIZATION ON SCHEMA::[Schema_Name] TO [dbo]
GO
Example:
USE [TestDB]
GO
ALTER AUTHORIZATION ON SCHEMA::[db_datawriter] TO [dbo]
GO