No olvides que en las ciencias un problema puede tener diferentes resoluciones, por lo tanto te mostramos lo más óptimo y eficiente.
Ejemplo 1: tabla de respaldo de mysql
mysqldump db_name table_name > table_backup.sql
Ejemplo 2: mysql respalda ciertas tablas
-- If you are dumping tables t1, t2, and t3 from mydb
mysqldump -u...-p... mydb t1 t2 t3 > mydb_tables.sql/* If you have a ton of tables in mydb and you want to dump everything
--except t1, t2, and t3, do this: */
DBTODUMP=mydb
SQL="SET group_concat_max_len = 10240;"SQL="$SQL SELECT GROUP_CONCAT(table_name separator ' ')"SQL="$SQL FROM information_schema.tables WHERE table_schema='$DBTODUMP'"SQL="$SQL AND table_name NOT IN ('t1','t2','t3')"
TBLIST=`mysql -u...-p...-AN -e"$SQL"`
mysqldump -u...-p... $DBTODUMP $TBLIST > mydb_tables.sql
Si te sientes a gusto, puedes dejar un tutorial acerca de qué te ha parecido esta división.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)