backup database test
to disk = 'c:\temp\test_20101125.bak'
with stats=5
, noinit
restore headeronly
from disk = 'c:\temp\test_20101125.bak'
restore filelistonly
from disk = 'c:\temp\test_20101125.bak'
restore labelonly
from disk = 'c:\temp\test_20101125.bak'
restore verifyonly
from disk = 'c:\temp\test_20101125.bak'
use test
go
create table tbl (col int)
insert into tbl values (1)
select * from tbl
backup database test
to disk = 'c:\temp\test1.bak'
insert int tbl values (2)
backup log test
to disk = 'c:\temp\test2.trn'
sp_readerrorlog 0
-----------------------------------------------
---- 1. restore full back
---- 2. restore diff back
---- 3. all restore tran back
backup log test
to disk = 'c:\temp\test3.trn'
with no_truncate
---------------------------------------------
restore database test
from disk = 'c:\temp\test1.bak'
with norecovery
restore log test
from disk = 'c:\temp\test2.trn'
with recovery
-- norecovery 처음
-- last : recovery option 마지막
* 스크립트 다운로드 사이트 :
'Engineering > DB' 카테고리의 다른 글
MSSQL 2005 관리자 강좌_5일차 (0) | 2010.12.02 |
---|---|
MSSQL 2005 관리자 강좌_4일차 (0) | 2010.12.02 |
MSSQL 2005 관리자 강좌_2일차 (0) | 2010.12.02 |
MSSQL 2005 관리자 강좌_1일차 (0) | 2010.12.02 |
select* from 테이블, select *from 테이블 (0) | 2010.06.11 |