mysqldump -u utente -p database tabella > /tmp/tabella.sql
Se vogliamo anche comprimere la tabella:
mysqldump -u utente -p database tabella | bzip2 > /tmp/tabella.sql.bz2
mysqldump -u utente -p database tabella > /tmp/tabella.sql
Se vogliamo anche comprimere la tabella:
mysqldump -u utente -p database tabella | bzip2 > /tmp/tabella.sql.bz2