建立資料庫
create database testdb1view codeon(name=testdb1,
filename='
d:\testdb1.mdf',
size=10
,maxsize=50
,filegrowth=1
)log on(
name=testdb_log,
filename='
d:\testdb_log.ldf',
size=1
,maxsize=unlimited,
filegrowth=10%)
go
create database testdb1view codeon(name=testdb1,
filename='
d:\testdb1.mdf',
size=10
,maxsize=50
,filegrowth=1
)log on(
name=testdb1_log,
filename='
d:\testdb1_log.ldf',
size=1
,maxsize=unlimited,
filegrowth=10%),
(name=testdb2_log,
filename='
d:\testdb2_log.ldf',
size=1
,maxsize=unlimited,
filegrowth=10%)
go
檢視資料庫資訊
execute sp_helpdb testdb1
或 sp_helpdb
sp_helpdb testdb1view codealter database testdb1
add file(
name=testdb1ndf1,
filename='
d:\testdb1ndf1.ndf',
size=5mb,
maxsize=10mb,
filegrowth=6mb
) to filegroup mygroup
alter database testdb1
add log file(
name=testdb3_log,
filename='
d:\testdb3.ldf',
size=5mb,
maxsize=10mb,
filegrowth=10%)
alter database testdb1
modify file(name=testdb1,size=21mb)
goalter database testdb1
modify file (name=testdb_log,size=21mb)
alter database testdb1
add filegroup mygroup
gosp_helpfilegroup
gosp_helpdb testdb1
alter database testdb1
remove file testdb3_log
filegroup用法
設定資料庫只可以讀
屬性→選項→狀態→資料庫唯讀 true
use test
goalter database test set read_only -- read_write
go--sp_dboption test, 'read only','false'
sp_helpdb testview codeuse test
goalter database test
setread_write
goalter database test
modify file(name=te,size=15mb)
use test
go dbcc shrinkfile(te,10)
go
任務→收縮→資料庫
選中資料庫→重新命名→要改資料庫名字→回車
sp_renamedb 原資料庫名,新資料庫名
drop database test
資料庫建立
刪除資料庫 drop database cpxs 資料庫操作語法 建立資料庫 create database database name on 子句 資料檔案屬性 primary 指定主檔案,否則預設第乙個 n 檔案屬性 filegrowth growth increament n 檔案組 log ...
建立資料庫
1.建立表空間 create tablespace test space logging datafile f oracle oracledata test.ora size 5m extent management local uniform segment space management au...
建立資料庫
建立乙個資料庫 binbin 有乙個主要資料庫檔案 bin.mdf 乙個次要資料庫檔案組 jay 裡面有次要資料檔案 jay 1.ndf,jay 2.ndf 乙個日誌文志檔案 ziji.ldf 判斷是否存在此資料庫,若存在就刪除 if exists select from sysdtabases w...