DTSExecResult.Canceled - Misspelled?
Apr 3, 2007I just noticed that the enum item
DTSExecResult.Canceled
...............is misspelled. Tis a pity.
I just noticed that the enum item
DTSExecResult.Canceled
...............is misspelled. Tis a pity.
We are running SQL Server 2000 (select @@version reports 8.00.194).
We are calling a package (Package B) from another package (Package A) using the 'Execute Package Task'
Package B is constructed as:
A CSV file
A Data pump into a database (OLEDB and ODBC to SQL Server DB - both operate in the same way)
An ActiveX step after the connection to display a message box
When Package B is executed in isolation the data pump runs to completion and then the ActiveX step displays the message box.
However, when Package A is used to execute Package B then Package B returns an error message indicating that 'Execution was canceled by user'. Inspection of the database shows that the data pump ran successfully to completion, however, the last Active X step was not executed.
More strangely if the ActiveX task is removed then using either method will report successful execution of Package B.
Additionally, if individual ActiveX steps are included for success, failure and completion after the connection step, none of them execute when Package A calls Package B.
Anyone seen this error or know what this could be? I got this when executing a package. It works on my dev machine, however failed with this error on another test machine/environment.
The session was canceled. (Exception from HRESULT: 0x800700F0) (Microsoft Visual Studio)
------------------------------
Program Location:
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo)
at Microsoft.DataWarehouse.VsIntegration.Interop.NativeMethods.ThrowOnFailure(Int32 hr, Int32[] expectedHRFailure)
at Microsoft.DataWarehouse.VsIn
I have a sql job which has to pull some data from a remote server. This job is running fine last few days and suddenly failing to execute with the following error. The same job is running fine in other servers.
Executed as user: NT AUTHORITYNETWORK SERVICE. The Microsoft Distributed Transaction Coordinator (MS DTC) has cancelled the distributed transaction. [SQLSTATE 42000] (Error 1206). The step failed.
Note: The steps I have already done :
1. Verified the MSDTC configurations and restarted the MS DTC
2. Restarted the Sql Server
3. Restarted the machine.
Any help will be highly appreciated.
Hi,I'm running SQL Server Version 8.00.194 on Windows 2000.I am am running this query:select TOP 2000TheoVolImpliedfrom OptionTradeswhere ReutersSymbol = 'IBM.N'and TheoVolImplied > 0.0TheoVolImplied is of type float, precision 15, length 8.When I run this query I get this error:Server: Msg 3628, Level 16, State 1, Line 1A floating point exception occurred in the user process. Currenttransaction is canceled.If I run this query:select TOP 2000TheoVolImpliedfrom OptionTradeswhere TheoVolImplied > 0.0It works fine with no problems.If I run this query:select TOP 2000TheoVolImpliedfrom OptionTradeswhere ReutersSymbol = 'IBM.N'It works fine with no problems.Anyone have any ideas about what might be wrong?
View 2 Replies View Related