Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Find All Compressed tables in database - script

    extended for index name

    SELECT st.name, ix.name , st.object_id, sp.partition_id, sp.partition_number, sp.data_compression,sp.data_compression_desc

    FROM sys.partitions SP

    INNER JOIN sys.tables ST ON st.object_id = sp.object_id

    LEFT OUTER JOIN sys.indexes IX ON sp.object_id = ix.object_id...

Viewing post 1 (of 1 total)