Link to home
Start Free TrialLog in
Avatar of Shezad Ahmed
Shezad AhmedFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Drop User error in SQL 2005

I am trying to drop a user in SQL 2005 with the following script.

USE [CentrePointSoftware]
GO
/****** Object:  User [MASTER]    Script Date: 10/04/2007 16:24:56 ******/
IF  EXISTS (SELECT * FROM sys.database_principals WHERE name = N'MASTER')
DROP USER [MASTER]

I receive error:
Msg 15138, Level 16, State 1, Line 1
The database principal owns a fulltext catalog in the database, and cannot be dropped.

Any help please
ASKER CERTIFIED SOLUTION
Avatar of ptjcb
ptjcb
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial