Top "Database-versioning" questions

Database versioning is the management and tracking of changes made to a database.

Ways to implement data versioning in MongoDB

Can you share your thoughts how would you implement data versioning in MongoDB. (I've asked similar question regarding Cassandra. If …

mongodb database-versioning
What is an easy way to deploy database changes using SQL Server?

The software system I work on is a medical billing system, large amounts of data and data tables, and stored …

sql-server deployment database-versioning
Hibernate (JPA): how to handle StaleObjectStateException when several object has been modified and commited

Consider the scenario: A Db transaction envolving more than one row from different tables with versioning. For example: A shopLists …

hibernate optimistic-locking database-versioning database-concurrency
General-purpose databases that never delete or update data in-place

I'm very much inspired by the approach to data management advocated by Rich Hickey, and implemented in Datomic, where the …

database immutability survey database-versioning datomic
How to create temporary tables in Hibernate?

Goal Invoke a CREATE TEMPORARY TABLE statement in Hibernate without using native SQL. That means using HQL or Hibernate APIs …

stored-procedures transactions temp-tables database-versioning hibernate
CouchDB versioning strategy

Would the following be a viable strategy for implementing versioning(using "example" as a sample document type): Have one original …

versioning couchdb database-versioning document-storage
Ways to implement data versioning in Cassandra

Can you share your thoughts how would you implement data versioning in Cassandra. Suppose that I need to version records …

cassandra database-versioning
Database migrations in a complex branching system

In our current development workflow we have introduced database migrations (using Ruckusing) to keep our developers' db schema's in sync. …

git git-branch database-migration database-versioning
Liquibase - Add defaultValueComputed as CURRENT_TIMESTAMP to timestamp column

I am using liquibase 3.5.3 to run liquibase update command on MySql 5.5. I have below changeSet to create a table which …

mysql liquibase database-versioning
Tracking changes to all models in Django

I am working on a Django + DRF Web Application and I want to track changes to all model instances in …

python django django-models database-versioning