September 3, 2008 at 4:29 am
hi,
Please help me for SQL 2k5.I have created a Maintenanace plan for daily backup of all databases and cleanup task.This execution fails with this error:
SQDKKRO02\SYSTEM. Microsoft (R) SQL Server Execute Package Utility Version 9.00.3042.00 for 64-bit Copyright (C) Microsoft Corp 1984-2005. All rights reserved. Started: 11:40:01 Progress: 2008-09-02 11:40:06.17 Source: {DAF5F416-66FE-4384-BF44-3889F36C25B1} Executing query "DECLARE @GUID UNIQUEIDENTIFIER EXECUTE msdb..sp".: 100% complete End Progress Progress: 2008-09-02 11:40:06.85 Source: Maintenance Cleanup Task Executing query "EXECUTE master.dbo.xp_delete_file 0,N'\\sqcpbck01\".: 100% complete End Progress Progress: 2008-09-02 11:40:08.89 Source: Execute T-SQL Statement Task 1 Executing query "EXECUTE msdb.dbo.sp_notify_operator @name=N'SQLjob".: 100% complete End Progress DTExec: The package execution returned DTSER_FAILURE (1). Started: 11:40:01 Finished: 11:40:09 Elapsed: 8.625 seconds. The package execution failed. The step failed.
please suggest me.
thanks,
Shikha
June 3, 2009 at 6:26 am
Hi,
I have this same problem today to.
It's a little strange because other SQL servers with the same config are not complaining about
errors. It seems something to do with the security.
I'll report back if i've found something.
Kind regards,
CB
June 9, 2009 at 9:20 pm
Hi Im receiving the below error.. whenever SSIS package job fails ...any one can help me to find out whats the reason might be....
Execute Package Utility Version 9.00.3042.00 for 64-bit Copyright (C) Microsoft Corp 1984-2005. All rights reserved. Started: 2:35:00 PM Error: 2009-06-09 19:55:07.13 Code: 0x00000002 Source: POP Mails Description: The script threw an exception: Unable to write data to the transport connection: An existing connection was forcibly closed by the remote host. End Error DTExec: The package execution returned DTSER_FAILURE (1). Started: 2:35:00 PM Finished: 7:55:07 PM Elapsed: 19205.9 seconds. The package execution failed. The step failed.
February 1, 2010 at 5:25 pm
I have the same error this day.
Is there somebody have got it?:-D
---------------------------------------
Thorn Bird...
February 2, 2010 at 4:44 pm
DTExec is referring to the command-line utility used to run SSIS packages. That being said, I believe there are a lot of caveats for 64-bit SSIS packages, as not all of the providers are available in 64-bit yet.
Here is the BOL article for running SSIS packages on a 64-bit machines. It might be helpful.
http://msdn.microsoft.com/en-us/library/ms141766(SQL.90).aspx
Joie Andrew
"Since 1982"
February 2, 2010 at 7:55 pm
I got rid of this error finally by a reboot 🙁
February 4, 2011 at 9:13 am
Thanks Old Hand. That Microsoft article was helpful... 32-bit/64-bit challenges. Ugh. Back to batch files. 🙂
March 18, 2011 at 11:46 pm
Thank you Old Hand.. the article is very helpful. DTSER_FAILURE issue is resolved after reading your solution ( article)... You are very helpful!!!!!!:-)
-- Selected 32 BIT Option in SQL Server agent job under one of the tab while establishing a connection from SQL 2008 to SQL 2005
-- Job ran succesfully
July 14, 2011 at 8:50 pm
Guys,
I had the same issue running packages (maintenance plans) on SQL Server 2008 64-bit. Here's is what I did and all you need to do as well -
sp_configure 'allow updates',0
go
reconfigure with override
go
And it should work.
June 26, 2012 at 6:44 am
This worked perfectly for me. Thanks strugdt!
July 29, 2013 at 7:32 am
Hi there, I'm hoping strugdt fix will work for me. however I'm still a newbie, where do I insert that code into? the SQL server agent job, or other?
Thanks!
August 22, 2013 at 2:22 am
Watch out with this one! Allow updates option in sql server
strugdt (7/14/2011)
Guys,I had the same issue running packages (maintenance plans) on SQL Server 2008 64-bit. Here's is what I did and all you need to do as well -
sp_configure 'allow updates',0
go
reconfigure with override
go
And it should work.
October 30, 2013 at 6:08 am
strugdt (7/14/2011)
Guys,I had the same issue running packages (maintenance plans) on SQL Server 2008 64-bit. Here's is what I did and all you need to do as well -
sp_configure 'allow updates',0
go
reconfigure with override
go
And it should work.
Works for me with SQL Server 2008 Standard (Index Reorganisation Maintenance Plan)! Thank you!!!
October 30, 2013 at 3:06 pm
I had the same issue and the following solution worked for me... thanks
sp_configure 'allow updates', 0
reconfigure with override
Viewing 15 posts - 1 through 15 (of 20 total)
You must be logged in to reply to this topic. Login to reply