Search
 
SCRIPT & CODE EXAMPLE
 

SQL

compression of dabatase mysqldumo

1: mysqldump -u dbUser -p DBName > OutputFile.sql
2: mysqldump -u dbUser -p DBName | gzip > OutputFile.sql.gz
3: mysqldump -u dbUser -p DBName | gzip -9 > OutputFile.sql.gz
4: mysqldump -u dbUser -p DBName | zip > OutputFile.sql.zip
5: mysqldump -u dbUser -p DBName | bzip2 > OutputFile.sql.bz2
Comment

PREVIOUS NEXT
Code Example
Sql :: Host ' is not allowed to connect to this MySQL server 
Sql :: SQL Copy From Two Tables to One 
Sql :: bigquery information_schema schema all columns 
Sql :: check if user defined table type exists in sql server 
Sql :: oracle create index if not exists 
Sql :: alter database datafile maxsize 32g 
Sql :: convert sql server guid to varbinary 
Sql :: plsql find location of procedure 
Sql :: mysql uuid 
Sql :: SQL COMO ALTERA NOME DE TABELA 
Sql :: mysql join column order By and group By 
Sql :: mysql shell 
Sql :: foreign key in sql dbms 
Sql :: mysql workbench change default value 
Sql :: between keyword sql 
Sql :: postgres create trigger if not exists 
Sql :: open cursors in oracle 
Sql :: Can you Join two Tables With Common Column? 
Sql :: sqlite3 python foreign key 
Sql :: mysql multiply 
Sql :: postgresql connect 
Sql :: cast in sql server 
Sql :: sql case sttement with set 
Sql :: postgresql add not null and not empty constraint 
Sql :: json object to column value in sql server 
Sql :: Power BI merge tables same columns 
Sql :: timestamp type in sql 
Sql :: how to generate er diagram in mysql workbench 
Sql :: sql query to linq converter online 
Sql :: identitye atama yapma SQL 
ADD CONTENT
Topic
Content
Source link
Name
7+4 =