我正在尝试通过SSMS从我的SSAS服务器连接到SQL,当我测试它时,连接工作得很好。但是当我处理多维数据集时,我得到了下面的错误消息。
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.我已经查看了发布的其他类似的错误消息,并根据建议尝试了以下选项。
SSAS - OLE DB error in establishing a connection
1. Restart SSAS Service
2. Restart SSAS using local system
3. Trying to change the Provider to Native OLE DB\Microsoft OLE DB Provider for SQL server, but still I am getting the below error
OLE DB error: OLE DB or ODBC error.我被困在这3天多了,不能有任何进展。我也尝试了所有其他提供商,但仍然不起作用。
此外,我确保我在SSAS服务器的数据源中使用的Windows帐户在SQL数据库上有db_owner。
如果能帮上忙,我会很感激的。
发布于 2018-07-30 17:35:17
我能够通过试验和错误的方法来选择下面的更改来解决这个问题。我已经尝试将
1. Provider as "Native OLE DB/Microsoft OLE DB Provider for SQL Server"
2. Changed the connection from Windows Authentication to SQL connection.
3. The type of Impersonate Account from Windows Authentication to Authenticate by Service Account.完成上述设置后,我就可以处理Cube了。
https://stackoverflow.com/questions/51538070
复制相似问题