Add-Migration allocation_units angular angular6 azure Background Call build-tools core C# dell docker docker image donet ef dotnet dotnet ef @eaDir echo ef EntityFramework EOF error find firewall git index kill light codes linux Luci merge mssql msvs_version MySql network ng build node-gyp node-sass openvpn OpenWRT partitions size PK powershell PR Primary Key pull request size sp_who2 sql SSH synology t-sql tables Thread ThreadPool Threads tips ubuntu unifi Update-Database vpn windows-build-tools wpf xev xmodev

To check size used by data and indexes You can use following script

If anyone is interested in how to list columns in the main key on the mssql server then I present a quick script.

SELECT
    Col.Column_Name
    ,Col.Table_Name
    ,OBJECT_ID(Col.Table_Name) AS [object_id]
FROM
    INFORMATION_SCHEMA.TABLE_CONSTRAINTS Tab
    ,INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE Col
WHERE
    Col.Constraint_Name = Tab.Constraint_Name
    AND Col.Table_Name = Tab.Table_Name
    AND Constraint_Type = 'PRIMARY KEY'
    AND [Col].Table_name='<TABLENAME>'