Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
1answer
3k views

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 you have any thoughts which db is better for that please share) ...
11
votes
5answers
2k views

Database migrations for Entity Framework 4

I've been playing with Entity Framework 4, using the model driven approach to generate the database script from my entities. This is great but I'm not sure how this works when it comes to versioning ...
10
votes
4answers
3k views

CouchDB versioning strategy

Would the following be a viable strategy for implementing versioning(using "example" as a sample document type): Have one original document where the type field is named example_original. Subsequent ...
10
votes
3answers
1k views

How do you manage database revisions on a medium sized project with branches?

At work we have 4 people working together on a few different projects. For each project we each have a local copy we work on and then there is a development, staging, and live deployment, along with ...
9
votes
4answers
1k views

How do I version a SQL Server Database?

I need to put versions onto a SQL Server 2005 database and have these accessible from a .NET Application. What I was thinking is using an Extended Properties on the Database with a name of 'version' ...
7
votes
2answers
192 views

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. It works great, is pretty straightforward in use but now we ...
7
votes
4answers
573 views

Database versioning in installed applications using Delphi

I'm working on a number of Delphi applications that will need to upgrade their own database structures in the field when new versions are released and when users choose to install additional modules. ...
7
votes
10answers
2k views

Starting with versioning mysql schemata without overkill. Good solutions?

I've arrived at the point where I realise that I must start versioning my database schemata and changes. I consequently read the existing posts on SO about that topic but I'm not sure how to proceed. ...
5
votes
8answers
444 views

Database Change Management using hand generated scripts

My need is fairly basic and I don't want to rebuild the wheel. I like to script my database and have written scripts to update it from one version to the next ie 001-create-tables.sql, ...
5
votes
3answers
754 views

Database change management tools?

We are currently in the process of solidifying a database change management process. We run MySql 5 running on RedHat 5. I have selected LiquiBase as the tool because it's open source and allows us to ...
4
votes
5answers
1k views

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 procedures. I was reading the article "12 Steps to Better Code" and in The Joel Test #2 ...
4
votes
4answers
1k views

Database Versioning Using Visual Studio

In the SO podcast episode 54 Jeff talked about using Visual Studio to save all the database objects to individual files. This sounded like just what my team needed to better implement database schema ...
3
votes
1answer
71 views

how to get Roundhouse to create db on second hard drive

I want Roundhouse to create the db on a second hd (not the C drive which it does right now). Is there any way in Roundhouse to do this ? Iam using sql server 2008 r2 express. I tried the -cds option ...
3
votes
2answers
573 views

Object versioning in Rails, like Papertrail but individual tables

For a project I'm currently working on I need to implement object versioning. Unfortunately I need to keep a full history of each object, so a single table solution like Papertrail would quickly ...
3
votes
3answers
260 views

Doctrine migrations fallback

We're using doctrine migrations and there often are problems when the migration contains multiple actions and one of them fails. For example, if there is a migration adding 5 foreign keys and the 5th ...
3
votes
1answer
284 views

Database version control plan: hot or not?

Based on reading around the web, stack overflow, and mostly these articles about db versioning that were linked from coding horror, I've made a stab at writing a plan for versioning the database of an ...
3
votes
2answers
330 views

Magento: How can I migrate configuration changes from development to production environment?

We are actively developing modules and when we push the changes to our production site, there are usually several configuration changes we need to make. Would be nice to automate this...thoughts?
3
votes
4answers
242 views

Is it possible to use MS VS Database Project as a complete solution for database versioning?

In our project we have several production databases and many devs. Each production database represents some "sub-project/localization version". We use SQL Server 2008. So, I need to develop database ...
3
votes
1answer
366 views

Nontrivial incremental change deployment with Visual Studio database projects

Let's assume that I'm doing some sort of nontrivial change to my database, which requires "custom" work to upgrade from version A to B. For example, converting user ID columns from UUID data type to ...
3
votes
1answer
302 views

How do you approach database versioning when doing regular builds?

I have a web application project that works with quite large database (over 5GB). Data in the database is partitioned by project. Each project takes approximately 1GB, and it is a minimal set for ...
2
votes
3answers
65 views

Generating database scripts for SQL Server database versioning

In the scope of responsible programming and versioning, I would like to start to version my database changes especially since I am developing on my database instance then moving it to production. I ...
2
votes
1answer
94 views

How to run a create index script using RoundhousE that depends on a sp in the correct sequence

Question on roundhouse. I have a script that calls a sp to figure out how much space is required to create an index. (we are using sql express which has max db size limit). Depending on how much space ...
2
votes
1answer
105 views

Trouble using versioning and multi-level inheritance in sqlalchemy

I'm trying to use the versioning recipe described on the sqlalchemy website (http://www.sqlalchemy.org/docs/orm/examples.html#versioned-objects) along with a multi-level inheritance model ...
2
votes
2answers
128 views

Versioning a dataset in an RDBMS using initials and deltas

I'm working on a system that mirrors remote datasets using initials and deltas. When an initial comes in, it mass deletes anything preexisting and mass inserts the fresh data. When a delta comes in, ...
2
votes
0answers
234 views

Simple version-control systems or versioning file system or versioning database

I am looking for a simple versioning system for a large number of records or files (~50 million, ~100GB unpacked, ~20MB packed). The files are only a few Kilobytes each, and have unique IDs, so I ...
2
votes
3answers
413 views

Ways to implement data versioning in PostreSQL

Can you share your thoughts how would you implement data versioning in PostgreSQL. (I've asked similar question regarding Cassandra and MongoDB. If you have any thoughts which db is better for that ...
2
votes
1answer
613 views

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 in an simple address book. (Address book records are stored as Rows in a ...
2
votes
4answers
209 views

How to version SQL Server schema using VS 2005?

I am new to C# programming and am coming to it most recently from working with Ruby on Rails. In RoR, I am used to being able to write schema migrations for the database. I would like to be able to ...
2
votes
2answers
360 views

Implementing article revision history for Java based web application

Any ideas of how best i can implement article revision history for a Java based web application and save it in AuditLog StackOverflow already has such a feature allowing one to see the differences ...
1
vote
2answers
34 views

Versioning default install/customized triggers and stored procedures

I'm a developer at a small company where we're struggling for consistent change control. I'm running into issues where non-dev staff are tweaking stored procedures and triggers in production ...
1
vote
2answers
178 views

Database Versioning - How does branch switching work?

This is a question for those of you developing on a team of devs where all of you have separate databases. You're versioning your database using source control and other tools which will automatically ...
1
vote
1answer
745 views

How to implement Auditing/versioning of Table Modifications on PostgreSQL

We're implementing a New system using Java/Spring/Hibernate on PostgreSQL. This system needs to make a copy of Every Record as soon as a modification/deletion is done on the record(s) in the ...
1
vote
2answers
336 views

Need a .NET database versioning script runner

I'm looking at versioning databases and came across the usual articles regarding how to do this (coding horror, ode to code, etc). This all make perfect sense to me, however I'm trying to find a ...
1
vote
3answers
966 views

SQL Server Database schema versioning and update

For my application I have to support update scenarios and the database might be affected. I want to be able to update from an old version to the newest without installing intermediate versions. E.g. ...
0
votes
2answers
127 views

Database in version control using Visual Studio 2010 Professional

I've added a SQL Server 2008 database project to my Visual Studio 2010 Professional Edition solution in the hope that it might allow me to include my database in version control. I can commit the ...
0
votes
3answers
47 views

top 10 from sql server

i want to take top 10 upcoming records ID and DATEfrom table without ID below code works . select top 10 MAX(FromDate)as upcomingdates from TM_Schedule group by(FromDate) but if i add ID throws ...
0
votes
2answers
201 views

Row versioning in MySQL

I would like to include an integer version field in my table, auto-incrementing on each update made to a row. Is it possible to do this in MySQL? Please note that I'm not talking about a TIMESTAMP, ...
0
votes
1answer
290 views

How to turn datamodel into a versioned datamodel in Xcode4?

I remember that in Xcode 3.x you could simply Add Model Version and Xcode would convert your datamodel into a versioned datamodel. For some reason when I try doing so following the same steps in ...
0
votes
1answer
260 views

how to handle database/table changes in PHP?

Ok so now I have this problem i need to add a "balance" column for my users table. I am using the Zend framework and I was hoping to use this one here: ...
0
votes
2answers
1k views

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 and products. Where a shopList may contain products (with their ...
0
votes
1answer
1k views

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 only. Save objects to the temporary table. Invoke a stored procedure ...
0
votes
1answer
416 views

Best Practice for Versioned Entities?

Good afternoon, I am currently in the very early phase of a new project written in .Net and using Entity Framework for data persistence/storage. One of the features required is the ability to ...
0
votes
2answers
191 views

Rake Strategy, DotNet Implementation

When reading about and playing with Rails last year, one of the tools that made the biggest impression on me was Rake. A database versioning system that keeps all dev db's identical integrated right ...