Data Migration is the movement of data from one location to another and can happen in many forms and many systems. One example of data migration is copying data from one database to another.
23
votes
3answers
10k 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:
...
24
votes
7answers
4k 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 ...
48
votes
12answers
22k 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 ...
9
votes
4answers
2k 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 ...
6
votes
2answers
8k views
Exporting from SQLite to SQL Server
Is there a tool to migrate an SQLite database to SQL Server (both the structure and data)?
9
votes
9answers
5k 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 ...
20
votes
6answers
13k 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 ...
39
votes
5answers
31k 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 ...
15
votes
4answers
2k 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 ...
2
votes
1answer
631 views
Can Core Data handle my “system vs. user data” migration needs?
My iPhone app will have read-only "system" data AND read/write "user" data (stored either using Core Data or a custom SQLite db). The user data may reference the system data. When a new version of the ...
6
votes
1answer
4k 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 ...
12
votes
1answer
2k views
Dealing with schema changes in Mongoose
What's the best practice (or tool) for updating/migrating Mongoose schemas as the application evolves?
4
votes
5answers
3k views
Data migration with Hibernate
I am working on a project for a company, where I need to migrate its previous data into a new system. Obviously both structures are totally different and I'm using hibernate for database manipulation ...
11
votes
1answer
1k views
How to implement IDbContextFactory for use with Entity Framework data migrations
I am trying to use Entity Framework data migrations, as described in this post.
However, when I try to execute the Enable-Migrations step, I receive the following error in Package Manager Console:
...
3
votes
6answers
2k 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
16
votes
4answers
9k 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 ...
9
votes
6answers
2k 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 ...
3
votes
8answers
880 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 ...
17
votes
9answers
8k 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 ...
6
votes
4answers
3k 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
3k views
INSERT Data From One Table Into Multiple Tables
I'm using SQL Server 2005.
I am migrating data over from a current database (single table) to a new database (normalized - many tables). In the new database, I have a base table (let's call it ...
3
votes
2answers
1k views
Rails 3: Migrate data
My Rails 3 app has a User model and a Profile model. A User has_one Profile.
Currently the Profile has attributes first_name and last_name. While I'm not sure why you might want to change them, I ...
0
votes
1answer
874 views
South data migration 'instance' error when using south freeze orm
I have a south datamigration that is trying to create new objects based on data found in other models. When trying to create a new object for the given 'destination' model I keep getting:
Cannot ...
5
votes
1answer
6k views
Migrating from Postgres to SQL Server 2008
I need to migrate a database from Postgres 7 to SQL Server 2008. I am familiar with the SSIS Import and Export wizard but I am stumped about how to define the data source or define the data provider.
...
2
votes
3answers
1k views
Databases: Migrate data between MS Access DB and MYSQL
I have 2 databases, one is MS Access DB from an old website, and the other one is MYSQL from the new Joomla+VirtueMart based website.
I need to migrate existing products from MS Access to MYSQL.
I ...
2
votes
2answers
470 views
Version controlled South migrations in virtualenv
I have a Django site placed in folder site/. It's under version control. I use South for schema and data migrations for my applications. Site-specific applications are under folder site/ so they ...
1
vote
4answers
3k views
Completely copying a postgres table with SQL
DISCLAIMER: This question is similar to the stack overflow question here, but none of those answers work for my problem, as I will explain later.
I'm trying to copy a large table (~40M rows, 100+ ...
1
vote
1answer
609 views
Syncrhonizing 2 database with different schemas
We have a normalized SQL Server 2008 database designed using generic tables. So, instead of having a separate table for each entity (e.g. Products, Orders, OrderItems, etc), we have generic tables ...
1
vote
4answers
2k views
generate database & tables schema (ddl) on Oracle pl-sql
Anyone have a PL-SQL statement that i can use to generate database & tables schema for specific database on Oracle 10g? I need the schema in .sql file and if possible compatible with ANSI-92/99 ...
5
votes
2answers
4k views
What is common data migration strategy for Core Data in iOS development?
If data model changes,and need be backward compatible to use old data source,we must consider data migration for database application.
What is the common strategy for core data in iOS dev ? Is there ...
4
votes
2answers
174 views
Is there an official tool for porting a MySQL database to PostgreSQL? [duplicate]
Possible Duplicate:
Is there a simple tool to convert mysql to postgresql syntax?
I have a very data-rich UTF8 db in mysql and i'm trying to port to postgresql.
After a lot of research ...
2
votes
1answer
1k views
Insert data and set foreign keys with Postgres
I have to migrate a large amount of existing data in a Postgres DB after a schema change.
In the old schema a country attribute would be stored in the users table. Now the country attribute has been ...
2
votes
3answers
247 views
migrate the large data from xml file to the database
Q:
I face the following problem two weeks ago , and i don't know how to handle it taking the performance issues , the data integrity in consideration.
What I do is:
I wanna to migrate the data from ...
2
votes
2answers
819 views
sql transfer data between databases tsql [duplicate]
Possible Duplicate:
SQL Data Transfer
copy data from one server to another using query in import/export wizard ?
I have my Dev database, and some times I add some data to tables and I ...
1
vote
1answer
40 views
Joining two tables in a complex query (not uniform data)
I need to connect two tables in a query that I will use to insert data to third table (used in the future to join the two). I will mention only relevant columns in these tables.
PostgreSQL version ...
1
vote
2answers
807 views
Split table into two tables with foreign keys
I have one table: drupal.comments, with amongst others, the columns:
cid: primary key
uid: foreign key to users table, optional
name: varchar, optional
email: varchar, optional
The description ...
1
vote
3answers
769 views
Is there a way to easily change the server name on several SSIS packages programmatically?
We are creating several SSIS packages to migrate a large database as part of a release cycle.
We may end up with about 5-10 SSIS packages.
As we have 4 environments (dev, QA, staging, production, ...
1
vote
1answer
1k views
SSIS Data Migration: Split Flat table into Parent + Child/Grandchild tables
I need to migrate data in a large flat table located in SQL Server 2005 into a new SQL Server 2005 schema that consists of a parent table and multiple child tables. This seems like the opposite of a ...
0
votes
2answers
31 views
PGSQL - Joining two tables on complicated condition
I got stuck during database migration on PostgreSQL and need your help.
I have two tables that I need to join: drzewa_mateczne.migracja (data I need to migrate) and ibl_as.t_adres_lesny (dictionary I ...
0
votes
2answers
230 views
Migrate Data from Neo4j to SQL
Hi I am using neo4j in my application and my structure is as following:
I am using Embedded Graph API
I have several databases that I point to using a pool that I maintain in my application eg-> ...
0
votes
2answers
567 views
Alternative to Apatar for scripted data migration
I'm looking for the fastest-to-success alternative solution for related data migration between Salesforce environments with some specific technical requirements. We were using Apatar, which worked ...
0
votes
2answers
3k views
copy data from one server to another using query in import/export wizard?
I have one table a in one db server..and table b in another server.
I would like to update the table b using values in table a.
How do I specify the server name in query ?
UPDATE SELECT * from ...
0
votes
2answers
169 views
Help to improve a migration program
We have 200+ views in Oracle that should be transfomed to 200+ flat files with fixed length fields.
Hoping to get ideas to do a better design of the following migration routine.
The prototype of ...
0
votes
2answers
196 views
Problem with parsing data via php and storing it to MySQL database
Sorry for duplicating this question, but here I tried to explain it in more details.
I need to parse the data from certain file and store it to database (MySQL). This is how the data is displayed in ...
0
votes
4answers
2k views
Avoiding code change with Microsoft SQLServer and Unicode
How can you get MSSQL server to accept Unicode data by default into a VARCHAR or NVARCHAR column?
I know that you can do it by placing a N in front of the string to be placed in the field but to by ...

