更新时间:2020-05-01 07:59
SQL Server数据库出现以下报错,其中[$Name]为表名称。
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语句。
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';
在文档使用中是否遇到以下问题
更多建议
匿名提交