SQL Server 2005快照与查询的使用场景

复制USE master GO -- Drop snapshot database if it already exists IF EXISTS ( SELECT name FROM sys.databases WHERE name = NNorthwind_20090725 ) DROP DATABASE Northwind_NorthwindTest GO -- Create the snapshot database CREATE DATABASE Northwind_20090725 ON ( NAME = Northwind,照查 FILENAME = E:\Temp\Northwind_20090725.ss ) AS SNAPSHOT OF Northwind; GO 1.2.3.4.5.6.7.8.9.10.11.12.13.14.15.16.
本文地址:http://www.bzve.cn/html/645f9599259.html
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。