--備份資料庫
backup
database test to
disk='
d:\test.bak
' --完整備份
go--
資料庫還原
--1、附加資料庫
create
database hotelbook_data
onprimary(filename=
'd:\shujuku\hotelbook_data.mdf
')for attach
--2、還原用backup備份的資料庫
restore
database testdb
from
disk='
d:\test.bak
'with move '
test'to
'd:\sql\test.mdf
',move '
test_log'to
'd:\sql\test.ldf'--
刪除資料庫
drop
database test
gobackup database 資料庫名 to disk= ' ' with compression --sql server 增加資料庫壓縮,用此。
--檢視資料當前程序
select 'kill '+convert(varchar,spid)
from master..sysprocesses
where db_name(dbid)='yintaiorder'
參考:
資料庫備份,恢復
備份資料庫是利用檔案的複製功能,即 filecopy 命令。在進行檔案備份前,應對 vb作如下設定,在 部件 中加入 microsoft jet and replication object 2.5 library 並在適當的位置加入以下程式 dim jro asjro.jetengine set ...
資料庫備份 恢復
前幾天用ms sql server2005 做資料庫備份與恢復的工作!甲伺服器 基準伺服器 乙伺服器 備份伺服器 需求描述 要求二個internet上的資料庫進行同步,而且伺服器兩端 甲 乙 僅開放80,21等常用埠 資料庫伺服器如果完全暴露在外網上,會很危險的。每天都會有很大的流量,流量主要來自於...
資料庫備份與恢復
主要 段 資料庫的備份和實時進度顯示 public bool backupdb string servername,string username,string password,string strdbname,string strfilename,progressbar pgbmain catc...