Top "Transactions" questions

A set of interrelated operations that must all succeed in order for any of them to succeed.

How to work around the lack of transactions in MongoDB?

I know there are similar questions here but they are either telling me to switch back to regular RDBMS systems …

mongodb transactions
Is it possible to roll back CREATE TABLE and ALTER TABLE statements in major SQL databases?

I am working on a program that issues DDL. I would like to know whether CREATE TABLE and similar DDL …

sql transactions ddl create-table
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 …

c# .net transactions transactionscope msdtc
Transactions across REST microservices?

Let's say we have a User, Wallet REST microservices and an API gateway that glues things together. When Bob registers …

rest architecture transactions microservices
Add column to table and then update it inside transaction

I am creating a script that will be run in a MS SQL server. This script will run multiple statements …

sql sql-server tsql transactions alter-table
How to create a LINQ to SQL Transaction?

I have a piece of code that involves multiple inserts but need to execute submitchanges method before I finish inserting …

.net linq-to-sql transactions
MySQL: Transactions vs Locking Tables

I'm a bit confused with transactions vs locking tables to ensure database integrity and make sure a SELECT and UPDATE …

sql mysql transactions locking
Transaction scope timeout on 10 minutes

I have a long running TransactionScope in C#. I told the scope that it should have a long timespan, but …

c# entity-framework transactions transactionscope
Why is "hibernate.connection.autocommit = true" not recommended in Hibernate?

In Hibernate API, there is a property hibernate.connection.autocommit which can be set to true. But in the API, …

java database hibernate transactions autocommit
Entity Framework 6 transaction rollback

With EF6 you have a new transaction which can be used like: using (var context = new PostEntityContainer()) { using (var dbcxtransaction = …

c# sql-server entity-framework transactions entity-framework-6