Top "Data-migration" questions

Data Migration is the movement of data from one location to another and can happen in many forms and many systems.

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 …

sql mysql macos sqlite data-migration
How to split one row in different rows in TALEND

I need help to migrate one row from old DB to multiple rows in my New DB. I have a …

data-migration talend
How to update a TIMESTAMP column to TIMESTAMP WITH TIME ZONE in Oracle

I have a pair of columns that were unfortunately defined incorrectly as TIMESTAMP(6) instead of TIMESTAMP(6) WITH TIME ZONE. I …

oracle timezone timestamp data-migration ddl
Migrating products data from opencart to magento

I have a opencart based shopping cart site.. Now I would like to convert it into a magento site.. I've …

magento opencart data-migration database-migration
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 …

sql sql-server data-migration
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 …

ssis data-migration advantage-database-server
What is the most efficient way to restore multiple databases in SQL 2008

I'm in the process of doing a large scale server migration, as such I have to move 50+ SQL 2005 databases to …

sql sql-server-2008 migration data-migration
iPhone:Updating a Core Data Model in Future Versions of an App

I am releasing a Core Data based app and wondered what I need to consider if, in an update later …

iphone core-data data-migration
Request a simple alembic working example for Auto Generating Migrations

I installed alembic 0.3.4, sqlalchemy, SQLite version 3.7.4, and upgraded SQLAlchemy 0.6.4 to SQLAlchemy 0.7 or greater from my ubuntu. I followed the instructions …

python orm sqlalchemy data-migration alembic
Django - Filter queryset by CharField value length

Given that I have a legacy model with a CharField or CharField-based model field like: class MyModel(models.Model): name = …

python django django-south data-migration