将 Sitecore 8.0 升级到 8.1。 SQL 脚本问题
upgrade Sitecore 8.0 to 8.1. Issue with SQL script
我正在尝试升级 Sitecore 8.0 版本。 150812 到 Sitecore 8.1。
我在这里下载了"Sitecore 8.1 Upgrade Guide":
https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/Sitecore_81/Sitecore_Experience_Platform_81_Initial_Release.aspx
我在本指南的以下步骤中卡住了:
- Upgrade the SXP database schemas:
SQL Server: Execute the SXP81_BeforeInstall.sql script on the reporting databases.
当我在 Master 或 Web 数据库上 运行 脚本时,我在 Management Studio 中收到以下错误消息:
Cannot find the object "dbo.Trail_Interactions" because it does not exist or you do not have permissions."
还有其他一些类似的问题。
我有两个不同的 Sitecore 8.0 环境,但都没有这些对象:dbo.Trail_Interactions
、dbo.FailureDetails
等等(在 SQL 脚本中使用)。
怎样才能升级成功?
如前所述,该脚本只能 运行 在报告数据库中。报告数据库是由 ConnectionStrings.config
.
中的连接字符串名称 reporting
定义的数据库
<add name="reporting" connectionString="{connection string}"/>
数据库默认命名为 Sitecore_Analytics
或 Sitecore_reporting
。
我正在尝试升级 Sitecore 8.0 版本。 150812 到 Sitecore 8.1。
我在这里下载了"Sitecore 8.1 Upgrade Guide": https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/Sitecore_81/Sitecore_Experience_Platform_81_Initial_Release.aspx
我在本指南的以下步骤中卡住了:
- Upgrade the SXP database schemas: SQL Server: Execute the SXP81_BeforeInstall.sql script on the reporting databases.
当我在 Master 或 Web 数据库上 运行 脚本时,我在 Management Studio 中收到以下错误消息:
Cannot find the object "dbo.Trail_Interactions" because it does not exist or you do not have permissions."
还有其他一些类似的问题。
我有两个不同的 Sitecore 8.0 环境,但都没有这些对象:dbo.Trail_Interactions
、dbo.FailureDetails
等等(在 SQL 脚本中使用)。
怎样才能升级成功?
如前所述,该脚本只能 运行 在报告数据库中。报告数据库是由 ConnectionStrings.config
.
reporting
定义的数据库
<add name="reporting" connectionString="{connection string}"/>
数据库默认命名为 Sitecore_Analytics
或 Sitecore_reporting
。