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.

Fastest way to migrate from sql server to sqlite for large datasets

I have a database with more than 32 million records, I have to migrate it from SQL Server to Sqlite. I …

c# .net sql-server sqlite data-migration
How to get Guid from SqlDataReader uniqueidentifier

SQL Server 2008 (version 10.50.2550). I have a select query to return a single column of type uniqueidentifier. I want to get …

c# sql-server sql-server-2008 data-migration
Opening Paradox database; 'PDOXUSRS.NET' workaround?

I'm writing an application that has to open a preexisting BDE database that has been saved by a third party. …

delphi data-migration delphi-xe3 bde paradox
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 …

ruby-on-rails data-migration rails-migrations
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, …

database django data-migration
Getting Rails error "syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '('"

I am trying to migrate subject_id and course_id to the users table by typing: rails generate migration add_…

ruby-on-rails data-migration
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 …

python database django data-migration schema-migration
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 …

ruby ruby-on-rails-3 data-migration
How to make field enum migration yii2

I make field ENUM and the result is error when I use yii migrate/up on CMD windows. public function …

yii enums yii2 migration data-migration
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 …

sql postgresql data-migration