1
vote
0answers
86 views
Hibernate session problem for transactions.
Hi all,
I am new to hibernate and trying integrate hibernate with an existing spring based application.
I configured session factory and transaction manager, transaction proxy template.
I am also …
1
vote
2answers
80 views
Too fast response
I have an ASP.NET-MVC application that:
opens a db transaction
updates a cart status and other things
submits this cart to another web server via an HttpRequest
register in database the transmission …
0
votes
4answers
58 views
Is it possible to use .NET’s TransactionScope with Sql Server 2005 without allowing promotion to DTC?
I'm dealing with some really pain in the ass servers, and I'd like them to just use transactions without DTC (for now so I can concentrate elsewhere). I use multiple databases within the scope, so …
2
votes
4answers
50 views
Creating a “secondary ID” in mysql.
I have a table that stores "records" and already has primary key.
Table A
=======
id (INT) PK auto_increments
project_id (INT)
record_text (TEXT)
This table stores "records" for all of my …
1
vote
3answers
81 views
How can I implement a MultiThreaded Transaction in C#?
I want to run set of different commands on different tables in parallel and in a transactional way, how can I do that?
More details:
I want all the commands to be distributed over threads but in a …
1
vote
3answers
30 views
What causes this MS DTC error to occur sporadically in .NET?
I receive this error sporadically throughout the day. According to the stack, it's thrown during enlistment. If it were getting this error every time I'd be able to troubleshoot and fix (typically a …
2
votes
3answers
113 views
Can a transaction have many threads?
Generally
We have some business logic that is causing a bottle neck within a transaction. The business logic queries the database for a set of data (read only), processes it, and returns an object. …
0
votes
2answers
52 views
Can I rollback Dynamic SQL in MSSQL / TSQL
Can I run a dynamic sql in a transaction and roll back using EXEC:
exec('SELECT * FROM TableA; SELECT * FROM TableB;');
Put this in a Transaction and use the @@error after the exec statement to do …
0
votes
1answer
15 views
Why are my transactional ActiveMQ messages being dropped instead of moving to the DLQ?
I create my consumer (in C# using the NMS library) as so:
ConnectionFactory factory = new ConnectionFactory(_mqServer);
_con = factory.CreateConnection();
_con.Start();
…
1
vote
2answers
57 views
Dependable insert with SQLite
I'm writing a program in C# that needs to insert data in multiple tables. The first insert returns a last insert rowid, which is in turn used to perform an insert on the other tables. In pseudo code:
…
1
vote
3answers
29 views
tempdb SQL Server locking
Hello!
Our application runs alongside another application on a customers machine.
We have put some efforts regarding avoiding long-running locks in tempdb since this obviously affects concurrency …
2
votes
3answers
31 views
triggers statement level atomicity
What does Oracle mean by "statement level atomicity"?
3
votes
5answers
71 views
Transaction on objects in C#
I was wondering if there is a way to have a transaction on object.
I'm asking this question for the following situation:
We pass our object to our dataaccesslayer. There we use transactionscope to …
0
votes
2answers
26 views
JTA: how to be test JMS and JDBC failures?
Hi all,
we're currently working on testing JTA failure behaviour, on a system that receives messages using JMS, persists them, and sends results using another class.
The whole thing is tied together …
0
votes
2answers
26 views
does ejb commits on connection?
i am using session bean in my application and transaction is controlled at EJB layer only. The problem that i am facing is with some commit. I am using the same connection as used by EJB to insert …
