Created
May 13, 2022 16:22
-
-
Save Otterpohl/c42e51d63e35b940e350ad175ea37309 to your computer and use it in GitHub Desktop.
Set the database owner to sa
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT 'ALTER AUTHORIZATION ON DATABASE::' + QUOTENAME(d.[name]) + ' to sa' | |
FROM [sys].[databases] d | |
INNER JOIN [sys].[server_principals] s ON s.sid = d.owner_sid | |
WHERE d.[name] NOT IN ('master','msdb','model','tempdb') | |
AND s.[name] <> 'sa' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment