1
vote
4answers
56 views

Correct/Ideal way to manage SQL Connections and Transactions - C#

I have a C# application that makes many SQL calls across multiple functions and classes. The database is SQL Server 2008 R2. Currently each class or function will open it's own SQL connection whenever ...
0
votes
0answers
38 views

ADO.NET Transactions don't work properly

Hi iam getting mad about transaction in ADO.net, What i want to do: all changes in my Dataset, executed with Update method, by within transaction - this works fine, however i need execute other sql ...
1
vote
1answer
44 views

Nhibernate Reading/Saving Session Pattern, what is the exact transaction behaviour?

All, This is the pattern used to read/write data using n-hibernate session: using(var session = factory.OpenSession()) using(var tx = session.BeginTransaction()) { // all the code that uses the ...
0
votes
1answer
112 views

INSERT data into two tables failed because FK violation

I created a stored procedure like below: INSERT DATA INTO TABLE_1 VALUES ('xx', 'yy', 'zz') SET @id = @@identity INSERT DATA INTO TABLE_2 VALUES (@id, 'text') -- throws exception I call it from C# ...
0
votes
1answer
77 views

Sharing oracle transaction between Entity Framework and Oracle Client

I'm working with a legacy application that accesses an oracle database through System.Data.OracleClient using an OracleTransaction like so: Public Sub ExecuteOracleSql(ByVal sql As String) ...
1
vote
1answer
52 views

SQLConnection doesn't implement IEnlistmentNotification

I am trying to understand how to ensure that a log entry is only entered onto the file system if a transaction is committed. Please see the code below. Using (scope As TransactionScope = new ...
1
vote
2answers
212 views

Why to use using statement on DbTransaction in ADO.NET / C#?

I understood the implicit rollback (that usually happens when exception happens and Dispose is called) is not guaranteed for all providers. However many examples uses: using (DbTransactio txn = ...
3
votes
2answers
346 views

ADO.Net Entity Framework Transactions

I want to ask which is the right way to use transactions in ADO.Net Entity Framework (call,rollback,commit) ? I have this code, but this give me exception "Invalid operation. The connection is ...
1
vote
2answers
148 views

Should I call Parameters.Clear when reusing a SqlCommand with a transation?

I'm coding a transaction manually in ADO.NET. The example I'm working from reuses the SqlCommand which seem like a fine idea. However, I have added parameters to my command. My question is: in the ...
0
votes
0answers
38 views

how to avoid exception and deadlock when calling DbDataAdapter.Fill during pending transaction in ADO.NET?

I'm currently using SqlClientFactory to create connections but my solution should work also on Oracle. What I'm doing is: begin tranasaction create new DataRow populate it check from db that a id ...
0
votes
1answer
150 views

ADD and DROP SQL Server table constraint command in one transaction caused error

I have more SQL scripts (each for different version of the application) and I want to execute all scripts in one transaction. I'm executing it from c# using: ExecuteNonQuery(command, conn, trans) ...
1
vote
2answers
224 views

Timeout error when result of a transaction is used as parameter

I have following code that uses SqlTransaction string connectionString = ConfigurationManager.AppSettings["ConnectionString"]; using (SqlConnection connection = new SqlConnection(connectionString)) { ...
0
votes
1answer
223 views

TransactionScope with uncommited first transaction fails on distributed transaction

When trying to debug something I found code that was effectively doing the following: Creating a TransactionScope Creating a Transaction (in this case an nHibernate tx, but not really important) ...
0
votes
0answers
147 views

Do many SavePoints within a SqlTransaction slow the transaction?

I am looping through a batch of records in a single transaction using ADO.Net/C# against SQL Server 2008 R2. By using SavePoints I am able to rollback only a single record inside the batch without ...
1
vote
1answer
250 views

How to manage ado.net transaction

I'm not sure what a good way to manage this transaction in code would be. Say I have the following Service layer (non-static class) Repository layer (static class) // Service layer class /// ...
5
votes
2answers
309 views

Use SqlTransaction & IsolationLevel for lengthy read operation?

I am executing several long-running SQL queries as part of a reporting module. These queries are constructed dynamically at run-time. Depending on the user's input, they may be single or ...
0
votes
2answers
375 views

C# Transactions on Oracle & SQL Server via ADO.NET failing

I have written a class in C# that is intended to offer the ability to run database transactions on a given database connection. When I try to run the code however I get the following two errors on ...
1
vote
1answer
182 views

C#: Running a transaction on SQL Server 2008 via ADO.NET

Using the following method I am able to run a transaction against an Oracle database using ADO.NET. When I try the same code on an SQL Server database I get the error shown. What is the cause of this ...
-1
votes
4answers
629 views

Executing multiple statements / sqlcomands within a single ado.net transaction

I'm not including any code here because I've re-written it so many times over the past few days its really not worth bothering with any more, so I'll explain my problem in generic terms. I have a ...
0
votes
1answer
161 views

SqlTransaction multiple commands: Order of Execution?

I'm using SqlTransaction to make a series of changes to multiple tables with FK relationships. It begins with the deletions of the records via an ID then moves on to foreach loops for the inserts. ...
0
votes
1answer
90 views

Confused with different types of Transaction

I'm learning transaction, I have no experience in using transaction in the real project. I know we can write transaction in ADO.NET, in Stored Procedure and in WCF. My confusion is where to write the ...
3
votes
1answer
875 views

What is the default transaction isolation level for SQL Server with ADO.NET?

What is the default transaction isolation level for SQL Server with ADO.NET? I am using a default installation of SQL Server and just the normal System.Data.SqlClient classes.
3
votes
1answer
264 views

How does a TransactionScope implementation work? What database support is required?

Just reading up on TransactionScope implementations. Could someone confirm if this technique is driven by client-side .net, or if it requires something special from specific DB Vendors? Is this a SQL ...
10
votes
1answer
865 views

SQL Server: Isolation level leaks across pooled connections

As demonstrated by previous Stack Overflow questions (TransactionScope and Connection Pooling and How does SqlConnection manage IsolationLevel?), the transaction isolation level leaks across pooled ...
0
votes
1answer
49 views

How to prevent resources from being consumed by long-running queries?

I hava access DB, one of my function(C#.net) need to Exec a SQL more than 4000 times with transaction. It seems that after execution the DB file stay opened exclusively. because there is a *.ldb ...
0
votes
0answers
369 views

Insert rows into multiple tables in SQL Server 2008 from asp.net page

I have a problem regarding data insertion in multiple tables from my asp.net application. I just want to insert rows into three tables but if due to any reason insertion fails then it must be deleted ...
0
votes
1answer
186 views

In Ado.Net Update winth transaction “Concurrency violation”

I write on MySQL 5.5, C#, ADO.NET, DataSet. I have a DataSet and DataAdapter filled it. In DataAdapter I override INSERT, UPDATE, DELETE commands. When I use stored procedures, as these commands, all ...
0
votes
1answer
2k views

TSQL try catch transaction error handling, transaction count mismatch

I have a sproc that I am calling from C# with a transaction by doing: using (var dbContext = PowerToolsDatabase.GetDataContext()) { dbContext.Connection.Open(); using (dbContext.Transaction = ...
2
votes
1answer
933 views

Delete not working in transaction with sql bulk insert

I need to delete some records from table and then insert some records to the same table. This delete and insert process should be in transaction. Below is what i did. using (SqlConnection sqlConn = ...
1
vote
3answers
163 views

What is the best approach of breaking long running stored procedures?

What is the best approach of breaking long running stored procedures (up to 20 minutes)? Inside the Stored procedure is wrapped in a transaction. If I close connection will this transaction be rolled ...
0
votes
2answers
381 views

TransactionScope And Function Scope- Are These Connections In-Scope?

Suppose you set up a TransactionScope object as illustrated per the Microsoft example here. Now suppose that you need to update a lot of database tables, and you want them all in the scope of the ...
0
votes
4answers
634 views

how to do error handling with using statements in C#

im trying to do delete records from multiple database tables. For error handling i'm using a try/catch block as seen beneath. try { using (SqlCeConnection oConn = new ...
1
vote
1answer
2k views

Is it possible to set TRANSACTION ISOLATION LEVEL SNAPSHOT automatically?

because i've recognized locks on tables that are queried simultaneously, i've decided to enable ISOLATION LEVEL SNAPSHOT that was new to me. ALTER DATABASE RM2 SET SINGLE_USER WITH ROLLBACK ...
0
votes
1answer
138 views

oledbtransaction & oledbconnection lifetime

i'm doing an application in asp.net using a class stack of my authorship to abstract some complexity of the database and the interaction in it is done using 1 connection among all the classes; ...
0
votes
0answers
67 views

Unable to fetch data from Database after couple of updates

I have a function which calls a Stored Proc using SqlDataAdapter, which populates a DataTable using Fill method. I am binding this DataTable to editable control. On save I am creating a transaction ...
3
votes
1answer
1k views

How do I rollback a transaction using Unit of Work and Repository patterns?

I have a user repository, which does all the user data access. I also have a unit of work class that manages the connection and transaction for my repositories. How do I effectively rollback a ...
0
votes
1answer
391 views

Transaction manager

If I use .Net System.Transactions.TransactionScope class for a transaction across multiple tables in Oracle database, which one will be used LTM[Lightweight transaction manager] or MSDTC[Microsoft ...
0
votes
1answer
544 views

Difference between different BeginTransaction methods.

What is the difference among the following BeginTransaction methods: SqlConnection.BeginTransaction Method DbConnection.BeginTransaction Method DbConnection.BeginDbTransaction Method Moreover, ...
1
vote
2answers
2k views

SqlDataAdapter.Fill() within a SqlTransaction - is this a bad practice?

Since I have a "DB util" class with a DataSet QueryDB(string spName, DBInputParams inputParams) method which I use for all my calls to the database, I would like to reuse this method in order to ...
0
votes
2answers
105 views

Execution of a SP out of turn in a transaction

SQL Server 2005 is used. Each time a new data is received it is stored and a SP is called after that which uses this data to calculate some statistics data. Storing data and calling the SP is ...
1
vote
1answer
955 views

Transaction error on call to Commit() when select has been executed inside transaction

I get this error at the Commit of a transaction in a desktop application: This OleDbTransaction has completed; it is no longer usable. Other posts I have seen with similar error suggests this ...
0
votes
1answer
260 views

IDbTransaction and IDisposable

MSDN do not define what Disposeshould do for transactions. So my guess is that ADO.NET drivers do not do anything special in it (other than cleaning up resources)? It would be lovely if it called ...
9
votes
3answers
3k views

What is the default transaction isolation level in Entity Framework when I issue “SaveChanges()”?

What is the default transaction isolation level in Entity Framework when I issue “SaveChanges()”? I can not find it anywhere. Shall it be "Serializable"?
1
vote
2answers
1k views

What's the use of IsolationLevel in SqlTransaction if I never get to read volatile data from one transaction in another?

I'm studying data access in .NET Framework 4 for a Microsoft Certification and I've been doing a lot of tests. This time I want to understand the purpose of IsolationLevel in the SqlTransaction ...
1
vote
1answer
105 views

How ado.net manages transaction

Guys it seems repetitive question but it is not. I came across a question which I googled a lot but didn't find any information. Query is - "How ado.net manages transaction". Remember query is NOT ...
1
vote
0answers
76 views

ado.net entity framework “retains” changes despite exiting transaction

hi guys I have some logic problem in my code (adonet entity framework) here's the pseudocode i = 0 while i < 5 using transactionreadcommited { var getuser = (from a in mydb.users ...
3
votes
1answer
298 views

How can I get Entity Framework 1.0 to use the nolock hint when accessing a specific entity

I would like to access an entity (called Document) which is mapped to a table (called Document) using Entity Framework 1.0 but it is very important that this table is not locked when the data is read. ...
3
votes
2answers
90 views

RepeatableRead does not seem to be locking for read

I am getting a strange problem. I have a table that has a primary key that is generated in an INSTEAD OF trigger. It's probably the worst way to implement a primary key, but they basically fetch the ...
3
votes
2answers
1k views

TransactionScope nuances

Let's imagine I have two threads which execute some database-oriented code in thread-specific TransactionScopes with ReadCommitted isolation level. But there is some table which data should be shared ...
0
votes
1answer
616 views

.NET transaction management without TransactionScope

I was actively using TransactionScope in my application and was happy. But now I came to the situation where TransactionScope is not enough flexible: first of all, because I can't change ...

1 2 3