sql >> Database >  >> RDS >> Mysql

Voer MySQLDump uit zonder tabellen te vergrendelen

Is de --lock-tables=false optie werkt?

Volgens de man-pagina , als u InnoDB-tabellen dumpt, kunt u de --single-transaction gebruiken optie:

--lock-tables, -l

Lock all tables before dumping them. The tables are locked with READ
LOCAL to allow concurrent inserts in the case of MyISAM tables. For
transactional tables such as InnoDB and BDB, --single-transaction is
a much better option, because it does not need to lock the tables at
all.

Voor innodb DB :

mysqldump --single-transaction=TRUE -u username -p DB


  1. Indexen in MySQL begrijpen:deel één

  2. Aanbevolen Intel-processors voor SQL Server 2014 – maart 2015

  3. Back-up van PostgreSQL met pg_dump en pg_dumpall

  4. TIMESTAMPADD() Voorbeelden – MySQL