我已經編寫了一個代碼,用於在按鈕單擊時對數據庫(生成Sql腳本)進行備份,此代碼是在本地主機上正常工作,但當我將此部署到生產中時,出現以下錯誤。 用戶登錄失敗 'XXXXXX \ IWPD_1257(XXXXX)' 堆棧跟蹤的一部分,是 [ConnectionFailureException: Failed to connect to server ..]
Microsoft.SqlSe
我使用它似乎無法連接到數據庫服務器,錯誤是26號SQL Server管理對象(SMO)有一個應用程序: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible.
我正在編寫一個SMO應用程序,它將一個數據庫的模式複製到另一個數據庫中。 爲此,我使用Transfer類可在SmoExtended.dll庫。 的示例代碼: Database sourceDatabase = sqlServer.Databases[ASourceName];
Transfer t = new Transfer(sourceDatabase);
t.CopyAllObjects
我在使用ServerConnection時遇到了使用SMO連接到SQL Server的問題。在過去的幾個月裏,這一直在發揮作用,但現在失敗了。這裏是腳本的片段: $svrname = "Server"
#Establish Server connection
Write-ColorOutput "Establishing SQL Server Connection to