Sql 迁移到生产时,程序包不运行

Sql 迁移到生产时,程序包不运行,sql,sql-server-2005,ssis,Sql,Sql Server 2005,Ssis,我不确定这是否属于这一类,但这是我的问题 我有一个SSIS包,我正试图将其移动到我们的生产服务器。它在QA服务器上运行良好,但现在我已将其转移到生产环境中,我遇到了错误: Description: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80004005. An OLE DB record is available. Source: "Microsoft SQL Native Cl

我不确定这是否属于这一类,但这是我的问题

我有一个SSIS包,我正试图将其移动到我们的生产服务器。它在QA服务器上运行良好,但现在我已将其转移到生产环境中,我遇到了错误:

Description: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80004005.
An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "Login timeout expired".
An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that 
under the default settings SQL Server does not allow remote connections.".
An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "Named Pipes Provider: Could not open a connection to SQL Server [2]. ".
End Error
Error: 2016-02-08 14:01:51.24
 Code: 0xC020801C
 Source: Data Flow Task OLE DB Destination [39652]
 Description: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER. The AcquireConnection method call to the connection manager "MYSERVER.MYDB" failed with error code 0xC0202009. There may be error messages posted before this with more 
information on why the AcquireConnection method call failed.
这些错误是在我尝试从存储过程运行包时发生的,我创建该存储过程是为了在通过Access启动时运行包

ALTER PROCEDURE [dbo].[sp_import] 
AS
BEGIN
    SET NOCOUNT ON;
DECLARE @SQLQuery AS VARCHAR(2000)
DECLARE @ServerName VARCHAR(200) 
SET @ServerName = 'MYSERVER' 
SET @SQLQuery = 'DTExec /F ^"\\MYSERVER\Import\Package.dtsx^" '
EXEC master..xp_cmdshell @SQLQuery
END
我应该提到,包、源文件和数据库都位于同一台机器上


谢谢

您的问题与自动化访问有关,将您从windows到服务器的连接更改为在连接管理器上由sql server进行身份验证,并提供一个具有自动恢复功能的帐户。

在生产中启用命名管道和TCP/IP连接:谢谢,但命名管道已经启用。我对您的问题的所有移动部分感到困惑。我们有SSI、SQL Server、Access、存储过程和UNC路径。您能否描述一下您试图解决的问题背后的体系结构以及解决问题的机制