A cloud-native solution that protects workloads across hybrid and multi-cloud environments with threat detection and security recommendations
Hello @Tony Windebank
You’ve already done most of the right steps — removing users from db_owner, verifying, and triggering a scan manually.
- Run this on each database to confirm no unexpected members remain:
SELECT r.name AS role_name, m.name AS member_name
FROM sys.database_role_members drm
JOIN sys.database_principals r ON drm.role_principal_id = r.principal_id
JOIN sys.database_principals m ON drm.member_principal_id = m.principal_id
WHERE r.name = 'db_owner';
- Trigger a Manual VA Scan (Defender-compatible)
- Reset or Update the Baseline
- Confirm Defender Sync
If the Answer is helpful, please click Accept Answer and Up-Vote, so that it can help others in the community looking for help on similar topics.