1
vote
1answer
23 views
What’s a good way to handle “async” commits?
I have a WCF service that uses ODP.NET to read data from an Oracle database. The service also writes to the database, but indirectly, as all updates and inserts are achieved throug …
0
votes
1answer
23 views
WCF Transaction Flow Question
I would like to configure WCF service operations to accept a transaction if my client sends one, but not to create one if none is sent. I think this would be similar to the Suppor …
0
votes
3answers
110 views
100% foolproof c# ftp file transfer code (with transactions if possible)
hey guys i want to write a small c# ftp client class library which basically needs to transfer files to a ftp location
what i want is a 100% foolproof code where i can get some so …
2
votes
2answers
77 views
question about pl/sql exception
hi all.
the following text is an excerpt of oracle documentation Oracle® Database PL/SQL Language Reference 11g Release 1 (11.1) :
Unhandled exceptions can also affect
subpr …
0
votes
1answer
21 views
How to restart transactions on deadlock/lock-timeout in Spring?
Hi,
What is the best practice on implementing a transaction restart upon deadlock or lock timeout exceptions when using Spring (specifically the Spring recommended approach: decla …
0
votes
2answers
37 views
When do I use save!, create! and update_attributes! in Rails?
I'm trying to figure out when to use the bang! versions for saving and updating records? I've read and heard that you don't need them if you're just saving one record or updating a …
2
votes
1answer
23 views
Examples or Uses Cases to explain EJB Transaction Attributes
There are some good explanations of EJB Transaction Attributes (and annotations) out there, for example, OpenEJB's.
But sometimes when I try to cover this with someone who hasn't …
1
vote
3answers
53 views
SQL Server - transactions roll back on error?
We have client app that is running some SQL on a SQL Server 2005 such as the following:
BEGIN TRAN;
INSERT INTO myTable (myColumns ...) VALUES (myValues ...);
INSERT INTO myTable …
0
votes
1answer
17 views
biztalk server ftp file transfer success / failure acknowledgement
hey guys i am a newbie when it comes to biztalk
how do i enable a file by file ftp transfer job on biztalk where biztalk acknowledges for every file transfer whether it was a succ …
1
vote
1answer
69 views
mySQL - Table locking vs Row locking
Application Description
I have a table which stores id's which represent area's on a map. Each map contains 1000 areas. A territory is any number of area's of a map that are touch …
1
vote
3answers
65 views
mySQL - Prevent double booking
I am trying to work out the best way to stop double 'booking' in my application.
I have a table of unique id's each can be sold only once.
My current idea is to use a transaction …
7
votes
4answers
118 views
TransactionScope automatically escalating to MSDTC on some machines?
In our project we're using TransactionScope's to ensure our data access layer performs it's actions in a transaction. We're aiming to not require the MSDTC service to be enabled on …
1
vote
2answers
55 views
Data committed even though System.Transactions.TransactionScope.Commit() not called
Under what circumstances can code wrapped in a System.Transactions.TransactionScope still commit, even though an exception was thrown and the outermost scope never had commit calle …
0
votes
1answer
13 views
InnoDB Transaction Help - Select then if Not Found Add Unique Row
Hi all!
I have a mysql table that contains IPAddress parts
TABLE `EndPoints`(
`EndPointId` BIGINT(19) UNSIGNED NOT NULL AUTO_INCREMENT ,
`IpPart1` TINYINT(3) UNSIGNED NOT …
0
votes
2answers
17 views
How to find out where a COMMIT might be happening?
I'm refactoring some code, converting a number of related updates into a single transaction.
This is using JDBC, MySQL, InnoDB.
I believe there is an unwanted COMMIT still happen …
