1
vote
1answer
78 views

SQL query to retrieve the values I want, stored into a single row

I'm 'trying' to migrate from Goldmine 5.5 to MCRM 2011 using Starfish ETL. The problem is that their is a table Mailbox into Goldmine database... ...
1
vote
1answer
77 views

Database mapping tools for MySQL in order to help migrate from one db to another?

I need to migrate WordPress data from one database to another the catch is, some of the information needs to change values. For example I have a meta_key table and I need to change all values "xyz" to ...
0
votes
1answer
105 views

Db2 data movement across different linux machines

We are planning to move to a new server, and we have installed db2 9.7 on it. Which is the best option to move all the data from the db in the old server to the new server. Both the servers have ...
0
votes
1answer
57 views

MS Access database with no relations

Can anyone recommend a tool or suggest the approach when dealing with MS Access database with no relationships between tables? As part of data migration project I am creating data mapping definition ...
0
votes
3answers
111 views

Moving millions of records between Oracle and MSSQL

I have an Oracle database with a table (30 columns, no BLOBs or LOBs) that has approx. 50 million records. I need to move the data into MSSQL. Table structure will remain the same on the MSSQL side. ...
1
vote
1answer
227 views

ORMLite database update

According to a previous question that I've asked (see this), dropping and re-creating tables is not going to work very well if I make changes and add new data once I've distributed the app, because ...
0
votes
1answer
308 views

Migrate SQL Server data from one database to another

We have 2 servers with a database containing the same tables and structures but different data. One is the testing environment, the other one contains productive data. We want to copy the data from ...
2
votes
2answers
76 views

Flyway - not copy sql resources

I'm using flyway in my java web project. My migrations are placed in src/main/resources/db/migration Now I want to exclude sql resources from the target war so I add to my pom.xml: ...
15
votes
3answers
657 views

Data Migration from Legacy Data Structure to New Data Structure

Ok So here is the problem we are facing. Currently: We have a ton of Legacy Applications that have direct database access The data structure in the database is not normalized The current process / ...
1
vote
0answers
56 views

Tips on asp.net data updates and third party framework

I am supposed to create an data transfer utility that is to take data from an external source. in this case it's another database, and import/update data into an asp.net website database. Now, the ...
1
vote
1answer
133 views

Migration from an Access database (2GB) to a MySQL DB: what tools? [closed]

I have an Access database, about 2GB size (after compacting). Querying the db is becoming very hard. I'm finding some solutions to export it to MySQL. The MySQL DB will be on a NAS in a local network ...
0
votes
0answers
91 views

How to migrate partial data to another database

This is my first time facing this problem and I'm not really sure how to pursue it. We've got a site with information on a couple hundred doctors and I need to move all the 'doctors' from one mySQL ...
0
votes
0answers
40 views

Transfer Specific DB Data to another DB with related tables

I have a scenario where we want to be able to select a certain record in a table, let's call it "Process", and then move this record and everything related to it to another database. So Process is ...
1
vote
1answer
218 views

data migration tool and schema migration tool

Currently we are using Yii framework for web development. However some developer recommended using python. Now we have aournd 90 tables, and are going to support several database systems, such as ...
2
votes
1answer
468 views

SQL: Insert Data from another database if they don't already exist

I have two SQL Server databases A and B They both contain a table named Users with the columns name, Age, Salary I want to write a script to insert the Users from database A into database B (if they ...
0
votes
2answers
106 views

Is it a good idea to keep database migration inside VCS?

The conventional wisdom seems to be that database migrations should be kept inside the VCS - that way there is a record of all the changes the database went through. But... What is the use of having ...
0
votes
1answer
789 views

django+south: migrate command doesn't create table in the database

I have a strnage problem. My django project has myapp module/application. My project uses south to do the schema migrations. On localhost i have run ./manage.py schemamigration myapp --initial, then i ...
0
votes
2answers
1k views

rake db:migrate fails

I am creating a simple users table and when I ran rake db:migrate it appeared to create_table(:users) Howerver I got the following warnings at the same time. I tried running rake db:migrate again and ...
2
votes
2answers
100 views

Software version and SQL database - perfect approach

Project code and project database usually grows together. Often some unit tests needs test databases and test database entries too. What is the perfect way to sync database/contents and ...
4
votes
2answers
175 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 ...
0
votes
2answers
439 views

Transfer data between large MySQL tables

I'm looking to transfer some data from a multi-million row table into another table. The problems I'm facing are: I can't use data dumps, because I need a WHERE clause I can't do a simple INSERT ...
0
votes
1answer
505 views

What is the best way to migrate data from one DB2 database to another?

I've tried to create backup on one machine and move to another. But I have a problem since I have different OS (Sun-64 and NT-32). Is there another option to move a Db2 database?
1
vote
1answer
1k views

How to do a data migration in Yii

Inserting and changing the table structure is no problem, but what if i want to change the data inside a table/model. The idea is to do something like: public function up() { $models = ...
0
votes
1answer
179 views

Trouble using MS Access to migrate data between Oracle databases that contain blobs

Im currently trying to move data from three old database schemas into one new one. I have been doing this using MS Access's append query function. Everything has gone pretty smoothly until I tried to ...
1
vote
2answers
183 views

Data Import Question: Should I use a cursor?

I'm currently working on a SQL import routine to import data from a legacy application to a more modern robust system. The routine simply imports data from a flat-file legacy table (stored as a .csv ...
0
votes
1answer
188 views

Migrating database (SQLite) from one rails application to another

I currently have a system in which one rails 2.3.2 has a database with all of my content data on. I have since created another application which is using rails 3.1 and is very similar but with some ...
6
votes
2answers
1k 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 ...
0
votes
1answer
241 views

correct way to migrate a sybase database to new hardware

I have a small Sybase ASE 15 database on a box that is scheduled to be de-commissioned. What is the best way to "clone" or "transfer" my database to the new box? I tried to use the migration utility ...
4
votes
1answer
279 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 ...
2
votes
3answers
11k views

SQL Server String or binary data would be truncated

I am involved in a data migration project. I am getting the following error when I try to insert data from one table into another table (SQL 2005): Msg 8152, Level 16, State 13, Line 1 String or ...
0
votes
1answer
276 views

What is the best way to move data between postgresql and SQL Server databases

If we have the same database schema in a database on Postgresql and SQL Server (table, primary keys, indexes and triggers are the same) what would be the best way to move data from one database to ...
0
votes
1answer
49 views

Convert recordes in database to Drupal database

Hi I have news website and I want to migrate to Drupal. please help me , How to convert ma Database to Drupal Database? Is there any module to do this? or write a program? I am C# developer. help ...
31
votes
4answers
8k 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 ...
1
vote
1answer
827 views

Any ideas how to compare two SQL DDL and create alter/delete/create script with keeping DB data?

Can you suggest any ideas how to compare two SQL DDL scripts and create alter/delete/create SQL script keeping the current DB data? I tried SQLAlchemy-migration and it requires to do python ...
3
votes
1answer
507 views

How to migrate Drupal data to Django?

I want to migrate part of a Drupal 6 site to a Django application, specifically a Drupal based questions and answers section that I think would work better with OSQA. I've already created another ...
4
votes
3answers
144 views

Need to migrate an application from Blackfish to Firebird

What is the effort to migrate from Blackfish to Firebird ? I use DBX4 No storeProcedure, or function or views I access all my data trough SQL queries
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 ...
1
vote
3answers
117 views

Database availability during database update

I have a database from a 3rd party. They supply a tool to update the database data weekly. The tool is pretty old and uses ODBC. Updates can either be incremental or can delete all database data ...
2
votes
3answers
107 views

Is it easier to scrape data for a gae app in dev and upload it to prod or should you scrape in prod?

I have to run a scraping task to collect data for my App Engine (Java) app. I'm not sure which is best - scrape data in development mode and upload it to prod or scrape it while the app is running in ...
1
vote
1answer
154 views

Design patterns to ease migration of SQL code between vendors

I am looking at ways which a developer can take advantage of implementation specific advanced features(T-SQL, PL-SQL etc) and at the same time makes it easy to migrate the ANSI compliant SQL code to a ...
0
votes
1answer
2k views

Data migration from MySQL to HSQL

I was working on migrating data from MYSQL to HSQL. In MYSQL data file, there are plenty of records where date values are set as '0000-00-00' and HSQL database throws below error "data exception: ...
0
votes
1answer
156 views

Simple database migration error in Rails

I am not able to create database columns when i use t.string or t.number. When i did rake db:migrate i got this C:\Ruby\joker\chapter3>rake db:migrate (in C:/Ruby/joker/chapter3) == ...
0
votes
2answers
83 views

Books/articles/recommendations on how to write a tool to migrate database data from one version of a Hibernate enabled Java application to the next

We develop and support and application that uses Hibernate as an Object-Relational Mapping tool to persist our Java objects into the database. Unfortunately, there have been some changes in object ...
0
votes
2answers
211 views

DB Data migration

I have a database table called A and now i have create a new table called B and create some coloms of A in table B. Eg: Suppose following colomns in tables Table A // The one already exists Id, ...
8
votes
4answers
7k views

How can I transfer data between 2 MySQL databases?

I want to do that using a code and not using a tool like "MySQL Migration Toolkit". The easiest way I know is to open a connection (using MySQL connectors) to DB1 and read its data. Open connection to ...
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 ...
4
votes
1answer
518 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
3answers
919 views

Database migrations for SQL Server

I need a database migration framework for SQL Server, capable of managing both schema changes and data migrations. I guess I am looking for something similar to django's South framework here. Given ...
0
votes
1answer
78 views

Migrating a Large amount of data from old publishing site to new site

I am currently in the process of creating a new news/publishing site on the Movable Type platform. There are around 20 or so sites with 20,000+ rows of data to be moved/aggregated to ~8 sites (we have ...
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 ...

1 2