SQL SEVER資料庫的還原

2021-08-18 09:23:57 字數 376 閱讀 3007

use master

restore database "資料庫

名"   --如:leading

from disk='資料庫備份檔案路徑'  --如:c:\program files\microsoft sql server\data\leadingdebug.bak

with move '資料庫檔名'  --如:leading

to '資料庫檔案放置路徑',  --如:e:\sqlsever\leading.mdf

move '資料庫日誌檔名'  --如:leading_log

to '日誌檔案存放置路徑'  --如:e:\sqlsever\leading_log.ldf

go

SQLSEVER系統資料庫表

master select from msreplication options select from spt fallback db select from spt fallback dev select from spt fallback usg select from spt monitor...

C 連線SQL Sever資料庫

c 連線sql sever用到的是sqlconnection連線物件,程式 如下 using system.data using system.data.sqlclient string strconnection user id sa password strconnection initail ...

還原資料庫

use gyjlbigfootmis goif exists select from sysobjects where name kymp 還原資料庫 and type p begin drop procedure kymp 還原資料庫 endgo create procedure kymp 還原資...