-1
votes
1answer
24 views

Migration MySQL 5.5v to 5.6v [closed]

I want to use Full-text search which is being added in MySQL 5.6 version but currently I am running MySQL 5.5 version on my machine, Is it possible to run both the instances at single machine? If yes, ...
0
votes
0answers
20 views

MySQL Synchronise Data From One DB To Another & Vice-Versa Using Triggers

We are migrating from one database structure to another - very slowly. The system is MySQL. There are two databases. For example's sake, we will call the databases old_db and new_db. Both databases ...
0
votes
0answers
18 views

How to roll back an ActiveRecord migration using a rake task? (Not using Rails)

A Sinatra project I am working on is using MySQL and ActiveRecord and I need to be able to reverse the migrations every now and again to wipe the test database - eg when tests fail and leave crud. My ...
0
votes
1answer
34 views

Migrating Etherpad DB from MySQL to Mongodb

I want to migrate the DB behind our Etherpad server from MySQL to Mongodb. Are there any known scripts to do this? If not, are there any showstoppers for writing a script myself?
0
votes
1answer
49 views

Schemadesign in laravel [migrations]

Quick question about schemadesign in laravel. This is the current schema I have for my users table. Now I want to add full user information meaning all the information that is required to bill ...
0
votes
0answers
35 views

MYSQL script into Microsoft sql server 2008

i have a mysql script which is 160 MB i want to convert it into the microsoft sql server 2008 kindly help me out help me out how to import such a big script into Sql Server
0
votes
1answer
90 views

How to migrate database from Postgres to MySQL? [closed]

Hello, I want to convert some tables from a Postgres database to MySQL. Ideally I would like to create an script that would convert the tables for PG to MySQL, but I am glad if we are able to figure ...
3
votes
1answer
148 views

Laravel Migration add field after data is in table?

I have a migration called CreateItemsTable; I ran that, I have items in that table, now I need to add a new field to the table. I can't just add a field to the migration file and migrate:refresh ...
0
votes
0answers
61 views

Table of commands which compare Mysql and Postgresql [closed]

I want to migrate my MySQL database to PostgreSQL. For now I know that I can use mysql2psql for migrating the current data. But well I'm new to PostgreSQL and noticed that the commands are different ...
0
votes
1answer
21 views

Best way to migrate table data to other table

Considering 4 models (very simplified) class Group1 << AR::Base has_many group1_items end class Group2 << AR::Base has_many group2_items end class GroupItem << AR::Base ...
1
vote
1answer
40 views

What should be considered when migrating Liferay from Oracle to MySQL?

We are currently running Liferay 6.0.6 connected to Oracle 11.2.0.2.0. Due to business requirements around licensing of Oracle I need to investigate moving this over to MySQL 5.5 with InnoDB. ...
0
votes
1answer
41 views

Unserialize, Serialize again and Update values

I'm working on a migrated WordPress, site url changed, everything works fine except some serialized data stored by a plugin. The data is stored in the wp_options table, in the option_value column, ...
0
votes
1answer
31 views

Rails: MySQL database table dropped, how to create one

Recently I did a mistake (actually foolishness). From phpMyadmin I dropped a table. Now I'm unable to import that table by this command. mysqldump --user <my_name> --password=<my_pass> ...
3
votes
1answer
191 views

How to create initializer to create and migrate mysql database?

I have been learning how to use EF for a week or so now and am stuck on the issue of creating/updating my database. I am able to create an initializer to create the database if it is not there: ...
0
votes
0answers
40 views

Python mysql db migration

I'm changing a lot in an app, db schema among others. Im trying to create a dump from the old database in the new database schema ie. cursor.execute("SELECT * FROM recv WHERE user="+str(oldID)) for i ...
0
votes
1answer
151 views

MSSQL to MySQL migration - char encoding issues with UCS-2 surrogate pairs, how can I remove these from MSSQL database?

I have been tasked with migrating a Microsoft SQL Server 2005 database to MySQL 5.6 (these are both database servers runnig locally) and would really appreciate some help. -MSSQL source database has ...
0
votes
1answer
74 views

TeamSpeak3 Server Migration

I'm looking for a solution to copy all ts3 settings from one linux machine to another. That includes all user settings, channels, server settings etc. Actually a complete migration. The Problem is, ...
0
votes
1answer
100 views

Migrating mySql2 to postgreSQL : query cache type error when mysql2psql

So I'm migrating my development environment and production environment to postgresql so that I can deploy to Heroku. After installing the mysql2psql gem, initializing a (postgresql)database.yml file- ...
0
votes
2answers
133 views

how to convert microsoft access db to mysql on a mac [closed]

i have searched all over google for how to convert a access database to mysql under a mac and cant find anything. Every application out there is made for windows. I read somewhere that mysql workbench ...
1
vote
1answer
85 views

Can I create an initial CodeIgniter db migration from .sql?

I have a CodeIgniter application and I just learned about migrations. It sounds very useful and I would like to start using it. However I already have a rather complex database setup. Can someone ...
0
votes
0answers
56 views

Migrate from Nucleus CMS to Wordpress 3.5.1

I am trying to migrate a Nucleus CMS blog to Wordpress. After failed attempts using what's listed at Wordpress Codex for importing content I got stuck with this last attempt. Nucleus-to-Wordpress ...
0
votes
1answer
334 views

MySQL Workbench migration from SQL Server 2008 to MySQL : ERROR: Determine number of rows to copy: unsupported operand type(s)

I'm trying to migrate a database from SQL Server 2008 to MySQL using MySQL Workbench 5.2.46CE. Everything works fine until the copy of the data (step "Bulk Data Transfer) : Starting... Prepare ...
0
votes
0answers
635 views

Oracle - Error: 'ORA-01400: cannot insert NULL into

I'm trying to insert a record into a table, but getting the error - 'ORA-01400: cannot insert NULL into (....'. The table structure is: I migrate from Mysql to Oracle. On Mysql this works, but ...
0
votes
1answer
47 views

Migration from Mysql to Oracle ORA-04098 SYSTEM.MD_PROJECTS_TRG error

Pls, could you help me on the following issues: I would like to migrate from mysql to oracle. I used Oracle Sql developer. I import Mysql thirty packet but when i was start migration i get this error ...
0
votes
1answer
35 views

mongify embed error

I'm trying to migrate my database from MySQL to mongodb. After a long search I decided to use mongify. It works perfectly, but when I try to embed table it doesn't do anything, it doesn't even import ...
0
votes
1answer
49 views

Migrate From Google Java API Datastore to Mysql

I have an entire app running on GAE and its datastore... now I need to migrate the application and its datastore to mysql db. What is the best approach for acchieving this, is there an ...
0
votes
2answers
237 views

Create table in migration with ENGINE clause fails

I am trying to do a migration using Yii and create new table in up() method. It works fine as long as I don't add the ENGINE=InnoDB clause. In that case - it gives me an error near ENGINE. public ...
1
vote
1answer
81 views

Importing (populating) data from an old database dump to a new database - Rails

I have a php app that I am porting to rails. I created the database schema in my rails app, and want to import some production data into the the sqlite db for testing - some users, badges table, etc. ...
0
votes
1answer
69 views

rails how to create record with id

I'm using rails v3.0.9 and Mysql database. I'm migrating the tables with existing data. I've users table and all other tables contains the user_id column and now i need seperate the users into two ...
1
vote
1answer
91 views

Can't rake db:migrate because of mysql missing .frm file

$ rake db:migrate == ChangeFriendListToText: migrating - ====================================== -- change_column(:profiles, :friend_list, :text) rake aborted! An error has occurred, all later ...
0
votes
0answers
160 views

.accdb to mysql

I am migrating ms-access databases into mysql database. Is there anyway by which we can simply do this by using ms-access and mysql utilities.? I am using window at db-access end and want to convert ...
0
votes
1answer
51 views

Rails halting on migration

It's giving the following error: Mysql2::Error: Table 'aperture_developement.content_pages' doesn't exist: SHOW FULL FIELDS FROM `content_pages` Which is odd, as it should be trying to create that ...
0
votes
1answer
148 views

How to compare data between two different database of two different providers?

We are planning to do a database Migration from MySql Server to MSSQL server; we have got some external tools and some internal tools to accomplish this. Now we need to have a process to validate the ...
0
votes
1answer
146 views

Migrating from Apache Derby to MySQL

I have a JDBC application that uses Apache Derby. How can I migrate my entire database system to use MySQL? I have 3 Java programs that access the database I have 3 tables and 2 views I am using ...
0
votes
0answers
76 views

Using Ylastic to migrate a Ubuntu 12.04 AMI which has MySQL installed with 100GB EBS mount point

Used Ylastic's migrate option to migrate an Ubuntu 12.04 LTS from Virginia to Oregon, Ylastic doesn't have an option of Ubuntu 12.04 LTS to select migration, therefore I picked up the latest available ...
0
votes
0answers
44 views

Conditionally add a column based on schema version

How do you conditionally add a column to a MySQL table if the database schema version is below a certain value? The question assumes I knew enough to create a _Schema table, but don't know enough to ...
5
votes
1answer
604 views

Migrate mysql users to another server

I have created a mysqldump --all-databases and transferred all my databases to the new server. It didn't work as debian-sys-maintusers password didn't match. So I change the password of this user. ...
1
vote
1answer
256 views

MySQL Workbench - migration of the data doesn't work

I'm trying to do a migration through MySQL Workbench, from one server to another. It sets the schema okay, but when it comes to the data, it fails. It doesn't give me much information either - the ...
0
votes
1answer
105 views

Rails decimal migration produces integer columns

I'm running Rails 3.1.1 using the mysql2 gem (v0.3.11). For some reason, when adding some decimal columns to a table, it produces integer fields. It does not give me any error, and the migration shows ...
1
vote
1answer
63 views

MySQL: Migrating data into a many to many relationship from an OldDB plain table

This is a very simplified graphical situation of the matter: http://i.stack.imgur.com/5NoRe.png There are two DBs in different schemas, the old yellow one (one simple and plain table) and the new ...
0
votes
0answers
148 views

OracleDB export to MySQL. DBCatalog Named None

I'm attempting to export an OracleDB to MySQL and started attempting using workbench. I run into the following error: SystemError: DataError("('22003', '[22003] [Oracle][ODBC]Numeric value out of ...
1
vote
0answers
63 views

Migrating localhost mySQL to AWS Oracle seems to wait for four hours

I am currently migrating a localhost mySQL database of quite some size to an AWS server with Oracle. I am using the SQL Developer tool with an installed add-on feature for mySQL support. The migration ...
0
votes
1answer
102 views

Trasfer MySql from Windows to ubuntu

I am using wamp in windows 7. Due to some reason my os is corrupted but still i have ubuntu in my pc and wamp was in another drive. Now I can get source of my project but how to get database from ...
2
votes
2answers
261 views

How to move data from one SQLite to MySQL with different designs?

The problem is: I've got a SQLite database which is constantly being updated though a proprietary application. I'm building an application which uses MySQL and the database design is very different ...
1
vote
2answers
268 views

Large MYSQL database migration from centos to ubuntu server [closed]

I need to migrate large MYSQL databases from one CentOS server to another Ubuntu server. MYSQL version on CentOs is 5.2.25 and MYSQL version on Ubuntu is 5.2.24. I performed following steps to ...
0
votes
1answer
80 views

How to save data directly from the migration file in ruby on rails

In my ROR project, I came across an issue. Previous developer of the project has save an array of data into a single column for a particular field. But now I have to get those data and save it to ...
0
votes
0answers
86 views

Migration to the new mysqlnd [closed]

Since I upgraded to the newest PHP version and went through many of the changes that were made, on has to wonder if now mysqli is the better alternative instead of PDO, since PDO does not have support ...
1
vote
1answer
461 views

Connection time out in flyway

I'm using flyway 1.5 and mysql Ver 14.14 Distrib 5.1.52, for unknown-linux-gnu (x86_64) using readline 5.1 I wrote the following migration: alter table table1 add column col_11 blob; alter table ...
0
votes
1answer
90 views

Sql Server data -> MySql + Django migration

I have an existing website built on ASP.NET + SQL SERVER. It should move to Django + mysql soon. What is the best practice to create the new MySql DB? I would like to keep some Unique IDS because ...
0
votes
1answer
53 views

Complex mysql insert query

I am attempting to write a migration script (between 2 versions of a program) to populate the phppos_permissions_actions table. The rule for populating is: "If the user has permission for the module ...

1 2 3 4 5 6