active questions tagged transactions - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T11:05:21Zhttp://stackoverflow.com/feeds/tag/transactionshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1767416/wcf-transaction-flow-question0WCF Transaction Flow QuestionDavid Madrian2009-11-19T23:46:12Z2009-12-02T05:40:42Z
<p>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 Supported transaction attribute in COM+. </p>
<p>Does anyone know whether this can be accomplished with WCF transactions?</p>
<p>I am trying to accomplish this all by using the WCF transaction programming model (e.g. TransactionFlowAttribute and TransactionScopeRequired on service operations) rather than using the System.Transactions explicit transaction programming model. </p>
<p>Here's an example of why I think I want to be able to do this:</p>
<p>ServiceA implements a high-level business operation which invokes two data services. An operation in Service B does a single database update and an operation in Service C does two database updates. </p>
<p>ServiceA ----> ServiceB ----> <1 DB update><br>
|<br>
V Service C ----> <2 DB updates> </p>
<p>ServiceC's 2 database updates need to be performed within a transaction with its root on ServiceC. Service B's single database update does NOT need to take place within a transaction. However, ServiceA defines a transaction that requires ServiceB and ServiceC's database updates two happen as an atomic unit of work. </p>
<p>My question is how I can configure ServiceB so that when it's invoked by ServiceA it enlists in that transaction. However, when ServiceB is invoked directly rather than through Service A it does not need to run within a transaction because it's only doing one database update. </p>
<p>Thanks,</p>
<p>David Madrian</p>
http://stackoverflow.com/questions/1425877/transactions-scope-in-wcf0Transactions scope in WCFBalaji2009-09-15T08:27:50Z2009-12-01T15:09:18Z
<p>I need to make call to a WCF service in a Transaction scope.
I have never tried transactions in WCF serivce.</p>
<p>Does anyone have experience in similar requirement?</p>
http://stackoverflow.com/questions/1825833/transaction-stored-procedure-c1Transaction Stored Procedure C#Justin2009-12-01T12:17:34Z2009-12-01T15:03:55Z
<p>Hi All,<br>
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 table.
First SP has a select query and an update query.
Second SP has a single update query.</p>
<p>Now I want to call these SP in a transaction mode(Either all succeeds or is second SP fails rollback first SP). I have used "TransactionScope" within my C# code but is doesnt seem to work fine. ie when I stop the Console App sometimes I see that the first SP is executed and the second one fails.</p>
<p>Can anybody suggest me on this.</p>
<p>Regards,<br>
Justin Samuel.</p>
http://stackoverflow.com/questions/1825732/is-transactions-over-machine-boundary-via-tcp-ip-possible1Is transactions over machine boundary (via tcp-ip) possible?reinier2009-12-01T11:59:23Z2009-12-01T12:11:28Z
<p>Hi,</p>
<p>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 operations) fails, or the communication drops, everything is rolled back? (just like databases can)</p>
<p>I ask this, since on the hardware level, one always says that one can not make atomic operations (a very important ingredient of transactions) without an atomic processor operation (test and set).</p>
<p>But since now we are talking about multiple machines, this doesn't fly.</p>
<p>As an example how this would be tricky: Say I have a protocol to issue a command on a remote machine, and get a response back. It could be that the method is called, but during the transit of the response, the connection dies. It could then also very well be that the machine which performed the operation thinks everything was ok, but the receiving machine has never gotten the answer.</p>
<p>Adding Ack's doesn't help since also the ack's might be lost in transit.</p>
<p>Interested to read others thoughts (and to learn that some professor 27 years ago already came up with a rock solid solution probably).</p>
<p>R</p>
http://stackoverflow.com/questions/1824841/enabling-global-transactions-on-was-for-mq-jdbc-data-sources0Enabling global transactions on WAS for MQ + JDBC data sourcesaa2009-12-01T08:51:27Z2009-12-01T09:01:35Z
<p>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</p>
<p>I am using following configuration for it:</p>
<pre><code><tx:jta-transaction-manager/>
<jms:listener-container connection-factory="jmsConnectionFactory" transaction-manager="transactionManager">
<jms:listener destination="A" ref="aresponseMessageListener" />
<jms:listener destination="B" ref="arequestMessageListener" />
</jms:listener-container>
</code></pre>
http://stackoverflow.com/questions/1793218/ecommerce-stock-management-with-external-payment-gateway3ecommerce stock management with external payment gatewaygpilotino2009-11-24T21:58:26Z2009-11-30T21:28:02Z
<p>this question is similar to <a href="http://stackoverflow.com/questions/1357143/shopping-cart-and-stock-management">this one</a> but with a twist (so the answer accepted for the older question is not valid in the following scenario)</p>
<p>i have a site for selling tickets (PHP/MYSQL). Suppose i have just one ticket left:</p>
<ul>
<li>buyer A puts the ticket in her cart and goes to the payment gateway page (ie. paypal) </li>
<li>the ticket is locked for 5 minutes, so buyer B cannot buy it</li>
<li>buyer A waits 5 minutes with the paypal page open, doing nothing</li>
<li>the ticket is unlocked so buyer B puts it in his cart and goes the the paypal page</li>
<li>buyer A executes the payment procedure on paypal with success</li>
<li>buyer B executes the payment procedure on paypal with success</li>
</ul>
<p>i can wait longer but i don't think this will solve the issue in the more general case. moreover, if i do that, it will be possibile to make some kind of DoS, locking the items in stock for large periods of time.</p>
<p>what's the best way to handle this scenario ?</p>
http://stackoverflow.com/questions/1392702/with-nhibernate-and-transaction-do-i-rollback-on-commit-failure-or-does-it-auto-r1With NHibernate and Transaction do I rollback on commit failure or does it auto rollback on single commit?mattcodes2009-09-08T08:26:53Z2009-11-30T16:55:58Z
<p>I've built the following Dispose method for my Unit Of Work which essentially wraps the active NH session & transaction (transaction set as variable after opening session as to not be replaced if NH session gets new transaction after error)</p>
<pre><code> public void Dispose()
{
Func<ITransaction,bool> transactionStateOkayFunc =
trans => trans != null && trans.IsActive && !trans.WasRolledBack;
try {
if(transactionStateOkayFunc(this.transaction))
{
if (HasErrored)
{
transaction.Rollback();
}
else
{
try
{
transaction.Commit();
} catch (Exception)
{
if(transactionStateOkayFunc(transaction)) transaction.Rollback();
throw;
}
}
}
} finally
{
if(transaction != null) transaction.Dispose();
if(session.IsOpen) session.Close();
}
</code></pre>
<p>I can't help feeling that code is a little bloated, will a transaction automatically rollback is a discrete Commit fails in the case of non-nested transactions?</p>
<p>Will Commit or Rollback automatically Dipose the transaction? If not will Session.Close() automatically dispose the associated transaction?</p>
http://stackoverflow.com/questions/1799845/insert-data-ignoring-current-transaction2INSERT data ignoring current transactiongalets2009-11-25T20:47:42Z2009-11-30T16:18:12Z
<p>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:</p>
<pre><code>BEGIN TRY
...
END TRY
BEGIN CATCH
INSERT INTO [dbo.errors] (...)
VALUES ( ERROR_PROCEDURE(), ERROR_NUMBER(), ERROR_MESSAGE(), ... )
END CATCH
</code></pre>
<p>To make long story short some of this code must be executing withing a transaction. I'm figuring out that nothing gets written into log, since transaction rollback will roll back the error log entries as well. Anything can be done about it?</p>
<p>EDIT: I do know how to get around by doing a rollback/commit before an INSERT to log. My question was, if there is a known way to insert data so that it is unaffected by a transaction in progress. For example: it could be done if I insert it using a separate connection. Only I wanted to find the way to do it inside single SQL statement</p>
http://stackoverflow.com/questions/1810313/performance-penalty-of-message-passing-as-opposed-to-shared-data3performance penalty of message passing as opposed to shared dataajay2009-11-27T19:24:34Z2009-11-30T14:55:30Z
<p>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.</p>
<p>But what I am concerned with is the following:</p>
<ol>
<li>AFAIK, Erlang does not guarantee Message delivery. Messages might be lost. Won't the algorithm and code bloat and be complicated again if you have to worry about loss of messages? Whatever distributed algorithm you use must not depend on guaranteed delivery of messages.</li>
<li>What if the Message is a complicated object? Isn't there a huge performance penalty in copying and sending the messages vs. say keeping it in a shared location (like a DB that both processes can access)?</li>
<li>Can you really totally do away with shared states? I don't think so. For e.g. in a DB, you have to access and modify the same record. You cannot use message passing there. You need to have locking or assume Optimistic concurrency control mechanisms and then do rollbacks on errors. How does Mnesia work?</li>
<li>Also, it is not the case that you always need to worry about concurrency. Any project will also have a large piece of code that doesn't have to do anything with concurrency or transactions at all (but they do have performance and speed as a concern). A lot of these algorithms depend on shared states (that's why pass-by-reference or pointers are so useful). </li>
</ol>
<p>Given this fact, writing programs in Erlang etc is a pain because you are prevented from doing any of these things. May be, it makes programs robust, but for things like Solving a Linear Programming problem or Computing the convex hulll etc. performance is more important and forcing immutability etc. on the algorithm when it has nothing to do with Concurrency/Transactions is a poor decision. Isn't it?</p>
http://stackoverflow.com/questions/1814510/transaction-managed-block-ended-with-pending-commit-rollback0Transaction managed block ended with pending COMMIT/ROLLBACKMark2009-11-29T03:03:57Z2009-11-29T03:20:01Z
<p>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</p>
<blockquote>
<p>Transaction managed block ended with pending COMMIT/ROLLBACK</p>
</blockquote>
<p>As soon as it hits <code>product.save()</code>. It never reaches the following <code>assert</code>.</p>
<pre><code>@login_required
@transaction.commit_manually
def add(req):
if req.method == 'POST':
form = ArticleForm(req.POST)
if form.is_valid():
article = form.save(commit=False)
article.author = req.user
product_name = form.cleaned_data['product_name']
try:
article.product = Component.objects.get(name=product_name)
except:
#article.product = Component.objects.create(name=product_name)
#assert False, 'a'
product = Component(name=product_name)
#assert False, 'b'
product.save() # <-- fails here
assert False, 'c'
article.product = product
assert False, 'd'
</code></pre>
<p>How is it reaching the end of the block? Unless the <code>product.save()</code> is silently failing somehow, and aborting the function??</p>
<p><hr></p>
<p>Nevermind. It had NOTHING to do with transactions at all. I think I had a parse error somewhere because I must have deleted the brackets off a <code>save()</code> or something... completely useless debugger.</p>
http://stackoverflow.com/questions/1813769/what-is-the-point-of-rollback-transaction-namedtransaction1What is the point of "ROLLBACK TRANSACTION named_transaction"?Chris Simmons2009-11-28T20:59:33Z2009-11-28T21:14:42Z
<p>I've read through MSDN on <a href="http://msdn.microsoft.com/en-us/library/ms181299.aspx" rel="nofollow">ROLLBACK TRANSACTION</a> and <a href="http://msdn.microsoft.com/en-us/library/ms189336.aspx" rel="nofollow">nesting transactions</a>. While I see the point of <code>ROLLBACK TRANSACTION savepointname</code>, I do not understand <code>ROLLBACK TRANSACTION transactionname</code>. </p>
<ol>
<li>It only works when <code>transactionname</code> is the outermost transaction</li>
<li><code>ROLLBACK</code> always rolls back the entire transaction "stack", except in the case of <code>savepointname</code></li>
</ol>
<p>Basically, as I read the documentation, except in the case of a save point, <code>ROLLBACK</code> rolls back all transactions (to <code>@@TRANCOUNT=0</code>). The only difference I can see is this snippet:</p>
<p>"If a ROLLBACK TRANSACTION transaction_name statement using the name of the outer transaction is executed at any level of a set of nested transactions, all of the <i>nested transactions</i> are rolled back. If a ROLLBACK WORK or ROLLBACK TRANSACTION statement without a transaction_name parameter is executed at any level of a set of nested transaction, it rolls back all of the nested transactions, including the outermost transaction."</p>
<p>From the reading, this suggests to me that rolling back a named transaction (which must be the name of the outermost transaction), only the nested transactions will be rolled back. This would give some meaning to rolling back a named transaction. So I set up a test:</p>
<pre><code>CREATE TABLE #TEMP (id varchar(50))
INSERT INTO #TEMP (id) VALUES ('NO')
SELECT id AS NOTRAN FROM #TEMP
SELECT @@TRANCOUNT AS NOTRAN_TRANCOUNT
BEGIN TRAN OUTERTRAN
INSERT INTO #TEMP (id) VALUES ('OUTER')
SELECT id AS OUTERTRAN FROM #TEMP
SELECT @@TRANCOUNT AS OUTERTRAN_TRANCOUNT
BEGIN TRAN INNERTRAN
INSERT INTO #TEMP (id) VALUES ('INNER')
SELECT id AS INNERTRAN FROM #TEMP
SELECT @@TRANCOUNT AS INNERTRAN_TRANCOUNT
ROLLBACK TRAN OUTERTRAN
IF @@TRANCOUNT > 0 ROLLBACK TRAN
SELECT id AS AFTERROLLBACK FROM #TEMP
SELECT @@TRANCOUNT AS AFTERROLLBACK_TRANCOUNT
DROP TABLE #TEMP
</code></pre>
<p>results in (all "X row(s) affected" stuff removed)</p>
<pre><code>NOTRAN
--------------------------------------------------
NO
NOTRAN_TRANCOUNT
----------------
0
OUTERTRAN
--------------------------------------------------
NO
OUTER
OUTERTRAN_TRANCOUNT
-------------------
1
INNERTRAN
--------------------------------------------------
NO
OUTER
INNER
INNERTRAN_TRANCOUNT
-------------------
2
AFTERROLLBACK
--------------------------------------------------
NO
AFTERROLLBACK_TRANCOUNT
-----------------------
0
</code></pre>
<p>Note that there is <i>no difference</i> to the output when I change </p>
<pre><code>ROLLBACK TRAN OUTERTRAN
</code></pre>
<p>to simply</p>
<pre><code>ROLLBACK TRAN
</code></pre>
<p>So what is the point of <code>ROLLBACK TRANSACTION <b>named_transaction</b></code>?</p>
http://stackoverflow.com/questions/1808766/begin-try-catch-on-sql-server-2005-how-to-send-the-errorstuff-to-the-calling-pa0begin try catch on sql server 2005, how to send the ERROR_stuff to the calling parent?Fredou2009-11-27T13:25:52Z2009-11-28T10:22:01Z
<p>you have this procedure</p>
<pre><code> CREATE PROCEDURE dbo.test1
AS
BEGIN
begin transaction
begin try
exec dbo.test2
commit transaction
end try
begin catch
SELECT
ERROR_NUMBER() AS ErrorNumber
,ERROR_SEVERITY() AS ErrorSeverity
,ERROR_STATE() AS ErrorState
,ERROR_PROCEDURE() AS ErrorProcedure
,ERROR_LINE() AS ErrorLine
,ERROR_MESSAGE() AS ErrorMessage
rollback transaction
end catch
END
</code></pre>
<p>and this one</p>
<pre><code> CREATE PROCEDURE dbo.test2
AS
BEGIN
begin transaction
begin try
commit transaction
end try
begin catch
rollback transaction
if @@trancount = 0
begin
SELECT
ERROR_NUMBER() AS ErrorNumber
,ERROR_SEVERITY() AS ErrorSeverity
,ERROR_STATE() AS ErrorState
,ERROR_PROCEDURE() AS ErrorProcedure
,ERROR_LINE() AS ErrorLine
,ERROR_MESSAGE() AS ErrorMessage
end
else
--return the select above to the parent while raising an error
end catch
END
</code></pre>
<p>how to do re-throw the error to the calling parent?</p>
<p>I know I could do this;</p>
<pre><code> raiserror(ERROR_MESSAGE(),ERROR_SEVERITY(),ERROR_STATE())
</code></pre>
<p>but how to get <strong>ERROR_LINE()</strong>, <strong>ERROR_PROCEDURE()</strong> and <strong>ERROR_NUMBER()</strong>?</p>
<p>I need to be able to just do the same select in every catch, if possible</p>
http://stackoverflow.com/questions/1811752/download-financial-transactions0Download financial transactionssoundslike2009-11-28T06:12:16Z2009-11-28T06:12:16Z
<p>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?</p>
http://stackoverflow.com/questions/1810027/can-a-sql-server-database-answer-during-a-transaction3Can a SQL Server database answer during a transaction?Wilhelm2009-11-27T18:08:15Z2009-11-27T22:34:51Z
<p>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.</p>
<p>I have an application that generates a great number of results (500K+) and saves them in a database. If one result generation fails, I would like to not save any of the results. So I put all the database inserts within a transaction that gets rolled back if a result cannot be generated.</p>
<p>However the table gets locked down until all the results are written, which is not what I intended. Or at least I guess it is locked down, no SELECT query responds until the insertion ends.</p>
<p>Is there a way to make the the transaction to not lock the table while a transaction is active?</p>
<p>Is it even a good idea to use a transaction with so many inserts being made?</p>
http://stackoverflow.com/questions/1789467/manual-transactions-with-seam-pojo3Manual Transactions with Seam POJODamo2009-11-24T11:25:42Z2009-11-27T12:55:34Z
<p>What is best practice for using Database Transactions with Seam when not using EJBs - ie. when deploying Seam as a WAR?</p>
<p>By default Seam JavaBeans support Transactions. I can annotate a method with @Transactional and that will ensure that a transaction is required. Or I can use @Transactional(NEVER) or @Transactional(MANDATORY). What I can't find out how to do is to create my own Transaction, set a timeout, begin and then commit/rollback.</p>
<p>I have tried using: </p>
<pre><code>UserTransaction utx = Transaction.instance();
utx.setTransactionTimeout(2000);
utx.begin();
</code></pre>
<p>But it is either ignored if a Transaction is already in progress or returns a javax.transaction.NotSupportedException if I annotate the method with @Transactional(NEVER)</p>
<p>Any help appreciated. Thanks.</p>
http://stackoverflow.com/questions/1806750/msdtc-and-isolation-level0msdtc and isolation levelBuzz2009-11-27T04:36:58Z2009-11-27T12:46:02Z
<p>Hi,</p>
<p>I need some clarification how MS-DTC will behave in scenario given below</p>
<p>1) I have more than one connection in within a transactionscope (Isolation level - ReadCommited),which will bring MS- DTC into action now :</p>
<p>a) Will MS-DTC automatically change isolation level to SERIALIZABLE.</p>
<p>b) (Imp) If above answer is yes and I have implemented Row versioning based isolation level i.e. in addition to TransactionScope, i have also enabled the READ_COMMITTED_SNAPSHOT database option "ON", will it remain in effect means will it support "SERIALIZABLE" isolation level.</p>
<pre><code>void OuterMethod() {
TransactionOptions tso = new TransactionOptions();
tso.IsolationLevel = System.Transactions.IsolationLevel.ReadCommitted;
using (TransactionScope tx = new TransactionScope(TransactionScopeOption.RequiresNew, tso)) {
InnerMethod("select * from testtable");
InnerMethod("update testtable set col1 = N'new value'");
tx.Complete();
}
}
static void InnerMethod(string sqlText) {
using (SqlConnection conn = SqlConnection(connStr)) {
conn.Open();
SqlCommand cmd = conn.CreateCommand();
cmd.ExecuteNonQuery();
}
}
</code></pre>
<p>Thanks</p>
http://stackoverflow.com/questions/1807188/transaction-count-exception-in-vb-net-sql-exception0Transaction count exception in vb.net (SQL Exception)Dot Net Developer2009-11-27T07:05:24Z2009-11-27T08:01:03Z
<p>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 that i created a sotredprocedure in which i wrote insert command first and after that i wrote a update command for same recored but it gave me below error
SQlException:
Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count = 1, current count = 2. Uncommittable transaction is detected at the end of the batch. The transaction is rolled back. Some Error in stored procedure execution</p>
<p>i tried in another way also like: i just wrote insert command in storedprocedure and i created a afterInsert trigger in which i am firing update command. but still i am facing above exception</p>
<p>Details:
Table structure:</p>
<pre><code>CREATE TABLE [dbo].[TabStoreGRNMaster](
[pk_grnm_id] [bigint] IDENTITY(1,1) NOT NULL,
[fk_col_id] [bigint] NULL,
[fk_sup_id] [bigint] NULL,
[grnm_grnno] [varchar](50) NULL,
[grnm_date] [nvarchar](10) NULL,
[grnm_partyinvno] [varchar](50) NULL,
[grnm_invdate] [nvarchar](10) NULL,
[grnm_freight] [numeric](7, 2) NULL,
[grnm_otherchrg] [numeric](7, 2) NULL,
[grnm_roundoff] [bit] NULL,
[Fk_User_Id] [bigint] NULL,
[grnm_EntryDate] [nvarchar](8) NULL,
CONSTRAINT [PK_TabStoreGRNMaster] PRIMARY KEY CLUSTERED
(
[pk_grnm_id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
</code></pre>
<p>storedprocedure:</p>
<pre><code>USE [Kollege]
GO
/****** Object: StoredProcedure [dbo].[StoreGRNMaster] Script Date: 11/27/2009 10:20:37 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[StoreGRNMaster]
(
@pk_grnm_id [bigint] output ,
@fk_col_id [bigint] = 0 ,
@fk_sup_id [bigint] = 0 ,
@grnm_grnno [varchar](50) = '',
@grnm_date [nvarchar](10) = null,
@grnm_partyinvno [varchar](50) = '',
@grnm_invdate [nvarchar](10) = null,
@grnm_freight [numeric] = 0 ,
@grnm_otherchrg [numeric] = 0 ,
@grnm_roundoff [bit] = 0 ,
@Fk_User_Id [bigint] = 0 ,
@grnm_EntryDate [nvarchar](8) = null,
@opt [BIGINT] =0,
@del [bit] =0
)
as
begin
SET NOCOUNT ON;
BEGIN TRY
begin transaction
if isnull(@opt,0) = 0 begin
INSERT INTO TabStoreGRNMaster
(
fk_col_id,
fk_sup_id,
grnm_grnno,
grnm_date,
grnm_partyinvno,
grnm_invdate,
grnm_freight,
grnm_otherchrg,
grnm_roundoff,
Fk_User_Id,
grnm_EntryDate
)
VALUES
(
@fk_col_id,
@fk_sup_id,
@grnm_grnno,
@grnm_date,
@grnm_partyinvno,
@grnm_invdate,
@grnm_freight,
@grnm_otherchrg,
@grnm_roundoff,
@Fk_User_Id,
@grnm_EntryDate
)
set @pk_grnm_id = @@identity
end
else
begin
if @del = 0
UPDATE TabStoreGRNMaster
SET
fk_col_id = @fk_col_id,
fk_sup_id = @fk_sup_id,
grnm_grnno = @grnm_grnno,
grnm_date = @grnm_date,
grnm_partyinvno = @grnm_partyinvno,
grnm_invdate = @grnm_invdate,
grnm_freight = @grnm_freight,
grnm_otherchrg = @grnm_otherchrg,
grnm_roundoff = @grnm_roundoff,
Fk_User_Id = @Fk_User_Id,
grnm_EntryDate = @grnm_EntryDate
WHERE
(
pk_grnm_id = @opt
)
if @del=1 and isnull(@opt,0) <> 0
DELETE from [TabStoreGRNMaster]
WHERE
( [pk_grnm_id] = @opt)
end
commit transaction
END TRY
BEGIN CATCH
raiserror ('Some Error in stored procedure execution',1,1)
END CATCH;
END
</code></pre>
<p>Trigger:</p>
<pre><code>alter TRIGGER TGRStoreGRNMasterCode
ON tabStoreGRNMaster
AFTER INSERT
AS
begin
declare @pk varchar(10)
declare @colcode varchar(10)
declare @current_session varchar(20)
declare @colid bigint
set @pk = (select pk_grnm_id from Inserted)
--set @colid = (select fk_col_id from Inserted)
set @colcode= 'jiet'--(select col_code from tabcollegemaster where pk_col_id =5) (when i replace word 'Jiet' with commented qry i gets sql exception otherwise its working fine)
select @current_session = Ses_abbrev from TabAcaSessionMast where ses_current = 1
--update tabStoreGRNMaster set grnm_grnno= @colcode +'/' +@current_session+ '/' + @pk where pk_grnm_id=convert(bigint,@pk)
update tabStoreGRNMaster set grnm_grnno= (select col_code from tabcollegemaster where pk_col_id=5) +'/' +@current_session+ '/' + @pk where pk_grnm_id=convert(bigint,@pk)
end
</code></pre>
http://stackoverflow.com/questions/1802426/transactionscope-allows-partial-update-even-though-second-service-errors0TransactionScope Allows Partial Update Even Though Second Service ErrorsSohnee2009-11-26T09:00:31Z2009-11-26T10:42:19Z
<p>I have had a good trawl through related questions and implemented suggestions found, but I still have a problem with .NET TransactionScope.</p>
<p>I am calling two WCF services from a method and even though the second service errors (deliberately in this case) the first service doesn't roll back. I have created a simple test application to demonstrate the problem.</p>
<p>Here is the calling method:</p>
<pre><code>private void TryATransaction()
{
ServiceReference1.IService1 service = new ServiceReference1.Service1Client();
ServiceReference2.IService1 service2 = new ServiceReference2.Service1Client();
using (TransactionScope scope = new TransactionScope())
{
service.TestMethod("one");
service2.UpdateSomethingElse("two");
scope.Complete();
}
}
</code></pre>
<p>The first service looks like this (connections made anonymous):</p>
<pre><code>public bool TestMethod(string anything)
{
using (TransactionScope scope = new TransactionScope())
{
// connect to a db
using (SqlConnection connection = new SqlConnection("Data Source=DATASOURCE;Initial Catalog=DATABASE;Integrated Security=SSPI;Transaction Binding=Explicit Unbind;"))
{
connection.Open();
// save something
SqlCommand command1 = new SqlCommand("EXECUTE [DATABASE].[dbo].[uspUpdateCustomer] 3, 'test@test.com', 1, null", connection);
command1.ExecuteNonQuery();
connection.Close();
}
scope.Complete();
}
return true;
}
</code></pre>
<p>And the second service is identical to the first service, except that it updates a different field in the database.</p>
<p>1) If I run this without forcing an error, it updates all fields fine.</p>
<p>2) When I run this and force an error in the second service, the update from the first service gets committed to the database, whereas the second service gets rolled back (the error is AFTER the ExecuteNonQuery statement).</p>
<p>This example code essentially follows the examples found here:
<a href="http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx</a></p>
<p>And I added Explicit Unbind, which was recommended in other related questions.</p>
<p>Your suggestions are very welcome - and I'm happy to add more information if it's required.</p>
<p><strong>Extra Information</strong></p>
<p>The distributed identifier seems to be 00000000-0000-0000-0000-000000000000 at all times - I don't know if this is a clue.</p>
<p>Here is the dubug output of distributed id and local id (in that order)</p>
<blockquote>
<p>Current transaction is
00000000-0000-0000-0000-000000000000 -
f6446876-496d-488c-a21c-1e4c4295d50c:8</p>
<p>Current transaction is
00000000-0000-0000-0000-000000000000 -
7edd5ba3-7f5a-42af-b9ca-37b3862c26a7:2</p>
<p>Current transaction is
00000000-0000-0000-0000-000000000000 -
6fa0e3f7-b655-40ad-8bdd-f0670de79a49:2</p>
</blockquote>
<p>The transaction is being started via the code behind an aspx page in my example app.</p>
http://stackoverflow.com/questions/1801259/sqlite-only-supports-1-transaction0sqlite only supports 1 transaction?acidzombie242009-11-26T02:34:07Z2009-11-26T02:47:32Z
<p>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 transaction data but doesnt start a transaction itself? Actually while looking i see this in System.Data.SQLite</p>
<pre><code>// Summary:
// The transaction associated with this command. SQLite only supports one transaction
// per connection, so this property forwards to the command's underlying connection.
[Browsable(false)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public SQLiteTransaction Transaction { get; set; }
</code></pre>
<p>So SQLite only supports one transaction period? i tried opening another connection but then my transaction threw an exception about the DB being locked. So i cannot have more then one connection concurrent as well?</p>
http://stackoverflow.com/questions/1797032/how-does-transaction-suspension-work-in-mysql0How does transaction suspension work in MySQL?Asaf Mesika2009-11-25T13:51:27Z2009-11-26T02:31:48Z
<p>Hi,</p>
<p>In the Spring Framework manual they state that for a PROPAGATION_REQUIRES_NEW the current transaction will be suspended. </p>
<p>What does that "suspended transaction"?
The timer for the timeout stops counting on the current transaction?
What are the actual implication of such suspension?</p>
<p>Thank you,</p>
<p>Asaf</p>
http://stackoverflow.com/questions/1634961/transaction-between-several-dao-layers0Transaction between several DAO layers ?umanga2009-10-28T02:51:47Z2009-11-25T09:10:33Z
<p>As shown below, I am accessing a Service layer method inside of another DAO.
(Every DAO in the system is implemented using HibernateDAOSupport class)</p>
<p>I wanted to rollback the transaction when #1 or #2 (commented in the following code) is failed.
But when #2 throws an exception, #1 does not get rolled back and I can see the entries in the database.</p>
<pre><code>@Transactional(readOnly=false, rollbackFor={DuplicateEmailException.class,DuplicateLoginIdException.class,IdentityException.class},propagation=Propagation.REQUIRES_NEW)
public void createUserProfile(UserProfile profile)
throws DuplicateEmailException, DuplicateLoginIdException,
IdentityException {
// #1 create principal using Identity Service
identityService.createPrincipal(profile.getSecurityPrincipal());
try {
// #2 save user profile using Hibernate Template
getHibernateTemplate().save(profile);
} catch (RuntimeException e) {
throw new IdentityException("UseProfile create Error", e);
}
}
</code></pre>
<p>Here is the signature for createPrincipal() method of'IdentityService'.</p>
<pre><code>public void createPrincipal(Principal principal) throws DuplicateEmailException,DuplicateLoginIdException,IdentityException ;
</code></pre>
<p>There's no Transaction management configured in 'IdentityService'</p>
<p>What I am doing wrong here ?</p>
http://stackoverflow.com/questions/1794334/is-intentional-shared-lock1IS (Intentional Shared) lockSheldon2009-11-25T02:47:57Z2009-11-25T04:52:31Z
<p>Hi, can anyone give a simple example of a db transaction using an Intentional Shared lock, and (if can) one using an intentional exclusive lock.</p>
<p>I'm studying them and trying to understand.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1787948/how-to-maintain-transaction-in-n-tier-architecture1How To Maintain Transaction in N-Tier ArchitectureDot Net Developer2009-11-24T05:16:13Z2009-11-24T20:26:16Z
<p>I am developing application in N-Tier Architecture. as we all know that we need to implement transactions while insert/update/delete operation. please tell me how to use transaction in c#.net in N-Tier architecture.
my architecture is like this
Applicationform->middle_Layre->Factory->DataAccessLayre->StoredProcedure->Table
in application form i create object of middleLayer and pass data in Insert/update/delete function of middle layer.
i am creating object of sqlcommand in factoryclass and fill the data which i gets from middle layer and pass that object os sqlcommand to DAL.</p>
http://stackoverflow.com/questions/1791821/rails-activerecord-transaction-does-not-finish0Rails ActiveRecord Transaction does not finishPanosJee2009-11-24T17:58:46Z2009-11-24T18:23:50Z
<p>Hi everyone,
I have a Transaction for a batch insert/update block and all of sudden it stopped working.
The are no errors or exception risen and it seems like Rails stops just before the <code>end</code> of the Transaction blog so the methods does not return.
I restarted both MySQL and the system but still.</p>
http://stackoverflow.com/questions/1788754/entity-framework-transaction-model1Entity Framework transaction modelcreaturita2009-11-24T08:51:17Z2009-11-24T08:51:17Z
<p>Hello,</p>
<p>I would like to know if it is possible to use another transaction system in EF that it is not System.Transaction. Could I use an abstraction of the system.transaction in it?</p>
<p>Regards.</p>
http://stackoverflow.com/questions/240471/should-i-use-msmq-or-sql-service-broker-for-transactions0Should I use MSMQ or SQL Service Broker for transactions?Ed Schwehm2008-10-27T16:19:43Z2009-11-23T03:12:27Z
<p>Hey Stackoverflow,</p>
<p>I've been asked by my team leader to investigate MSMQ as an option for the new version of our product. We use SQL Service Broker in our current version. I've done my fair share of experimentation and Googling to find which product is better for my needs, but I thought I'd ask the best site I know for programming answers.</p>
<p>Some details:</p>
<ul>
<li>Our client is .NET 1.1 and 2.0 code; this is where the message will be sent from.</li>
<li>The target in a SQL Server 2005 instance. All messages end up being database updates or inserts.</li>
<li>We will send several updates that must be treated as a transaction.</li>
<li>We have to have perfect message recoverability; no messages can be lost. </li>
<li>We have to be asynchronous and able to accept messages even when the target SQL server is down.</li>
<li>Developing our own queuing solution isn't an option; we're a small team. </li>
</ul>
<p>Things I've discovered so far:</p>
<ul>
<li>Both MSMQ and SQL Service Broker can do the job.</li>
<li>It appears that service broker is faster for transactional messages.</li>
<li>Service Broker requires a SQL server running somewhere, whereas MSMQ needs any configured Windows machine running somewhere.</li>
<li>MSMQ appears to be better/faster/easier to set up/run in clusters.</li>
</ul>
<p>Am I missing something? Is there a clear winner here? Any thoughts, experiences, or links would be valued. Thank you!</p>
<p>EDIT: We ended up sticking with service broker because we have a custom DB framework used in some of our client code (we handle transactions better). That code captured SQL for transactions, but not . The client code was also all version 1.1 of .NET, so we'd have to upgrade all the client code. Thanks for your help!</p>
http://stackoverflow.com/questions/1777158/instantiating-transactionscope-returns-null0Instantiating TransactionScope returns nullrob_g2009-11-21T23:37:45Z2009-11-22T01:52:42Z
<p>I have some VB.NET code that creates a TransactionScope instance:</p>
<pre><code>LoggingUtility.LogDebug("UpdateCallTable", "SatComCallDataImporter", "About to associate call data with contracts")
Using ts = New TransactionScope()
LoggingUtility.LogDebug("UpdateCallTable", "SatComCallDataImporter", "Getting all unimported SatCom calls")
</code></pre>
<p>My application is throwing an exception on the call to the creation of a new TransactionScope, with "Object reference not set to an instance of an object.". The exception isn't thrown on my development machine or my test machine; only on the customers production machine, and I have no idea why. I've placed debug lines immediately before and after this line so I'm positive it is this line causing the problem.</p>
<p>A have used TransactionScopes throughout the application and this is the only place throwing the exception on the client machine.</p>
<p>"About to associate call data with contracts" gets written to the log and the next log entry is the "Object reference not set to an instance of an object".</p>
<p>Code works fine if I move it out of a transaction.</p>
<p>I've been struggling with this for 4 days now and have got no closer. </p>
http://stackoverflow.com/questions/1776944/mysql-transaction-across-many-php-requests1MySQL Transaction across many PHP RequestsMartin2009-11-21T22:07:54Z2009-11-21T22:56:54Z
<p>I would like to create an interface for manipulating invoices in a transaction-like manner.</p>
<p>The database consists of an invoices table, which holds billing information, and an invoice_lines table, which holds line items for the invoices. The website is a set of scripts which allow the addition, modification, and removal of invoices and their corresponding lines.</p>
<p>The problem I have is this, I would like the ACID properties of the database to be reflected in the web application.</p>
<ul>
<li><strong>Atomic</strong>: When the user hits save, either the entire invoice is modified or the entire invoice is not changed at all.</li>
<li><strong>Consistent</strong>: The application code already ensures consistency, lines cannot be added to non-existent invoices. Invoice IDs cannot be duplicated.</li>
<li><strong>Isolated</strong>: If a user is in the middle of a set of changes to an invoice, I would like to hide those changes from other users until the user clicks save.</li>
<li><strong>Durable</strong>: If the web site dies, the data should be safe. This already works.</li>
</ul>
<p>If I were writing a desktop application, it would maintain a connection to the MySQL database at all times, allowing me to simply use the BEGIN TRANSACTION and COMMIT at the beginning and end of the edit.</p>
<p>From what I understand you cannot BEGIN TRANSACTION on one PHP page and COMMIT on a different page because the connection is closed between pages.</p>
<p>Is there a way to make this possible without extensions? From what I have found, only <a href="http://sqlrelay.sourceforge.net/" rel="nofollow">SQL Relay</a> does this (but it is an extension).</p>
http://stackoverflow.com/questions/1754845/100-foolproof-c-ftp-file-transfer-code-with-transactions-if-possible0100% foolproof c# ftp file transfer code (with transactions if possible)Raj2009-11-18T09:55:07Z2009-11-21T18:09:40Z
<p>hey guys i want to write a small c# ftp client class library which basically needs to transfer files to a ftp location</p>
<p>what i want is a 100% foolproof code where i can get some sort of acknowledgement that the ftp file transfer has been either 100% successful or failed</p>
<p>no resume support is required</p>
<p>good to have (but secondary):</p>
<p>some sort of distributed transaction where only if the file transfer is successful for a file, i update my db for that particular file with 1 (true)... if its failed then db to be updated with 0 (false)</p>
<p>but suppose the ftp file transfer was successful, but for whatever reasons the db could not be updated, then the file over ftp should be deleted - i can easily do this using dirty c# code (where i manually try to delete the file if db update failed)</p>
<p>but what i am exactly looking for is file system based transaction over ftp... so both the file transfer as well as db update is not committed until both are successful (hence no need for manual delete)</p>
<p>any clues? </p>
http://stackoverflow.com/questions/1772843/whats-a-good-way-to-handle-async-commits1What's a good way to handle "async" commits?Mike Atlas2009-11-20T19:52:04Z2009-11-20T20:17:02Z
<p>I have a WCF service that uses <a href="http://www.oracle.com/technology/tech/windows/odpnet/index.html" rel="nofollow">ODP.NET</a> to read data from an Oracle database. The service also writes to the database, but indirectly, as all updates and inserts are achieved through an older layer of business logic that I access via COM+, which I wrap in a <a href="http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx" rel="nofollow">TransactionScope</a>. The older layer connects to Oracle via ODBC, not ODP.NET.</p>
<p>The problem I have is that because Oracle uses a two-phase-commit, and because the older business layer is using ODBC and not ODP.NET, the transaction <em>sometimes</em> returns on the <code>TransactionScope.Commit()</code> before the data is actually available for reads from the service layer. </p>
<p>I see <a href="http://stackoverflow.com/questions/983296/oracle-lag-between-commit-and-select">a similar post about a Java user having trouble like this</a> as well on Stack Overflow.</p>
<p>A representative from Oracle <a href="http://forums.oracle.com/forums/thread.jspa?threadID=958260&tstart=0" rel="nofollow">posted that there isn't much I can do about this</a> problem:</p>
<blockquote>
<p>This maybe due to the way OLETx
ITransaction::Commit() method behaves.
After phase 1 of the 2PC (i.e. the
prepare phase) if all is successful,
<strong>commit can return even if the resource
managers haven't actually committed</strong>.
After all the successful "prepare" is
a guarantee that the resource managers
cannot arbitrarily abort after this
point. Thus even though a resource
manager couldn't commit because it
didn't receive a "commit" notification
from the MSDTC (due to say a
communication failure), the
component's commit request returns
successfully. If you select rows from
the table(s) immediately you may
sometimes see the actual commit occur
in the database after you have already
executed your select. Your select will
not therefore see the new rows due to
consistent read semantics. There is
nothing we can do about this in Oracle
as the "commit success after
successful phase 1" optimization is
part of the MSDTC's implementation.</p>
</blockquote>
<p><strong><em>So, my question is this:</em></strong></p>
<p>How should I go about dealing with the possible delay ("asyc" via the title) problem of figuring out when the second part of the 2PC actually occurs, so I can be sure that data I inserted (indirectly) is actually available to be selected after the <code>Commit()</code> call returns?</p>
<p><strong>How do big systems deal with the fact that the data might not be ready for reading immediately?</strong></p>