Abbiamo 40 database nel nostro server.
Vogliamo eseguire il backup di 36 database utilizzando mysqldump. Come posso ignorare i restanti 4 database nel comando mysqldump? C'è qualche opzione per mysqldump di ignorare i database per il backup in MySQL?
Conosco il comando generale mysqldump ma è molto lungo. Voglio ignorare solo 4 database e devo fare il backup dei dbs rimanenti.
information_schema
che non venga comunque scaricato.mysqldump does not dump the INFORMATION_SCHEMA or performance_schema database by default. To dump either of these, name it explicitly on the command line and also use the --skip-lock-tables option. You can also name them with the --databases option. Before MySQL 5.5 mysqldump silently ignores INFORMATION_SCHEMA even if you name it explicitly on the command line.
dev.mysql.com/doc/refman/5.5/en/mysqldump.html