The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
67 views

Explanation of Migrators (FluentMigrator)?

Could someone explain the concept of Migrators (specifically fluentmigrator)? Here are the (possibly confused) facts Ive gleaned on the subject: Is it a way to initially create then maintain ...
0
votes
0answers
20 views

Database IDE with SVN client support - Database versioning

i have an idea to integrate database development tightly to SVN like we have java develoment. functions such as update, commit should directly apply to the working db schema same as files are ...
0
votes
2answers
32 views

Upgrading database version automatically

Hi i am creating an app which stores the password of the user entering. and whenever he needs to change his password then the data has to be changed. The problem i am facing is while i am calling the ...
0
votes
1answer
125 views

Can I create a brand new oracle db/schema with roundhouse?

I am a bit new to Oracle, having used mostly SQL, so some of my understanding of how oracle works and what users/connection strings to use might be wrong or non existant. I am trying to use ...
0
votes
1answer
130 views

How to create a versioning/history/revision system for contents published by users?

After reading a lot of SO questions about Keeping page changes history or How to version control a record in a database (for example), I can't find a real elegant solution to do the work. Now, let's ...
1
vote
2answers
181 views

Rails 3.2 app - Should I use a versioning gem (paper_trail or vestal_versions) or handle it manually?

My question: Should I roll my own model versioning or use one of the versioning gems that's already out there? If I should use a gem, which one seems best for this application? Info about my app My ...
0
votes
1answer
94 views

Commit only part of changes in SQL Source Control

I'm currently testing RedGate's Sql Source Control (Version 3.1.3.26). I have a table with static data which stores a SQL statement in each line. Is there a way to only commit parts of the changes? ...
1
vote
3answers
58 views

Managing dependency of objects while running DB's versioned scripts

We are bringing our db under version control. We have around 2400 object out of which most are stored procedures. So we have made drop if does not exist create scripts for all our objects except ...
4
votes
1answer
138 views

Is there a recent version of Visual Studio Team Edition for Database Professionals?

I was just looking into some articles about version control for databases and came across a blog by Jeff Atwood where he recommends Visual Studio Team Edition for Database Professionals. He provided ...
0
votes
1answer
51 views

CoreData between app updates, signal a default-data refresh

when dealing with CoreData, I've run into a few problems I'm trying to nip in the bud for future proofing the system out of the gate. The simple fact of the matter is that I've never done anything ...
0
votes
1answer
66 views

MySQL Derterministic migration script

I am currently looking a way to have my database under version control. To achieve so, I wanted to have deterministic procedures that can only be run only once (with corresponding undo). I have a ...
0
votes
1answer
40 views

Getting error messages from Zend_Db_Adapter::exec()

I'm working on a script to make versioning our database easier. In order to do this we have a number of files (each contains at least one statement and a couple have over a hundred) containing the ...
6
votes
1answer
224 views

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 data is never mutated in-place, all the versions are always preserved and ...
0
votes
2answers
186 views

Getting mysql row version number?

I have a database where everything is versioned inside itself using start_date and end_date What I want to do is dynamically get a version number for a row. So, get all rows with a particular ...
4
votes
3answers
303 views

Basic mysql versioning?

We have a shopping cart as pictured below, The setup works well, except for one fatal flaw. If you place an order the order is linked to a product, so If I update the product after you have purchased ...
0
votes
0answers
47 views

How to handle different versions of (windows store) apps after servier side data model change

I'm developing an app that will connect to a database in the cloud for data. What are the best practices for handling data model changes in the database? After a data model change (e.g. join another ...
2
votes
0answers
143 views

Solution to do Database migrations on Oracle / SqlServer and SqlLite [closed]

Im looking for a tool (preferably open-source) that can do Database migrations and versioning inside TFS, and is able to automatically deploy this during an deployment / build. Background We have ...
1
vote
1answer
207 views

Full Database Versioning in SQL Server

First, let me point out that I read all the posts regarding database versioning, but this isn't exactly the thing I'm looking for, but I couldn't come up with a better title (the word 'full' here is ...
1
vote
1answer
57 views

What are the good practices on data history keeping through an workflow?

At our team, we need to keep record of data through an workflow. At each step, when the data changes, we don't want to lose its previous state because if the workflow takes a step back, that previous ...
0
votes
2answers
288 views

Android upgrade db not updating db version after successful upgrade

I am trying to add three new table to my existing sqlite db and I'm running into problems with the db version not updating after a successful upgrade. Below is the DatabaseHelper that runs: private ...
6
votes
3answers
255 views

IS there any Tool or API to auto update a database structure

In an application that I am supporting, lately I have made several changes to the DB structure. I send the update to the users, but its very hard to keep them all up-to-date. Is there any simple way ...
1
vote
1answer
62 views

Can you let RoundhousE generate a script rather than executing it

Is there a way to get RoundhousE to generate a script file without executing it?
2
votes
2answers
287 views

How to implement row-wise versioning using mysql + java?

Lets say for an example we have a table called student (sID is the primary key, isValid=1 means the row is valid and 0 is invalid for the moment) sId sName gpa isValid 1 Tom 3.0 ...
0
votes
1answer
128 views

Date versioning and restoring

We are developing a SAAS based application. One of the requirements is to record every change in database tables i.e. create date/time based version of data. Client should be able to revert back to ...
2
votes
3answers
351 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 ...
1
vote
2answers
742 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 ...
3
votes
1answer
199 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 ...
2
votes
1answer
201 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 ...
10
votes
4answers
1k 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 ...
2
votes
1answer
319 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 ...
0
votes
2answers
1k 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
752 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 ...
1
vote
2answers
56 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 ...
2
votes
2answers
295 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
474 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 ...
6
votes
2answers
2k 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 ...
1
vote
1answer
559 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: ...
1
vote
2answers
6k 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 ...
3
votes
3answers
648 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
434 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
666 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?
4
votes
3answers
2k 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 ...
71
votes
4answers
14k 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) ...
4
votes
2answers
2k 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 ...
3
votes
4answers
387 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 ...
1
vote
2answers
294 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 ...
2
votes
1answer
3k 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 ...
5
votes
1answer
2k 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 ...
2
votes
4answers
268 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 ...
13
votes
5answers
5k 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 ...

1 2