将DNN数据库版本从SQL Server版本12降级到11

时间:2014-07-09 08:50:08

标签: sql-server dotnetnuke

我需要将我的DNN数据库从SQL Server版本12降级到11,我知道我需要生成脚本并在其他sql实例上运行此脚本,但我面临一个错误,我不知道如何解决它

这是错误消息:

Msg 1934, Level 16, State 1, Line 135
INSERT failed because the following SET options have incorrect settings: 'ANSI_PADDING'. Verify
that SET options are correct for use with indexed views and/or indexes on computed columns     and/or filtered indexes and/or query notifications and/or XML data type methods and/or spatial index operations.
Msg 547, Level 16, State 0, Line 1
The ALTER TABLE statement conflicted with the FOREIGN KEY     constraint "FK_ContentItems_Tags_Taxonomy_Terms". The conflict occurred in database "mehrabaddb", table "dbo.Taxonomy_Terms", column 'TermID'.
Msg 4917, Level 16, State 0, Line 1
Constraint 'FK_ContentItems_Tags_Taxonomy_Terms' does not exist.
Msg 4916, Level 16, State 0, Line 1
Could not enable or disable the constraint. See previous errors.
Msg 547, Level 16, State 0, Line 1
The ALTER TABLE statement conflicted with the FOREIGN KEY    constraint "FK_FolderPermission_Users". The conflict occurred in database "mehrabaddb", table "dbo.Users", column 'UserID'.
Msg 4917, Level 16, State 0, Line 1
Constraint 'FK_FolderPermission_Users' does not exist.
Msg 4916, Level 16, State 0, Line 1
Could not enable or disable the constraint. See previous errors.
Msg 547, Level 16, State 0, Line 1
The ALTER TABLE statement conflicted with the FOREIGN KEY constraint "FK_Profile_Users". The     conflict occurred in database "mehrabaddb", table "dbo.Users", column 'UserID'.
Msg 4917, Level 16, State 0, Line 1
Constraint 'FK_Profile_Users' does not exist.Msg 4916, Level 16, State 0, Line 1
Could not enable or disable the constraint. See previous errors.
The module 'AddEventLog' depends on the missing object 'dbo.AddEventLogType'. The module will still be created; however, it cannot run successfully until the object exists.
The module 'AddEventLog' depends on the missing object 'dbo.AddEventLogConfig'. The module will still be created; however, it cannot run successfully until the object exists.
The module 'AddTab' depends on the missing object 'dbo.BuildTabLevelAndPath'. The module will still be created; however, it cannot run successfully until the object exists.
The module 'aspnet_Membership_CreateUser' depends on the missing object 'dbo.aspnet_Users_CreateUser'. The module will still be created; however, it cannot run successfully until the object exists.
The module 'aspnet_Profile_DeleteProfiles' depends on the missing object 'dbo.aspnet_Users_DeleteUser'. The module will still be created; however, it cannot run successfully until the object exists.
The module 'aspnet_Profile_SetProperties' depends on the missing object 'dbo.aspnet_Users_CreateUser'. The module will still be created; however, it cannot run successfully until the object exists.

1 个答案:

答案 0 :(得分:0)

简单解决方案:使用SET ANSI_PADDING ON

查找并替换SET ANSI_PADDING OFF
相关问题