问题描述:
代码语言:javascript复制SQL Server数据库出现“Data compression and vardecimal storage format are only supported on SQL Server Enterprise Edition”报错
SQL Server数据库出现以下报错,其中[$Name]为表名称。
代码语言:javascript复制Recovery is writing a checkpoint in database 'xxx' (9). This is an informational message only. No user action is required. Database 'xxx' cannot be started in this edition of SQL Server because part or all of object '[$Name]' is enabled with data compression or vardecimal storage format. Data compression and vardecimal storage format are only supported on SQL Server Enterprise Edition. Database 'xxx' cannot be started because some of the database functionality is not available in the current edition of SQL Server
问题原因
版本兼容性问题,SQL Server企业版或者SQL Server 2016以上的标准版才支持数据压缩功能。
解决方案
以下是两种解决方法:
- 使用支持压缩功能的数据库版本。
- 取消压缩功能。
查询压缩对象的更多信息
以下是查询压缩对象SQL语句。
代码语言:javascript复制select name,
type_desc,
data_compression_desc
from sys.partitions p
join sys.objects o on p.object_id = o.object_id
where p.data_compression_desc<>'NONE'
and o.type='U';