About 50,900 results
Open links in new tab
  1. How do you version your database schema? - Stack Overflow

    Closed 6 years ago. How do you prepare your SQL deltas? do you manually save each schema-changing SQL to a delta folder, or do you have some kind of an automated diffing process? I …

  2. How to do version control for SQL Server database?

    Aug 2, 2008 · Dumping (and versioning) the full DB schema after running new upgrade scripts is a good way to make information available to other tools in your build/deploy process as well. …

  3. Best Practices for storing a database schema version in SQL Server?

    Only one row has NULL for ending timestamp, and that is the current version. In addition, there is a bunch of stored procedures which support this versioning system, and all database alters …

  4. How can I put a database under git (version control)?

    May 11, 2009 · For the database schema create a database schema dump under the version control. The most common way is to have update scripts that contains SQL Statements, …

  5. Is there a version control system for database structure changes?

    32 I'm a bit old-school, in that I use source files for creating the database. There are actually 2 files - project-database.sql and project-updates.sql - the first for the schema and persistant …

  6. SQL Server Database schema versioning and update

    Dec 2, 2009 · How can I store the database version for a SQL Server database? Is there any special property which I can set, instead of implementing a version table? In my code (.NET) I …

  7. python - How to efficiently manage frequent schema changes …

    It is designed to support an agile approach to database design, and make it easier to keep development and production databases in sync, as schema changes are required.

  8. How to version control a record in a database [closed]

    Many database vendors offer this feature either out of the box or via an extension. I've successfully used the temporal table extension with PostgreSQL but others have it too. …

  9. postgresql - Database Content Versioning - Stack Overflow

    new_content sometable, change_time timestamp with time zone ); and your versioning trigger can just insert into sometable_history(TG_OP,NEW,current_timestamp) (with a different CASE for …

  10. Ways to implement data versioning in MongoDB - Stack Overflow

    Can you share your thoughts how would you implement data versioning in MongoDB. (I've asked similar question regarding Cassandra. If you have any thoughts which db is better for that …