mysql資料庫備份

時間 2022-07-26 08:00:03

1樓:最好的時光在路上

我暑假自學的,看能不能幫上忙。(windowsxp下,估計也沒什麼用,

但希望對你有所啟發)

用mysqldump備份:(first:資料庫,customer1:表,***:你的密碼)

mysqldump first customer > c:\backup\customer1.sql -uroot -p***

mysqldump first > c:\backup\first.sql -uroot -p***

恢復用mysqldump備份的資料庫:(進入mysql安裝路徑的bin目錄中)

d:\mysql\bin>mysql first < c:\backup\customer1.sql -uroot -p***

用select into做備份

select * from customer into outfile 'c:/backup/customer.dat';

用load data恢復表:

load data infile 'c:/backup/customer.dat' into table customer;

用mysqlimport代替load data:

mysqlimport first /backup/customer.dat -uroot -p***

2樓:匿名使用者

是linux嗎??如果是可以是使用logrotate,寫個指令碼就可以了。

MYSQL資料庫update select把表中的資料

妞兒媽媽 1 update b,a set num3 a.num1 a.num2where b.name1 a.name2。2 update 表a set name select id from 表b where 表b.name 表a.name 3 有兩個表,table1,table2 table1...

資料庫熱備份

backup databas就行了 如 備份 backup database test to disk n g test disk n f test.bak with noformat,noinit go還原 restore database test from disk n f test.bak ...

mysql資料庫怎樣建立表,MYsql資料庫怎樣建立表?

歐覓潘安然 比如要建立學生表表名為student,學生表有欄位學號 no 年齡 age create table student no int primary key 主鍵 age int 執行下就建立好了 隨便舉的例子,明白吧?謝謝採納! create database cookbook 建立一個...