真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

php備份數(shù)據(jù)庫方案 php 備份數(shù)據(jù)庫

php實(shí)現(xiàn)mysql數(shù)據(jù)庫分表分段備份

分卷導(dǎo)出思路:統(tǒng)計(jì)sql語句變量的長度,按1個字符當(dāng)成1

創(chuàng)新互聯(lián)公司-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比石景山網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式石景山網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋石景山地區(qū)。費(fèi)用合理售后完善,10多年實(shí)體公司更值得信賴。

字節(jié)比較,如果大于設(shè)定分卷大小,則寫入一個sql文件(我也不知道這樣統(tǒng)計(jì)是否穩(wěn)當(dāng),這也是借鑒其他的人的)。

分卷導(dǎo)入思路:按行讀取sql文件,將每一行當(dāng)作完整的sql語句存到數(shù)組再循環(huán)執(zhí)行插入數(shù)據(jù)庫就可以了,但是在創(chuàng)建表語句分了多行,這個需要單獨(dú)處理(就這個花了我好長時間的);

?php

//宋正河

轉(zhuǎn)載請注明出處

set_time_limit(0);

header('content-type:text/html;charset=utf-8');

mysql_connect('localhost','root','root');

mysql_select_db('test');

$table_array=get_tables('test');

mysql_query('set

names

utf8');

$filesize=1024*1024*4;

$start=$_GET['start']?$_GET['start']:0;

$part=$_GET['part']?$_GET['part']:'1';

$table_index=$_GET['table_index']?$_GET['table_index']:'0';

$table=$table_array[$table_index];

$num=200000000;//這個數(shù)要足夠大,可以是總記錄數(shù)

$backupdata='';

if($start=='0'){

$query="SHOW

CREATE

TABLE

`{$table}`";

$result

=

mysql_query($query);

$row

=

mysql_fetch_row($result);

$backupdata

.=

"DROP

TABLE

IF

EXISTS

`{$table}`;\n"

.

$row[1]

.

";\n\n";

}

$limit=($start=='0')?'':"

limit

$start,$num

";

$query="select

*

from

`{$table}`

$limit

";

$result=mysql_query($query);

$numfields

=

mysql_num_fields($result);

//統(tǒng)計(jì)字段數(shù)

while($row=mysql_fetch_row($result)){

$comma

=

'';

//存儲逗號

$backupdata_tmp

=

"INSERT

INTO

`{$table}`

VALUES

(";

for($i=0;

$i$numfields;

$i++){

$backupdata_tmp

.=

$comma

.

"'"

.

mysql_escape_string($row[$i])

.

"'";

$comma

=

',';

}

$backupdata_tmp

.=

");\n";

if(strlen($backupdata)+strlen($backupdata_tmp)

$filesize){

//寫入文件并跳轉(zhuǎn)

$file='data/'.$table.'-'.$part.'.sql';

file_put_contents($file,$backupdata);

echo

$file.'

備份完成,程序繼續(xù)進(jìn)行!';

$part++;

//分段

//表名

//起點(diǎn)

//跳轉(zhuǎn)

sleep(3);

echo

"scriptlocation.href='?start={$start}table_index={$table_index}part={$part}';/script";

exit;

}

$backupdata.=$backupdata_tmp;

$start++;

}

if($backupdata){

$file='data/'.$table.'-'.$part.'.sql';

file_put_contents($file,$backupdata);

}

echo

$table.'備份完成!br

/';

sleep(2);

$table_index++;

if($table_array[$table_index]){

echo

"scriptlocation.href='?table_index={$table_index}';/script";

exit;

}else{

echo

'恭喜你,數(shù)據(jù)庫備份完畢!';

}

function

get_tables($db){

$tq

=

mysql_list_tables($db);

while($tr

=

mysql_fetch_row($tq)){

$arrtb[]

=

$tr[0];

}

return

$arrtb;

}

?

以上所述就是本文的全部內(nèi)容了,希望大家能夠喜歡。

如何用PHP來實(shí)現(xiàn)MySQL備份

備份數(shù)據(jù)庫并下載到本地【db_backup.php】

?php?

//?設(shè)置SQL文件保存文件名?

$filename=date("Y-m-d_H-i-s")."-".$cfg_dbname.".sql";?

//?所保存的文件名?

header("Content-disposition:filename=".$filename);?

header("Content-type:application/octetstream");?

header("Pragma:no-cache");?

header("Expires:0");?

//?獲取當(dāng)前頁面文件路徑,SQL文件就導(dǎo)出到此文件夾內(nèi)?

$tmpFile?=?(dirname(__FILE__))."\\".$filename;?

//?用MySQLDump命令導(dǎo)出數(shù)據(jù)庫?

exec("mysqldump?-u$cfg_dbuser?-p$cfg_dbpwd?--default-character-set=utf8?$cfg_dbname??".$tmpFile);?

$file?=?fopen($tmpFile,?"r");?//?打開文件?

echo?fread($file,filesize($tmpFile));?

fclose($file);?

exit;?

?

請問如何用php寫一個類,備份所有的數(shù)據(jù)庫呢?

主要是個mysql dump操作,將數(shù)據(jù)庫的數(shù)據(jù)完整導(dǎo)入到txt或者其他文件中就可以的,和php的類相關(guān)很小啊,就是函數(shù)和mysql操作寫對了就好

怎樣使用PHP自動備份數(shù)據(jù)庫

mysql數(shù)據(jù)庫的備份方式有很多;

例如:

1、使用mysqldump函數(shù)

mysqldump -u username -p dbname table1 table2 ... ? BackupName.sql

dbname參數(shù)表示數(shù)據(jù)庫的名稱

table1和table2參數(shù)表示需要備份的表的名稱,為空則整個數(shù)據(jù)庫備份;

BackupName.sql參數(shù)表設(shè)計(jì)備份文件的名稱,文件名前面可以加上一個絕對路徑。通常將數(shù)據(jù)庫被分成一個后綴名為sql的文件;

基本使用:

2、管理工具


本文題目:php備份數(shù)據(jù)庫方案 php 備份數(shù)據(jù)庫
分享鏈接:http://weahome.cn/article/dojsdoc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部