Enum TableCompressionType
C#
public enum TableCompressionType
Fields
ColumnStore | Specifies that the table or index will use column store compression. |
ColumnStoreArchive | Specifies that the table or index will use column store archival compression. |
None | Specifies that the table or index will not be compressed. |
Page | Specifies that the table or index will be compressed so that entire storage pages must be compressed as a unit. A page will consist of many rows. |
Row | Specifies that the table or index will be compressed so that rows can be individually added or removed. |