2
votes
3answers
137 views
Is there a way to test a potential zombie transaction to see if it can be rolled back?
If a sql call fails, say to timeout due to deadlock, the transaction can turn into a zombie transaction-- I guess either my code or framework code does the rollback. The SqlTransaction isn't null, …
0
votes
1answer
16 views
SQL atomic choose unused item from list and allocate to another table
I have a list of Channels. I need to use an available one of these if there is one and allocate it to a session. If no available ones are left over I need to create a new one and allocate it to the …
0
votes
2answers
29 views
NHibernate Linq uses implicit transaction?
I'm using Ayende's NHibernate Linq version 2.1.2, available here, and when I use NHProf to inspect queries that use this method:
public IQueryable<T> GetAll()
{
return …
0
votes
2answers
57 views
How do I refactor three database operations that only differ by the method call?
I have three database operations like so:
public void Add<T>(T entity)
{
using (var transaction = Session.BeginTransaction())
{
if (entity is IEnumerable)
{
…
1
vote
1answer
14 views
How to enforce WCF transaction flow contracts with two services in the same project?
I just read a fantastic article about WCF transactions and flow. Pretty much only left me with one unanswered question:
I have a single project with two service methods defined:
ServiceA.svc
…
1
vote
2answers
43 views
Transactions scope in WCF
I need to make call to a WCF service in a Transaction scope.
I have never tried transactions in WCF serivce.
Does anyone have experience in similar requirement?
2
votes
1answer
39 views
How to get JDBC connections obtained from a JNDI datasource to participate in a UserTransaction using Weblogic 10.3?
I am currently retrieving both a UserTransaction and a DataSource from a Weblogic 10.3 server using JNDI.
I have set the Datasource up to 'Support Global Transactions' and to use 'Logging Last …
0
votes
1answer
17 views
Thread deadlock blocked on Hibernate transaction
I have one process which creates a database entity and then launches a second process. It then waits on the second process to find and update the database entity before completing its processing, and …
3
votes
9answers
101 views
SQL Server stops processing for 20 seconds
I can't figure this one out. On SQL Server I have a process that is run dozens of times per second (data being sent to the server). The process runs great, processing requests takes between 50ms and …
1
vote
1answer
147 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 …
3
votes
5answers
967 views
C#, Winforms & LINQ to SQL.. Datacontext lifecycle?
We use an enterprise framework that we wrote to facilitate all sorts of company specific stuff that we do.
Within the framework, we provide a LINQ to SQL ORM to use when appropriate. All of this is …
0
votes
2answers
31 views
Entity Framework without Transaction?
Is there a way to use EF without transaction? I have very simple single insert and don't want to roll-back when something goes wrong as there may be a trigger logging then raising error from the DB …
1
vote
3answers
53 views
Is it possible to select data while a transaction is occuring?
I am using transactionscope to ensure that data is being read to the database correctly. However, I may have a need to select some data (from another page) while the transaction is running. Would it …
1
vote
1answer
55 views
What’s a nice way to verify within a unit test that an ActiveRecord transaction is being used?
I have a class which performs several database operations, and I want to write a unit test which verifies that these operations are all performed within a transaction. What's a nice clean way to do …
1
vote
2answers
34 views
Trying to learn MySQL and transactions
Over the last couple of days I have tried to write an Stored procedure in MySQL and I have some truble getting it to work. Hope someone here can give me some input :)
The example I post is for …
