Skip to content

Instantly share code, notes, and snippets.

@Otterpohl
Created May 13, 2022 16:22
Show Gist options
  • Save Otterpohl/c42e51d63e35b940e350ad175ea37309 to your computer and use it in GitHub Desktop.
Save Otterpohl/c42e51d63e35b940e350ad175ea37309 to your computer and use it in GitHub Desktop.
Set the database owner to sa
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