Linux Server and Workstation Configuration How To

  • Decrease font size
  • Default font size
  • Increase font size
  • default color
  • red color
  • green color
Home
Export
Tags: [Export, Backup, Dump, MySQL, Database]  ...
Tags: [Export, MySQL, Database]  ...
Tags: [Export, MySQL, Database]  ...
  Basic vi commands Command Description TERM = terminal_name export TERM Setting Terminal configuration tput init Initialize terminal as terminal_name vi filename Open ...
NFS server (FreeBSD): /etc/rc.conf: portmap_enable = "YES" nfs_server_enable = "YES" nfs_reserved_port_only = "YES" /etc/exports (FreeBSD) / Usr / local / nfs-rw 192.168.1.2 / Usr / ...
To export a MySQL database into a dump file, simply type the following command syntax in the shell. mysqldump -u username –ppassword database_name > dump.sql Replace username, password, database_name ...
If You need to export only the MySQL database's tables’ structures use –no-data switch. mysqldump -u username -ppassword –no-data database_name > dump.sql ...
For exporting MySQL database's only the data, use –no-create-info option. The dump will not re-create the database, tables, fields, and other structures when importing. mysqldump -u username -ppassword ...
If You need to export only the MySQL database's tables’ structures use –no-data switch. mysqldump -u username -ppassword –no-data database_name > dump.sql ...
Use –databases option for exporting several databases. mysqldump -u username -ppassword –databases db_name1 [db_name2 ...] >dump.sql ...
Backup the database inevitable cause MySQL server unavailable to applications because when exporting, all tables acquired a global read lock using FLUSH TABLES WITH READ LOCK at the beginning of the dump ...
... set to emacs, the emacs editor will be used. Type "export EDITOR=emacs" to set that variable.     faillog Examine faillog and set login failure limits.     finger ...

Useful Links

Friends

Thanks David Ayvazyan for provided useful information and discussions.
www.gnu.am (Armenian Translation)