Forum Discussion
Noma_Putumo
Jun 13, 2025Copper Contributor
Unable to drop a user on SSISDB
Hi, I am unable to drop the user from the SSISDB, I am getting the below error, has anyone experienced the same issue? "The database principal has granted or denied permissions to catalog obj...
bandaruajeyudu
Jul 01, 2025Brass Contributor
Hi Noma_Putumo ,
this usually happens when the user has been granted permissions on SSISDB catalog objects. You will need to first check what permissions the user has using:-
How to solve it?
Find where the user has permissions
USE SSISDB
go
SELECT *
FROM catalog.object_permissions
WHERE grantee_sid = SUSER_SID('YourUserName');
--change YourUserName to your actual username
Revoke permissions
REVOKE READ ON OBJECT::[folder_name] TO [YourUserName];
REVOKE MODIFY ON OBJECT::[project_name] TO [YourUserName];
Drop the user
DROP USER [YourUserName];