DTExec: The package execution returned DTSER_FAILURE (1)

  • 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

  • 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

  • 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.

  • I have the same error this day.

    Is there somebody have got it?:-D

    ---------------------------------------
    Thorn Bird...

  • 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"

  • I got rid of this error finally by a reboot 🙁

  • Thanks Old Hand. That Microsoft article was helpful... 32-bit/64-bit challenges. Ugh. Back to batch files. 🙂

  • 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

  • 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.

  • This worked perfectly for me. Thanks strugdt!

  • @strugdt, This worked like a charm... thx dude..

  • 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!

  • 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.

  • 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!!!

  • 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