Link to home
Start Free TrialLog in
Avatar of pvinodp
pvinodp

asked on

mysql migration from innodb to myisam

I need to migrate my mysql database from my myisam to innodb
But i dont have to do it for all the tables.. For some i would leave it as myisam and the others would be migrated to innodb.
Is there any particular mysql version criteria that i should look for to get the best performance and integrity?
Coud someone let me know of the process....
ASKER CERTIFIED SOLUTION
Avatar of ChristoferDutz
ChristoferDutz
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of pvinodp
pvinodp

ASKER

how can i know if the mysql version Ver 14.12 Distrib 5.0.77 supports innodb or not
SOLUTION
Avatar of Guy Hengel [angelIII / a3]
Guy Hengel [angelIII / a3]
Flag of Luxembourg image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of pvinodp

ASKER

how to export data from mysql database table to a csv file
Here are some links that may be helpfuller than to solve every question for you:
http://en.wikipedia.org/wiki/Recursion (For the formal definition)
http://www.freenetpages.co.uk/hp/alan.gauld/tutrecur.htm (pretty good explanation of the concept)
Avatar of pvinodp

ASKER

How to export the schema to a csv file in mysql???
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of pvinodp

ASKER

How do you save your indexes ?
Can u export them to a file and import them into your new database?
You could have a look at liquibase. This makes really good snapshots of the Database Structure, all Constraints, Indexes ... everything ... except the Data itself, but I think you will be able to do that somehow. I just haven't tried that yet)
http://www.liquibase.org/manual/home
Avatar of pvinodp

ASKER

This Question has not been fully answered. But the above selected multiple solutions have helped me.