我在尝试从 VBA 查询的 SQL Server 上有一个 SSAS 模型。几天前这工作正常,但是远程计算机上的管理员密码最近发生了变化。现在我收到错误消息:“运行时错误 -2147467259 (80004005) 对等方过早地关闭了连接”。
我尝试重建和重新部署我的 SSAS 模型无济于事。关于我为什么会收到此错误以及如何解决它的任何想法?
谢谢!
Dim oConn As ADODB.Connection
Dim rs As ADODB.Recordset
Dim oSht As Worksheet
Dim sql As String
Set oSht = Worksheets("modelcq")
Set oConn = New ADODB.Connection
oConn.ConnectionString = "Provider=MSOLAP;Data Source=dc2k8housql;Integrated Security=SSPI;Persist Security Info=True;Initial Catalog=NVO_CQ_V1;"
oConn.Open 'error occurs here!
Debug.Print oConn.State