1
vote
1answer
70 views
Transaction Stored Procedure C#
Hi All,
I am having a slight issue. Please guide me.
I am coding in C#(Console App). I have called 2 different stored procedure in my code. Basically both these stored procedures access the same …
1
vote
2answers
17 views
Is transactions over machine boundary (via tcp-ip) possible?
Hi,
Theoretically, can one define a protocol where one machine does some remote calls on another machine (or more than one), and where in any part of the process, if any of the machines (or …
0
votes
0answers
13 views
Enabling global transactions on WAS for MQ + JDBC data sources
Can someone help me with the settings required for enabling global transactions on a queue listener and data source. I am able to achieve it with database, but my listeners stop working
I am using …
0
votes
0answers
31 views
Transaction managed block ended with pending COMMIT/ROLLBACK
I'm just completely baffled by why I'm getting this error message. It was working fine yesterday, but now it doesn't work anymore. It stops and spits out the title exception
Transaction managed …
1
vote
1answer
38 views
What is the point of “ROLLBACK TRANSACTION named_transaction”?
I've read through MSDN on ROLLBACK TRANSACTION and nesting transactions. While I see the point of ROLLBACK TRANSACTION savepointname, I do not understand ROLLBACK TRANSACTION transactionname.
It …
0
votes
0answers
11 views
Download financial transactions
Is there a C# library or something I can use to download credit card/bank transactions to do processing like what Mint, MS Money, etc. does?
3
votes
7answers
124 views
performance penalty of message passing as opposed to shared data
There is a lot of buzz these days about not using locks and using Message passing approaches like Erlang. Or about using immutable datastructures like in Functional programming vs. C++/Java.
But what …
3
votes
2answers
81 views
Can a SQL Server database answer during a transaction?
I'm using .Net 2.0, ADO.NET, a dataset and data adapters to manage my data, and Microsoft SQL Server 2005 as database manager.
I have an application that generates a great number of results (500K+) …
0
votes
2answers
21 views
begin try catch on sql server 2005, how to send the ERROR_stuff to the calling parent?
you have this procedure
CREATE PROCEDURE dbo.test1
AS
BEGIN
begin transaction
begin try
exec dbo.test2
commit transaction
end try
begin catch
SELECT
ERROR_NUMBER() AS …
0
votes
1answer
14 views
Transaction count exception in vb.net (SQL Exception)
I am getting below exception when i am going to enter record in a table through StoredProceduer of sqlserver
i have a field which i need u update immediately after insert of new record in table.
for …
0
votes
1answer
29 views
msdtc and isolation level
Hi,
I need some clarification how MS-DTC will behave in scenario given below
1) I have more than one connection in within a transactionscope (Isolation level - ReadCommited),which will bring MS- …
0
votes
1answer
28 views
TransactionScope Allows Partial Update Even Though Second Service Errors
I have had a good trawl through related questions and implemented suggestions found, but I still have a problem with .NET TransactionScope.
I am calling two WCF services from a method and even though …
0
votes
2answers
44 views
sqlite only supports 1 transaction?
While using ADO.NET (maybe i am wrong, i dont know what its called) i notice that i can only begin a transaction with a connection and a command seems to have command.Transaction which gets me the …
2
votes
3answers
39 views
INSERT data ignoring current transaction
I have a table in my database which essentially serves as a logging destination. I use it with following code pattern in my SQL code:
BEGIN TRY
...
END TRY
BEGIN CATCH
INSERT INTO …
0
votes
1answer
13 views
How does transaction suspension work in MySQL?
Hi,
In the Spring Framework manual they state that for a PROPAGATION_REQUIRES_NEW the current transaction will be suspended.
What does that "suspended transaction"?
The timer for the timeout stops …
