本文章介紹了都是mysql常用的命令一些資料匯入匯出的命令了,只要我們撐握這些命令就可以方法快速的給我們的資料庫進行備份還原了
mysql資料到匯入匯出 500mb資料
問題:500m的庫表資料,需要匯入到新的資料庫中。
首先通過控制台進入mysql
mysql -u root -p 12345
create database `demo` default character set utf8 collate utf8_general_ci;
use demo;切換資料庫
source file.sql 匯入資料,這其中file.sql在 mysql的bin目錄下,也可以修改成自己的路徑
問題:匯入後出現中文亂碼。。。。
重新再來
drop database demo
c utf8;//切換編碼
use demo ;
source file.sql;
--------------------------------------------
mysqldump 資料庫名 -u root -p -h ip位址 > file.sql
其它關於mysql資料匯出匯入資料庫
匯出 mysqldump方法
mysqldump -u使用者名稱 -p密碼名 database [table]> 目標檔案
匯入 mysql -uroot -proot
use database
source 目標檔案;
ps: 這種方法zvzvcgek是匯出整個表資料,並且帶著建表資訊,假如匯入的資料庫有同名的表,會被替換
ps: 可以新增條件
mysqlzvzvcgek -uroot -proot [-n] [-t] [-d] database [table]>name
-t 不包含建立表的資訊
-d不包含資料資訊
--w or -w篩選條件
1 例:先進入dos cmd命令模式 ctrl旁邊的鍵+r
2 匯出 mysqldump -uroot -proot test student -t -w studentno=10101 >stu
3 匯入 mysql -uroot -proot
4 mysql>use test
5 mysql>source stu
方法二
into outfile
load data infile
例子 匯出
mysql -uroot -proot
mysql>use test
mysql>select * from student where studentno=10101 into outfile './stu';
匯入 mysql -uroot -proot
mysql>use test
mysql>load data infile './stu' into table student;
匯出xml
mysqldump --xml -uroot -proot [database] [table]> name.xml
[test]
mysqldump --xml -uroot -proot test>a.xml
mysqldump --xml -uroot -proot test dept>a.xml
mysql -x -uroot -proot -e "use test;select * from dept">a.xml[方法2]
匯入xml檔案內容到資料庫
mysql> create table xmlt(
-> id int ,
-> doc blob
-> );
mysql> insert into xmlt values(1,load_file('/home/a.xml') );
mysql> select * from xmlt;
mysql常用命令
1.匯出整個資料庫
mysqldump -u 使用者名稱 -p --default-character-set=latin1 資料庫名 > 匯出的檔名(資料庫預設編碼是latin1)
mysqldump -u wcnc -p smgp_apps_wcnc > wcnc.sql
2.匯出乙個表
mysqldump -u 使用者名稱 -p 資料庫名 匯出的檔名
mysqldump -u wcnc -p smgp_apps_wcnc users> wcnc_users.sql
3.匯出乙個資料庫結構
mysqldump -u wcnc -p -d –add-drop-table smgp_apps_wc程式設計客棧nc >d:wcnc_db.sql
-d 沒有資料 –add-drop-table 在每個create語句之前增加乙個drop table
4.匯入資料庫
a:常用source 命令
進入mysql資料庫控制台,
如mysql -u root -p
mysql>use 資料庫
然後使用source命令,後面引數為指令碼檔案(如這裡用到的.sql)
mysql>source wcnc_db.sql
b:使用mysqldump命令
mysqldump -u username -p dbname < filename.sql
c:使用mysql命令
mysql -u username -p -d dbname < filename.sql
本文標題: 自用mysql自帶命令實現資料庫備份還原的方法
本文位址: /shujuku/mysql/87317.html
MySQL資料庫常用命令 自用
下面記錄一些常用的資料庫命令。其中,加下劃線是需要根據實際情況變更的,加的是可選引數。一 基礎命令與基礎知識 1 檢視有哪些資料庫 show databases 此時會返回已存在的資料庫名。2 選擇資料庫 use 資料庫名 3 檢視某個資料庫中的表 需要先use show tables 4 查詢該資...
MySQL自帶資料庫test編碼問題
今天突然遇到插入中文失敗的情況,如下 error 1366 hy000 incorrect string value xe5 xb0 x8f xe6 x9d x8e for column name at row 1 經分析,資料庫編碼問題 1 my.ini配置檔案編碼均已調整為utf8。2 安裝完m...
MYSQL 自帶4個預設資料庫
預設資料庫分類 information schema performance schema mysql test informance schema 儲存了mysql服務所有資料庫的資訊。具體mysql服務有多少個資料庫,各個資料庫有哪些表,各個表中的字段是什麼資料型別,各個表中有哪些索引,各個資料...