Guaranteed properties of many database systems - This is an acronym for atomicity, consistency, isolation, durability.

learn more… | top users | synonyms

-1
votes
1answer
13 views

How millions of concurrent transactions are processed in heavy traffic websites? [closed]

In banking, Railway reservations, Airline lots of transaction are being carried out parallel. How ACID properties could be managed in such a scenario? So many money transfer, account balance updates ...
0
votes
0answers
26 views

ACID w/o a Crash Recovery Manager? [closed]

Is a database server ACID if it does not have crash recovery? I can't seem to find any conclusive white papers on it.
1
vote
1answer
29 views

Is banks overdraft penalty linked to technology limitations? [closed]

I have been reading an article about data consistency in banking operations. The author highlights the fact that, differently from the common thinking, banks adopt BASE (Basically Available, Soft ...
1
vote
3answers
92 views

How can I make a stored procedure commit immediately?

EDIT This questions is no longer valid as the issue was something else. Please see my explanation below in my answer. I'm not sure of the etiquette so i'l leave this question in its' current state ...
5
votes
2answers
76 views

I'd like to store aeson's Value type using acid

I'd like to store aeson Values usig acid-store. I've taken a minimal acid implementation and tried to naively switch the types over to Value. These are my calls to deriveSafeCopy: $(deriveSafeCopy 0 ...
0
votes
1answer
41 views

Can this strange behaviour be explained by Eventual Consistency on the App Engine Datastore?

I have implemented two server-side HTTP endpoints which 1) stores some data and 2) processes it. Method 1) calls method 2) through App Engine Tasks since they are time consuming tasks that I do not ...
0
votes
1answer
71 views

RDBMS normalization vs performance

We are writing a MMORPG and suppose we have the following tables. The location_dynamic_objects is the table going to be queried and updated HEAVILY. As you can see position_x, position_y, location_id ...
0
votes
1answer
57 views

Various ways databases implement transaction isolation levels set in a JDBC connection

We can set the transaction isolation level on a JDBC connection in order to control the level of visibility of read/write access to the common records between concurrent transactions. One way ...
4
votes
1answer
104 views

What happens if altering a stored procedure while it is running?

I have a minor, one line change (fixing a typo in a string), to a stored procedure that I would like to deploy to our production SQL Server 2005 server as soon as possible. The worry I have is what ...
0
votes
1answer
35 views

Mixing eventual consistency systems and legacy ACID systems

Are there any patterns for mixing eventual consistency systems with legacy ACID-systems? I want to store data in some(at least two) legacy systems on the mainframe that need ACID-like transactions. ...
1
vote
1answer
65 views

Application level transactions over non-transactional database

What are techniques to implement partial transaction support on the application level using non-transactional database? Can You please share links to such technics?
0
votes
0answers
70 views

Alternatives to ACID [closed]

I'm closing the question as it seems to be poorly formulated and misleading, sorry, I created another one Application level transactions over non-transactional database Document Oriented Databases ...
0
votes
0answers
33 views

FOR UPDATE combined in a single query

Just wondering, if the approaches below serve ACID - Isolation purposes in same manner. What I mean is, row should be locked and no one should ever be able to update table_one and table_two until the ...
4
votes
3answers
237 views

Trying to hack my way around SQLite3 concurrent writing, any better way to do this?

I use Delphi XE2 along with DISQLite v3 (which is basically a port of SQLite3). I love everything about SQLite3, except the lack of concurrent writing, especially that I extensively rely on ...
1
vote
0answers
18 views

Schemas and transactions for filesystems

There are two standard ways to store your data: a database or on a filesystem. Between these, the database has at least two advantages for maintaining the integrity of your data: Schemas: we can ...
1
vote
1answer
111 views

Emulate transaction for batch put in hbase

I'm working on implementing rollback operation in hbase. My component is fed with all information to do put (actually there are hundred of such puts) - table, timestamp (might be null), family, ...
0
votes
2answers
80 views

MongoDB: Store average speed as a field or compute on-the-go

I am developing an Android app that uses MongoDB to store user records in document format. I will have several records that contain information about a GPS track such as start longitude and latitude, ...
1
vote
1answer
170 views

database atomicity consistency

What is difference between Atomicity and consistency ? it looks to me as both are saying same thing in different word. Atomicity All tasks of a transaction are performed or none of them are. There ...
2
votes
1answer
282 views

Document DB and simulating ACID

See results at the end I want to use a document DB (for various reasons) - probably CouchDB or MongoDB. However, I also need ACID on my multiple-document transactions. However, I do plan on ...
-1
votes
1answer
184 views

To what level does MongoDB support ACID? [closed]

MongoDB is not a relational database nor does the product follow a relational architecture. But for someone coming from the world of RDBMS, I would like to know to what extent does MongoDB support ...
0
votes
0answers
121 views

Any NOSQL or SQL options with ACID and low memory footprints?

I looking for NOSQL or SQL DB with low memory footprints and ACID properties. Basically the DB should be able to scale down to min 30MB usage of RAM and scale up to sit on many nodes/cluster. Also ...
1
vote
3answers
328 views

Insert failed, but identity value grows, does this break the Atomicity rule?

When I importing data to a new table from a large excel, if one record failed, then nothing is imported. I think it's ok because it meet the Atomicity rule. However, when I fixed the source data error ...
2
votes
1answer
138 views

How do JTA Transaction Managers deploy at runtime?

Trying to wrap my head around JTA and have arbitrarily chosen Bitronix as the impl because the documentation was easier to get to (as opposed to Atmikos which makes you sign-up and register in order ...
2
votes
1answer
715 views

Need an efficient way to store/query json in a SQL database

I'm implementing a service where each user must have his own json/document database. Beyond letting the user to query json documents by example, the database must also support ACID transactions ...
1
vote
3answers
52 views

Is it correct to say that data reading operations need not run inside transactions?

Say that a method only reads data from a database and does not write to it. Is it always the case that such methods don't need to run within a transaction?
0
votes
1answer
665 views

How exactly do transactions with PHP PDO work with concurrency?

I'm making a webapp where they'll be multiple users interacting with each other and reading/making decisions on/modifying shared data. I've read that transactions are atomic, which is what I need. ...
1
vote
1answer
133 views

Is this PL/SQL code ACID compliant?

Is it OK to issue asynchronous commits on TEMPORARY tables? Does it make my transactions less durable? CREATE GLOBAL TEMPORARY TABLE my_table_tmp (id number) ON COMMIT PRESERVE ROWS; CREATE TABLE ...
1
vote
2answers
266 views

Can Haskell pretend to be a database, and if so, how?

I realise that this might be a silly question, but is there any way to get Haskell (or use some library with Haskell) to get it to act like an SQL database? If so, how? Something like SQLite, but ...
3
votes
1answer
108 views

Using acid-state - safeCopy of a function

Problem when there is a data type : MyData = One Int | Two (Int -> Int) | Three | Four the problem is that when i say $(deriveSafeCopy 0 'base ''MyData) i got the following error: No ...
4
votes
1answer
331 views

Thread blocked indefinitely - Haskell - Acid State

I was worried about Acid State generating to many event files and checkpoints, and the user "stepcut" told me there were an implementation of the solution in acid called createArchive which delete old ...
1
vote
2answers
178 views

Does VoltDB fully support ACID on multi-partion (or global) transactions?

My current experience with databases is mainly with MS SQL, MySQL and oracle. I've been looking around at some of the more scalable alternatives (many NoSQL solutions) when I stumbled upon VoltDB. It ...
2
votes
4answers
681 views

NoSQL databases: what about read consistency?

From what I can make out NoSQL databases might be a good option for high intensity data read applications, but are a less good fit if you need to do also do a lot data updates and transactionality is ...
3
votes
0answers
379 views

Transaction ACID properties with Hibernate Search + Infinispan Directory

I have the following setup: JPA (2.0) through Hibernate (4.1) Infinispan as 2nd level cache (5.1) Hibernate Search connected to Hibernate (4.1) Infinispan as Directory for Hibernate Search (Lucene) ...
1
vote
1answer
435 views

Haskell: Yesod and state

I was reading through the code for a Toy URL Shortener. However, there's significant parts I just can't get my head around. It has the following code: data URLShort = URLShort { state :: AcidState ...
2
votes
2answers
213 views

Does using NOLOGGING in Oracle break ACID? specifically during poweroutage

When using NOLOGGING in Oracle, say for inserting new records. Will my database be able to gracefully recover from a power outage? if it randomly went down during the insert. Am I correct in stating ...
0
votes
2answers
413 views

How to improve MySql query that trying to find duplicate entries in large database?

I have to make my query on large database (Snort alerts) to find duplicate entries. However, I came up with bellow query, but it takes so many time to be executed! SELECT sid, cid, timestamp, ...
6
votes
2answers
2k views

MongoDB and RavenDB: features and operational differences?

We've been developing with MongoDB for a few months, but recently discovered RavenDB which claims to be a 2nd generation document store supporting sharding and transactions. We'd love to hear accounts ...
15
votes
3answers
268 views

How do databases perform atomic I/O?

Databases like Oracle, SQL Server etc are very good at data integrity. If I wanted to write a data store that I knew would either store some data or fail (i.e. be ACID) then I would use a database ...
1
vote
1answer
296 views

Is ftruncate() asynchronous?

I am attempting to write a class in C++ that provides a means of atomically appending to a file, even for the case of power failure mid write. First, I write my current file position (a 64 offset ...
0
votes
2answers
1k views

Why aren't NoSQL Databases ACID compliant? [duplicate]

Possible Duplicate: Is there any NoSQL that is ACID compliant? So, I heard NoSQL Databases are not ACID compliant, why is this?
1
vote
1answer
45 views

Will any errors be thrown out while executing START TRANSACTION in MyISAM table?

I tried the start transaction on a MyISAM table, and it replied "Query OK, 0 rows affected (0.00 sec)". But I'm not sure if the same thing will happen on all versions of MySQL. Is there any spec ...
2
votes
0answers
318 views

Schema-free/flexible ACID database for a SaaS application?

I am looking at rewriting a VB based on-premise (locally installed) application (invoicing+inventory) as a web based Clojure application for small enterprise customers. I am intending this to be ...
2
votes
1answer
127 views

In Acid-state, exactly what does $(deriveSafeCopy 0 'base ''T) mean

For Acid to store values of type T, one must write $(deriveSafeCopy 0 'base ''T) after the definition of T. But what exactly does this command do?
0
votes
2answers
90 views

Which opensource database satisfies all these requirements?

Supports C API for reading and writing into the DB. Support ACID transaction feature. Support sending notifications if any change happens to DB state. Finally it should be an open source. Could ...
0
votes
3answers
417 views

how to enable multi-thread/connection modify the same mysql table?

I have a program that has 2 threads running, and each thread has its own database JDBC connection, and they will access/modify the same database table A like below. Table A only has 2 columns (id, ...
0
votes
1answer
148 views

ACID Problems in a Multithreaded Environment

I have a multi-threaded java application which executes a lot of parallel CRUD operations on an MySQL Database. As read in MySQL manuals, InnoDB table structure should ensure, that the transactions ...
1
vote
2answers
183 views

What operation ordering guarantees are there without durability (mongo)?

Suppose you have an ACID database. Without an explicit guarantee about operation ordering, you can still infer ordering as a result of durability. e.g. I insert x into a database and the statement ...
0
votes
3answers
180 views

Does a typical ACID RDBMS sync to disk every commit?

The 'D' in ACID means "Durability" which is defined by Wikipedia as: "every committed transaction is protected against power loss/crash/errors and cannot be lost by the system and can thus be ...
0
votes
3answers
372 views

Thread safe way to get auto incremented primary key inserted into another table (so they can be joined later)

It seems there are two methods for this, the first one goes like this: $result = mysql_query("SHOW TABLE STATUS LIKE 'table_name'"); $row = mysql_fetch_array($result); $nextId = ...
1
vote
3answers
389 views

What are some real world implications of non-ACID database compliance?

Specifically is there some risk that data can be lost? I'm looking at running an intensive transaction processing system where it is critical that nothing be lost. Are there any examples of NoSQL ...

1 2