Quantcast
Channel: SQLServerCentral » SQL Server 2014 » Development - SQL Server 2014 » Latest topics
Viewing all articles
Browse latest Browse all 3145

Question on executing DTUTIL script to copy SSIS packages from SQL Svr 2008 R2 box to a SQL Svr 2014 box

$
0
0
In an effort to COPY SSIS packages from a SQL Server 2008 R2 box to a SQL Server 2014 box I found a script to help me do that but we're having 2 sets of problems:1. I tried executing the DTUTIL script on the source server (SQL Svr 2008 R2) from the windows command prompt and got the error below:Script executed: C:\Program Files\Microsoft SQL Server\100\DTS\Binn>[b]DTUTIL /SQL "\DashboardDM_ImportAbsences" /DestServer "APPDEV2014" /COPY SQL;"\DashboardDM_ImportAbsences" /QUIET[/b]Error received:Microsoft (R) SQL Server SSIS Package UtilitiesVersion 10.50.1600.1 for 64-bitCopyright (C) Microsoft Corporation 2010. All rights reserved.[b]Error (0xC001404A) while checking for the existence of folder "\" on SQL Server.Description: While trying to find a folder on SQL an OLE DB error was encountered with error code 0x80004005 (Login timeout expired).Source:[/b]2. I then attempted to wrap this script in xp_cmdshell and execute from the source server and then I encountered permission issues:SQL command: [b]Use msdb;EXEC master.sys.xp_cmdshell 'dtutil /SQL "\DashboardDM_ImportAbsences" /DestServer "APPDEV2014" /COPY SQL;"\DashboardDM_ImportAbsences"';[/b]Error:Microsoft (R) SQL Server SSIS Package UtilitiesVersion 10.50.1600.1 for 64-bitCopyright (C) Microsoft Corporation 2010. All rights reserved.NULL[b]Error (0xC0014014) while checking for the existence of package "\DashboardDM_ImportAbsences" on SQL Server.Could not save package "\DashboardDM_ImportAbsences" because of error 0x80040E09.Description: The EXECUTE permission was denied on the object 'sp_ssis_putpackage', database 'msdb', schema 'dbo'.Source: Microsoft SQL Server Native Client 10.0NULL[/b]Any suggestions/direction would be greatly appreciated. Thanks. :unsure:

Viewing all articles
Browse latest Browse all 3145

Trending Articles