建立並使用資料庫快照

2021-04-17 18:19:17 字數 476 閱讀 5295

執行如下命令為資料庫建立快照

use northwind

create database northwind_dbss1200 on

( name = northwind, filename = 'c:/northwind_data_1200.ss' )

as snapshot of northwind;

go檢視伺服器上的資料庫快照

在物件資源管理器中,連線到 microsoft sql server database engine 例項,然後展開該例項。

展開「資料庫」。

展開「資料庫快照」,然後選擇要檢視的快照。

可以發現剛剛建立的資料庫快照northwind_dbss1200

使用快照資料庫

use northwind_dbss1200

select * from orders

這是查詢的資料**於快照.原資料庫修改後並不反映到快照中.

建立資料庫快照

use master if exists select from sysdatabases where name 學生管理系統 drop database 學生管理系統 create database 學生管理系統on name 學生管理系統 data filename e 臨時資料庫 學生管理系統...

SQL Server 建立資料庫快照

建立資料庫快照 必須在create database 命令中包括源資料庫的每乙個資料檔案,原始邏輯名,新物理名與路徑,不能指定其他屬性 create database db snapshot name on as snapshot of db name 例子 create database stud...

使用SQLiteHelper建立資料庫並插入資料

參考 瘋狂android講義 8.4節p424 1 獲取sqlitedatabase例項有2種方法,一是直接new sqlitedatabase 另一種使用sqlitehelper。一般建議使用後者。使用sqlitehelper插入資料的一般步驟 package com.ljh.sqllitehel...