I am trying to drop a login from sql server 2008 but find user has granted endpoints(65536, db mirroring) to grantees NT AUTHORITY\SYSTEM and sqlserver service account , i find the same thru below query.
select * from sys.server_permissions
where grantor_principal_id =
(select principal_id from sys.server_principals where name = 'Domain\username')
is there any way which i can use to avoid dropping of these endpoints and mirroring and simply transfer the ownership etc and can drop the login
thanks for your time..