Thursday, July 22, 2021

SQL Server Offerings in Azure

The below image shows the various SQL Server DB offerings in Azure. 







No comments:

Post a Comment

Extract DB Permission

Script to extract DB permissions   SET NOCOUNT ON GO SELECT 'Use ' + db_name ( ) PRINT 'go' GO SELECT 'EX...