Created
April 4, 2022 22:03
-
-
Save MarkPryceMaherMSFT/ad229dd30494a90f405a315b1d423013 to your computer and use it in GitHub Desktop.
size of dedicated sql pool
This file contains hidden or 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
-- Run against master database | |
SELECT db.name [Database] | |
, ds.edition [Edition] | |
, ds.service_objective [Service Objective] | |
FROM sys.database_service_objectives AS ds | |
JOIN sys.databases AS db ON ds.database_id = db.database_id; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment