--
查詢ws_resource
此表select * from ws_resource;
--備份
ws_resource
create table ws_resource_bak asselect * from ws_resource;
--然後查詢下備份出來的
ws_resource_bak
與ws_resource
的資料是否相同
select count(*) fromws_resource_bak;
select count(*) from ws_resource;
2.公升級的在原表中進行操作。 a
)如果操作後沒有問題
把copy
出來的表
drop掉。
b)如果出現問題
在表結構一致的前提下
先把原表中的資料清除
命令:truncatetable
表名稱;
再從新錶中把資料匯入源表
命令:insertinto
源表名select * from
新錶名;
備份資料庫
參考 sql如何備份到異機 寫成儲存過程,建立作業定時備份 在sql中對映一下就可以了 exec master.xp cmdshell net use z yizhi d module user yizhi administrator 說明 exec master.xp cmdshell net u...
備份資料庫
命令在dos的 url file mysql bin mysql bin url 目錄下執行 1.匯出整個資料庫 匯出檔案預設是存在mysql bin目錄下 mysqldump u 使用者名稱 p 資料庫名 匯出的檔名 mysqldump u user name p123456 database n...
備份資料庫
sql備份所有資料庫指令碼 declare currentdatabasename nvarchar 100 declare currentbackfolder nvarchar 200 declare currentbackstring nvarchar 2000 這裡是備份的目錄,所有資料庫都備...