创建一个数据库快照

use master
if exists(select * from sysdatabases where name = '学生管理系统')
drop database 学生管理系统
Create DataBase 学生管理系统
on
(
name = '学生管理系统_DATA',
filename = 'E:\暂时数据库\学生管理系统_DATA.mdf',
size = 10MB,
filegrowth = 1MB
)
log on
(
name = '学生管理系统_LOG',
filename = 'E:\暂时数据库\学生管理系统_LOG.ldf',
size = 10MB,
filegrowth = 1MB
)
go


use master
create database 学生管理系统_snapshot  /*快照名称*/
on
(
name = '学生管理系统_DATA', /*须要生成快照的文件名称*/
filename = 'E:\暂时数据库快照\学生管理系统_DATA.mdf'  /*须要生成快照的文件地址*/
)
as snapshot of 学生管理系统  /*源数据库名称*/
go

版权声明:本文博主原创文章。博客,未经同意不得转载。

posted @ 2015-10-04 18:32  hrhguanli  阅读(248)  评论(0编辑  收藏  举报