79200286

Date: 2024-11-18 14:21:34
Score: 1
Natty:
Report link

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
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ashok Yadav