Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 616237
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T18:18:19+00:00 2026-05-13T18:18:19+00:00

I have a database called av2web, which contains 130 MyISAM tables and 20 innodb

  • 0

I have a database called av2web, which contains 130 MyISAM tables and 20 innodb tables. I wanna take mysqldump of these 20 innodb tables, and export it to another database as MyISAM tables.

Can you tell me a quicker way to achieve this?

Thanks
Pedro Alvarez Espinoza.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T18:18:20+00:00Added an answer on May 13, 2026 at 6:18 pm

    If this was an one-off operation I’d do:

    use DB;
    show table status name where engine='innodb';
    

    and do a rectangular copy/paste from the Name column:

    +-----------+--------+---------+------------+-
    | Name      | Engine | Version | Row_format |
    +-----------+--------+---------+------------+-
    | countries | InnoDB |      10 | Compact    |
    | foo3      | InnoDB |      10 | Compact    |
    | foo5      | InnoDB |      10 | Compact    |
    | lol       | InnoDB |      10 | Compact    |
    | people    | InnoDB |      10 | Compact    |
    +-----------+--------+---------+------------+-
    

    to a text editor and convert it to a command

    mysqldump -u USER DB countries foo3 foo5 lol people > DUMP.sql
    

    and then import after replacing all instances of ENGINE=InnoDB with ENGINE=MyISAM in DUMP.sql

    If you want to avoid the rectangular copy/paste magic you can do something like:

    use information_schema;
    select group_concat(table_name separator ' ') from tables 
        where table_schema='DB' and engine='innodb';
    

    which will return countries foo3 foo5 lol people

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a MySQL database called People which contains the following schema <id,name,foodchoice1,foodchoice2> .
I have a database labor which contains the tables that the rails application has
I have a MySQL database called bookfeather. It contains 56 tables. Each table has
I have a database called China.sqlite nel Bundle, which consist of 16 tables. I
I Have a database called 'lms' with two tables loan and value, table loan
Say I have a database called Poll and have these two table structures. poll
I have an sqlite database called 'ProductDatabase.sql', which I have copied into my applications
I have an ms-access database called db.mdb and it contains various table. I;m creating
I have a table on my database called 'Log'. This Log table contains ID,
The application I am working on have several database fields called active, which is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.