sql >> Databáze >  >> RDS >> Mysql

Jak mohu importovat velký (14 GB) soubor výpisu MySQL do nové databáze MySQL?

Hledal jsem v okolí a pomohlo mi pouze toto řešení:

mysql -u root -p

set global net_buffer_length=1000000; --Set network buffer length to a large byte number

set global max_allowed_packet=1000000000; --Set maximum allowed packet size to a large byte number

SET foreign_key_checks = 0; --Disable foreign key checking to avoid delays,errors and unwanted behaviour

source file.sql --Import your sql dump file

SET foreign_key_checks = 1; --Remember to enable foreign key checks when procedure is complete!

Odpověď naleznete zde .



  1. Použití JShell v Javě 9 v NetBeans 9.0, část 2

  2. Vytvoření testovacího prostředí z produkčního úložiště

  3. Jak zkontrolujete, zda je IDENTITY_INSERT na serveru SQL nastaveno na ON nebo OFF?

  4. Problém s funkcemi a pohledy oken