chingchongchinatime
chingchongchinatime

Reputation: 21

Can I still import mysql tables if my sql dump includes information_schema database?

I exported everything using phpmyadmin and now I can't import my databases anymore because I get errors on the information_schema.

Is it possible to choose what tables in the dump file to import?

Upvotes: 0

Views: 476

Answers (2)

Casey Robinson
Casey Robinson

Reputation: 1019

Short answer: no.

PHPMyAdmin does not support table selection on import.

The easiest way to solve this issue is to export only the necessary tables. But if that is not possible, you can always manually remove the unnecessary tables with a text editor.

Upvotes: 2

Martin.
Martin.

Reputation: 10539

PHPMyAdmin's export just creates SQL file. Delete queries you want to omit and run the import

Upvotes: 2

Related Questions