1、–建立資料庫
create database 「mydatabase」 on primary ( name=hehehe_data, filename=『c:\users\admin\desktop\36\hehehe1.mdf』, size=5mb, maxsize=unlimited, filegrowth=2mb ) log on ( name=hehehe_log,filename=『c:\users\admin\desktop\36\hehehe1.ldf』,size=5mb,maxsize=unlimited, filegrowth=10% )
2、–建立資料表
use 「materialstorage」
create table[dbo].入庫表
3、–資料庫備份
backup database 資料庫名稱
to disk=『path』
4、–資料庫還原
restore database 資料庫名稱
from disk=『path』
5、–資料庫刪除
drop database 資料庫名稱
6、–資料庫日誌**
alter database 資料庫名稱 set recovery ****** with no_wait
alter database 資料庫名稱 set recovery ****** --簡單模式
use 資料庫名稱
dbcc shrinkfile(n』資料庫名稱_log』,0,truncateonly)
alter database 資料庫名稱 set recovery full with no_wait
alter database 資料庫名稱 set recovery full
6、–分離資料庫(資料庫分離到原資料庫的磁碟位置上)
sp_detach_db @dbname=『oooo』
附加資料庫(還原資料庫)
sp_attach_db @dbname=『oooo』, @filename1=『oooo.mdf』,@filename2=『oooo.ldf』
SQL SERVER 日期相關操作
先記些我最近用到的吧,以後想起來了再加 希望小旗多飄會 select getdate as date 獲取當前日期時間 select day getdate as day 獲取當日 select day getdate 1 as day 獲取次日日期 select month getdate as ...
SQL Server 資料庫相關操作01
主資料檔案 mdf 有且僅有乙個,所有資料庫的起點,包含指向其它資料庫檔案的指標。大小 3m 輔助資料檔案 ndf 數量 0 事務日誌檔案 ldf 先寫日誌後運算元據庫。數量 1 大小 512kb 日誌 資料檔案 1 3 資料檔案組 資料檔案的邏輯集合,只包含資料檔案,不包含日誌檔案。優點 1 存放...
一些操作sql server相關服務的命令列
資料庫引擎和 sql server 作為服務執行。您可以使用 sql server 配置管理器啟動 暫停和停止服務。也可以從命令提示符使用 net命令 分別為 net start net pause 和net stop 啟動 暫停和停止 資料庫引擎服務。還可以使用 sqlservr.exe 程式管理...