2017-03-13 63 views
1

我有一個SQL服務器,它已被安裝爲新實例,名爲instance2。現在,當我試圖存儲包下打開MSDB文件夾,這給了我下面的錯誤無法從集成系統打開現有軟件包和msdb?

TITLE: Microsoft SQL Server Management Studio 
------------------------------ 

Failed to retrieve data for this request. (Microsoft.SqlServer.Management.Sdk.Sfc) 

For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft%20SQL%20Server&LinkId=20476 

------------------------------ 
ADDITIONAL INFORMATION: 

The SQL Server instance specified in SSIS service configuration is not present or is not available. This might occur when there is no default instance of SQL Server on the computer. For more information, see the topic "Configuring the Integration Services Service" in %SQL_PRODUCT_SHORT_NAME% Books Online. 

Login timeout expired 
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. 
Named Pipes Provider: Could not open a connection to SQL Server [2]. (MsDtsSrvr) 

------------------------------ 

Login timeout expired 
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. 
Named Pipes Provider: Could not open a connection to SQL Server [2]. (Microsoft SQL Server Native Client 11.0) 

------------------------------ 
BUTTONS: 

OK 
------------------------------ 

而且一旦我試圖打開從Visual Studio包返回下面的錯誤

TITLE: Add Copy of Existing Package 
------------------------------ 

An OLE DB error 0x80004005 (Login timeout expired) occurred while enumerating packages. A SQL statement was issued and failed. 


------------------------------ 
ADDITIONAL INFORMATION: 

An OLE DB error 0x80004005 (Login timeout expired) occurred while enumerating packages. A SQL statement was issued and failed. 


------------------------------ 
BUTTONS: 

OK 
------------------------------ 

我有兩個實例:冒險和INSTANCE2也是我在msdtsrvr.ini加實例名,但它並沒有解決問題

謝謝

回答

1

SSIS服務不支持MULTIP le實例。 SSIS將被配置爲在機器上安裝的第一個實例或默認實例上的託管軟件包。有一個關於這裏的一些詳細信息:

https://msdn.microsoft.com/en-us/library/ms137789.aspx

這適用於版本< 2012年2012年和後續支持向後兼容性此存儲模型,或者你可以轉換爲項目部署模型。

+0

該問題已通過編輯xml文件解決。當我插入服務器名稱和實例名稱就好了。 – Bodhi

相關問題