Tagged Questions
The data-migration tag has no wiki summary.
32
votes
11answers
14k views
How (and whether) to populate rails application with initial data
I've got a rails application where users have to log in. Therefore in order for the application to be usable, there must be one initial user in the system for the first person to log in with (they ...
20
votes
5answers
2k views
What is your favorite solution for managing database migrations in django?
I quite like Rails' database migration management system. It is not 100% perfect, but it does the trick. Django does not ship with such a database migration system (yet?) but there are a number of ...
16
votes
2answers
14k views
SVN copy between repositories with history
One of my teammates has asked if it is possible to export from one SVN to another, all while maintaining history.
To me, this seems like it would be a common request.
So: Is it possible to migrate ...
13
votes
3answers
4k views
Implementation of “Automatic Lightweight Migration” for Core Data (iPhone)
I would like to make my app able to do an automatic lightweight migration when I add
new attributes to my core data model.
In the guide from Apple this is the only info on the subject I could find:
...
11
votes
8answers
3k views
FluentMigrator tutorials
Are there any tutorials for FluentMigrator? Some "Getting Started..." tutorial would be just awesome. All I was able to find was FluentMigrator.Tests (unit tests), inside FluentMigrator source, which ...
8
votes
3answers
957 views
How do I move a redis database from one server to another?
I currently have a live redis server running on a cloud instance and I want to migrate this redis server to a new cloud instance and use that instance as my new redis server. If it were MySQL, I would ...
8
votes
1answer
329 views
How to unit test a Django South “datamigration”
I created a data migration using south, that takes a versions table and converts it from:
major: 1, minor: 2, micro: 3, release: a
into a simpler:
name: 1.2.3.a
Now I want to test this ...
8
votes
6answers
835 views
Is there a Ruby database migration gem, that helps you move content from an old structure to a new structure?
Are there any Ruby gems/libraries that help you migrate from an old DB structure to a new structure? ActiveRecord migrations do a good job keeping track of a new db structure, but I wonder if there's ...
7
votes
4answers
709 views
How to efficiently manage frequent schema changes using sqlalchemy?
I'm programming a web application using sqlalchemy. Everything was smooth during the first phase of development when the site was not in production. I could easily change the database schema by simply ...
7
votes
15answers
2k views
Tool to migrate data between different DBMS?
There are some tool (free preferentially) to to migrate data between different DBMS (like from MySql to Firebird, or Sql Server to Sqlite, etc)?
Edit:
I want specifically to migrate from "Firebird ...
7
votes
4answers
3k views
What is the best way to migrate data in django
After making some changes in my models (eg. new field in a model and a new model) what is the best way of reflecting these changes to my populated database?
PS: I wanted to see many solutions in ...
7
votes
9answers
3k views
mysqldump equivalent for SQL Server
Is there an equivalent schema & data export/dumping tool for SQL Server as there is for MySQL with mysqldump. Trying to relocate a legacy ASP site and I am way out of happy place with working on ...
6
votes
2answers
150 views
Dealing with schema changes in Mongoose
What's the best practice (or tool) for updating/migrating Mongoose schemas as the application evolves?
5
votes
2answers
94 views
Oracle date corruption during update
I'm migrating some data from one oracle schema/table to a new schema/table on the same database.
The migration script does the following:
create table newtable as select
...
cast(ACTIVITYDATE as ...
5
votes
3answers
774 views
Manually editing database in code first entity framework
I have been trying out EF 4.1 (code first) with MVC 3. I am thinking ahead to when the application will need changes. I tested a couple of scenarios. I like the idea of manually editing the database ...
5
votes
1answer
580 views
Is it worth using sqlalchemy-migrate?
I have a web application using sqlalchemy (within Pylons). I need to effiently change the schema to be able to change the production version at least on a daily basis, maybe more, without loosing the ...
5
votes
1answer
519 views
Where can I find good examples or tutorials for sqlalchemy-migrate
In this thread someone pointed me to use sqlalchemy-migrate to help with a fast-changing web application using sqlalchemy.
However a Do It Yourself method was also recommended consisting in manually ...
5
votes
5answers
5k views
How to group by week in MySQL?
Oracle's table server offers a built-in function, TRUNC(timestamp,'DY'). This function converts any timestamp to midnight on the previous Sunday. What's the best way to do this in MySQL?
Oracle also ...
5
votes
5answers
3k views
Migrating From Visual FoxPro
I work for a company that had a large number of applications based on Visual FoxPro.
The company is now looking for a migration strategy away from VFP to another language for its desktop ...
4
votes
1answer
103 views
Doing huge data migrations in rails
I am experiencing big time and computing power challenges when doing big data migration (several 100.000 rows). I am developing a service that handles a lot of data in rails. Our models are constantly ...
4
votes
1answer
277 views
use c# to copy table data from oracle to SQL Server?
Could you kindly tell me whether there is a most convenient way to copy table data from oracle to SQL Server?
My only idea is iterate all rows and do insert operation. That means i should write lots ...
4
votes
2answers
243 views
How do I move a column (with contents) to another table in a Rails migration?
I need to move some columns from one existing table to another. How do I do it using a rails migration?
class AddPropertyToUser < ActiveRecord::Migration
def self.up
add_column :users, ...
4
votes
4answers
1k views
Core Data Migration - Can't find mapping model for migration
I followed the guide found here:
http://www.timisted.net/blog/archive/core-data-migration/
but keep getting "Can't find mapping model for migration" when I start up the app with the new model. I've ...
4
votes
2answers
228 views
Strategies for handling updates in existing JPA persistence classes
We are doing a project in which we have planned to use JPA Persistence. We think that once the project goes live, there is a small chance that changes in the data model might be required.
My query is ...
4
votes
6answers
2k views
Transfer MySQL to SQLite
I want to start using Core Date on iPhone with pre-existing MySQL databases. What's the easiest way to transfer a MySQL database to SQLite?
I've tried using SQLite Migrator, but I don't know where to ...
4
votes
5answers
2k views
Use SSIS to migrate and normalize database
We have an MS Access database that we want to migrate to a SQL Server Database with a new DB design. A part of the application that uses the SQL Server DB is already written.
I looked around to find ...
3
votes
2answers
146 views
How to copy database in use to other database in django?
I have developed a simple django application using sqlite3. At first, I wanted to keep it simple using sqlite3 but, things are beginning to scale up (Yes, I actually started using that application ...
3
votes
2answers
116 views
Migratordotnet : How to check if a migration is pending?
I want stop my Build process through MSBuild, if there is pending migrations.
But I don't want to trigger the Migrate target while building my project.
So, How can I check only pending migrations ...
3
votes
1answer
173 views
Iphone data migration on application update
I am working on an iphone application that uses sqlite to store application and user data.
This is the first version of the application and I wonder what I need to do to prepare for the future ...
3
votes
2answers
404 views
Rails: seeding database data and date formats
I'm trying to seed some data into a Rails 3 app that I'm developing, using the db/seed.rb file and the rake db:seed command.
The data I'm seeding involves a database table called Meeting that has ...
3
votes
1answer
199 views
Data-Migration vs VS2010 Database Project
We are starting a complete overhaul of a project, a data-driven web app, and are looking at our options for version control of our database. We are a Microsoft house and use Visual Studio 2010 along ...
3
votes
1answer
72 views
Migrating Built-in Django Models When Upgrading
We're using an older version of Django (1.1.1) and are preparing to upgrade to the latest version (currently 1.2) soon.
None of my searches have brought up the topic of migrating database tables ...
3
votes
1answer
315 views
South django table already exists
I'm experiencing the same problem as with: django - "manage.py test" fails "table already exists"
The schemamigration / migration worked fine (although did have some problems that required me to ...
3
votes
2answers
219 views
Data migration in Django
We have a requirement to export the data from a Oracle db and load the exported data to the django models. The models in django are constructed manually based on the the same Oracle tables(same ...
3
votes
2answers
230 views
migrating node references
I am working on a project to migrate a website from asp.net to drupal architecture. But the site content is very hierarchal and has a lot of references between entities.
for example: each content ...
3
votes
2answers
1k views
SSIS ISNULL to empty string
So I am currently working on a migration from an old Advantage database server to SQL 2005 using SSIS 2008. One of the columns in the old Advantage database is a MEMO type. By default this translates ...
3
votes
1answer
368 views
Spring Batch: migrating 1 to n relationship where n is potentially huge
I am experienced with Spring, but new to Spring Batch. Now I have the task to migrate a data structure from a simple structure in one database to a complexer one in the other. The data structure ...
3
votes
1answer
274 views
alter multiple mysql databases at once (SAAS database changes)
We are running a PHP (zend framework) app that creates a database per user (for security/backup/and others reasons).
All these databases have exactly the same structure and that will always be the ...
3
votes
2answers
123 views
how to migrate DB from MySql to MS-SQL?
i want to migrate my whole DB from MySQL to MS-Sql server.
though i am open to use any tool,am restricted to use only free avilable tools.
3
votes
2answers
442 views
What is the best approach to change primary keys in an existing Django app?
I have an application which is in BETA mode. The model of this app has some classes with an explicit primary_key. As a consequence Django use the fields and doesn't create an id automatically.
class ...
3
votes
1answer
1k views
Steps to migrate Core Data databases for shipped iPhone apps
What are the recommended steps to be done for migrating Core Data DB changes for updated iPhone apps already shipped?
Is there any prior step one need (should) have done before shipping a Core Data ...
3
votes
3answers
368 views
subversion : Moving a particular repository content to another repository (Finally i have to delete old reopository for security reasons)
I want to keep a particular folder with all revisions before deleting the current repository from my system for security reasons (means i don't want other informations of the repository, but a ...
3
votes
8answers
809 views
Migrating MySQL to PostgreSQL - what features not visible in SQL code will be important?
We're migrating MySQL to PostgreSQL. I can easily audit the schema and the SQL statements used throughout the (REALbasic) program. Most of the SQL is composed by building string variables.
I already ...
3
votes
5answers
817 views
SQL Data Transfer
I need to transfer data from one table to the same table in another server which has been truncated. Can somebody please, let me know the easiest way to do it. Please, help me.
Thanks,
Chris
3
votes
2answers
3k views
Sqlite export
Does anyone know of a tool to migrate a Sqlite database to SQL Server(both the structure and data)?
Thanks?
2
votes
2answers
58 views
Is there an official tool for porting a MySQL database to PostgreSQL?
I have a very data-rich UTF8 db in mysql and i'm trying to port to postgresql.
After a lot of research i'm finding that mysqldump's "compatible" arg does not produce completely postgres importable ...
2
votes
1answer
111 views
What is the purpose of RoundhousE's RestoreRun mode?
According to the documentation, RoundhousE has 3 modes:
Normal
DropCreate
RestoreRun
The first 2 are clear, but I don't understand RestoreRun Mode and the benefit it offers in Production:
Once ...
2
votes
5answers
139 views
Lotus notes to Sql server migration
I am trying to find the solution for data migration from LotusNotes to Sql Server without using third part tool. However, I have found out that client already has a license for LEI. Can I suggest them ...
2
votes
2answers
70 views
Programmatically check whether there are django south migrations that need to be deployed
My deployment strategy looks like this (using Fabric):
create a new virtualenv
deploy new code in new virtualenv
show a maintenance page
copy the current db to new db
migrate new db
point new code ...
2
votes
2answers
183 views
In Django/South HOWTO create an instance of a model from a different app during DataMigration
I need to perform a datamigration of a model Answer in app Question. In that script there is a dependency such that I need to create an instance of a model Chapter which is in the app Journal. So, I ...