I had created a USER
, named Sandra
and I granted her a SELECT
privilege to a TABLE
with GRANT OPTION
.
I had created another USER
, named Jim
.
Sandra
then granted her SELECT
privilege to Jim
.
When I was trying to DROP USER
Sandra, an error message came out saying:
Msg 15284, Level 16, State 1, Line 1
The database principal has granted or denied permissions to objects in the database and cannot be dropped.
I'm wondering is there a CASCADE OPTION
in DROP USER
in SQL Server 2005 databases?
Thanks in advance :)