2

Is there any way to skip already created tables while importing ? I am trying to import 2GB of database using command prompt but the operation is aborted by mistake. Now if i will do the import again it will drop each table and create it again, That will take very long time.

I want to skip those tables from import which is already created or can i start it from where it was aborted ? I am using this command

mysql -u root -p my_database_name < db_dump.sql

1 Answers1

1
--ignore-table=my_db_name.my_table_name my_db_name > dump.sql
MDCCL
  • 8,530
  • 3
  • 32
  • 63
Pankaj
  • 11
  • 1