Tagged Questions

3
votes
1answer
26 views

External read-only DB, my local DB, inconsistency

There's a service A that works with DB1, there's service B that works with DB1 and DB2. Service A has read-write access to DB1 and doesn't work with DB2 at all. Service 2 has read-write access to DB2 ...
1
vote
5answers
140 views

id columns or clustered primary keys/database consistency

If I had a table with the columns: Artist Album Song NumberOfListens ...is it better to put a clustered primary key on Artist, Album, and Song or to have an autoincrementing id column and put a ...
0
votes
1answer
32 views

How to check if two database are identical, and how much is the difference?

I have exported a database and then imported it into a new database. Then I can see that there is a difference in size, which I came to learn that it is due the space reuse issue for deleted entries ...
0
votes
0answers
6 views

Handling consistency when making synchronous calls between two disjoint databases

I've recently come across a problem related to a project in which I have a setup consisting of 1-to-many data repositories (being either database, web-service etc., however to keep things more ...
0
votes
1answer
25 views

How does transactions (in MySQL for me) behaves when are ran concurrently?

Here is my scenario: I have table A, that has 4 rows (id, col1, col2, col3) with a UNIQUE index put on the last 3 rows (id is primary key). Lets suppose there are 2 users: user Foo and user Bar. If ...
0
votes
2answers
28 views

How to avoid and log down some unexpected thing for db?

For example, a user create a product, and assign it into a category. In the category, we have some record: -phone, id:0 -computer, id:1 -pad, id:2 and a user create a product, the product need to ...
0
votes
3answers
55 views

How to handle a price change in DB just when a customer is placing an order online?

I have a Product database table with columns such as product_id, price, and inventory_count. A user clicks to buy a certain product at a certain price. My program generates a confirmation page ...
0
votes
3answers
162 views

Can a database support “Atomicity” but not “Consistency” or vice-versa?

I am reading about ACID properties of a database. Atomicity and Consistency seem to be very closely related. I am wondering if there are any scenarios where we need to just support Atomicity but not ...
0
votes
5answers
384 views

Database consistency checking framework

I'm looking for a framework to utilize to integrate a number of database consistency checking rules into our system. This should basically be a automated test case runner for our database checks. ...
-2
votes
1answer
169 views

NimbusDB - distributed, non-blocking, atomic commit protocol?

From the NimbusDB website: Our distributed non-blocking atomic commit protocol allows database transaction processing at any available node. They claim that they can guarantee ACID transactions ...