在团队基础服务器中处理多维数据集时出现以下错误。
TF221122:为团队项目集合或Team Foundation服务器TEAM FOUNDATION运行作业增量分析数据库同步时发生错误。
我最近移动并恢复了团队基础服务器。 我的问题是没有名为'TEAM FOUNDATION'的服务器。我想我已经使用TFSConfig来配置错误的东西了。
这是GetProcessStatus的xml输出。 我为了简洁而削减了一些。我非常确信问题是Instance Name ='TEAM FOUNDATION'是不正确的。我应该是机器名?
<WarehouseProcessingStatus xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/TeamFoundation/2005/06/Services/Controller/03">
<RequestTimeUtc>2012-03-04T07:07:31.4633418Z</RequestTimeUtc>
<WarehouseProcessingOnlineStatus>Stopped</WarehouseProcessingOnlineStatus>
<AnalysisProcessingOnlineStatus>Stopped</AnalysisProcessingOnlineStatus>
<JobProcessingStatus>Idle</JobProcessingStatus>
<JobsRunning>0</JobsRunning>
<JobsQueued>0</JobsQueued>
<Instance Name="TEAM FOUNDATION" JobProcessingStatus="Idle" JobsRunning="0" JobsQueued="0">
<Jobs>
<Job Name="Common Structures Warehouse Sync" JobProcessingStatus="Idle">
<LastRun QueueTimeUtc="2012-03-04T06:53:16.94Z" ExecutionStartTimeUtc="2012-03-04T06:53:17.433Z" EndTimeUtc="2012-03-04T06:53:17.45Z" Result="Blocked">
<ResultMessage>[Common Structures Warehouse Sync]: ---> TF221107: Reporting for Team Foundation Server cannot execute job Common Structures Warehouse Sync for team project collection TEAM FOUNDATION because the warehouse is offline. Use the Team Foundation Administration Console to start reporting.</ResultMessage>
</LastRun>
</Job>
<Job Name="Full Analysis Database Sync" JobProcessingStatus="Idle">
<LastRun QueueTimeUtc="2012-03-04T06:03:49.833Z" ExecutionStartTimeUtc="2012-03-04T06:03:52.7Z" EndTimeUtc="2012-03-04T06:04:06.917Z" Result="Failed">
<ResultMessage>[Full Analysis Database Sync]: ---> AnalysisDatabaseProcessingType=Full, needCubeSchemaUpdate=True. ---> Microsoft.TeamFoundation.Server.WarehouseException: TF221122:
An error occurred running job Full Analysis Database Sync for team project collection or Team Foundation server TEAM FOUNDATION. ---> Microsoft.TeamFoundation.Server.WarehouseException: Failed to Process Analysis Database 'Tfs_Analysis'. ---> Microsoft.TeamFoundation.Server.WarehouseException: Internal error: The operation terminated unsuccessfully.
Server: The operation has been cancelled.
OLE DB error: OLE DB or ODBC error: A network-related or instance-specific error has occurred while establishing a connection to SQL Server. Server is not found or not accessible. Check if instance name is correct and if SQL Server is configured to allow remote connections. For more information see SQL Server Books Online.; 08001; Client unable to establish connection; 08001; Encryption not supported on the client.; 08001.
Errors in the high-level relational engine. A connection could not be made to the data source with the DataSourceID of 'Tfs_AnalysisDataSource', Name of 'Tfs_AnalysisDataSource'.
Errors in the OLAP storage engine: An error occurred while the dimension, with the ID of 'Test Plan', Name of 'Test Plan' was being processed.
Errors in the OLAP storage engine: An error occurred while the 'Test Plan ID' attribute of the 'Test Plan' dimension from the 'Tfs_Analysis' database was being processed.
</Job>
</Jobs>
</Instance>
<Collections>
<Collection Name="Upgrade Projects" JobProcessingStatus="Idle" JobsRunning="0" JobsQueued="0">
<Jobs>
<Job Name="Build Warehouse Sync" JobProcessingStatus="Idle">
<LastRun QueueTimeUtc="2012-03-04T06:35:09.837Z" ExecutionStartTimeUtc="2012-03-04T06:35:10.157Z" EndTimeUtc="2012-03-04T06:35:10.317Z" Result="Succeeded" />
</Job>
<Job Name="Common Structures Warehouse Sync" JobProcessingStatus="Idle">
<LastRun QueueTimeUtc="2012-03-04T06:35:09.823Z" ExecutionStartTimeUtc="2012-03-04T06:35:10.147Z" EndTimeUtc="2012-03-04T06:35:10.643Z" Result="Succeeded" />
</Job>
<Job Name="Test Management Warehouse Sync" JobProcessingStatus="Idle">
<LastRun QueueTimeUtc="2012-03-04T06:47:02.343Z" ExecutionStartTimeUtc="2012-03-04T06:47:03.313Z" EndTimeUtc="2012-03-04T06:47:03.41Z" Result="Succeeded" />
</Job>
<Job Name="Version Control Warehouse Sync" JobProcessingStatus="Idle">
<LastRun QueueTimeUtc="2012-03-04T06:35:09.837Z" ExecutionStartTimeUtc="2012-03-04T06:35:10.163Z" EndTimeUtc="2012-03-04T06:35:10.297Z" Result="Succeeded" />
</Job>
<Job Name="Work Item Tracking Warehouse Sync" JobProcessingStatus="Idle">
<LastRun QueueTimeUtc="2012-03-04T06:35:09.837Z" ExecutionStartTimeUtc="2012-03-04T06:35:10.15Z" EndTimeUtc="2012-03-04T06:35:10.573Z" Result="Succeeded" />
</Job>
</Jobs>
</Collection>
</Collections>
</WarehouseProcessingStatus>
答案 0 :(得分:7)
我终于弄明白了。 您可以通过登录分析服务手动处理CUBE,右键单击TFS_Analysis并选择“Process”。
事实证明,TFS_AnalysisDatasource中指定的用户无法正确模拟。我不知道为什么。这是一台在计算机上具有管理员权限的有效用户。
我更改了分析服务服务以使用域帐户,并更改了数据源以使用服务帐户。
这终于得到了立方体处理。我认为上面问题的实例='...'是一个红鲱鱼。