建立乙個資料庫(binbin)有乙個主要資料庫檔案(bin.mdf),乙個次要資料庫檔案組(jay)裡面有次要資料檔案(jay_1.ndf,jay_2.ndf),乙個日誌文志檔案(ziji.ldf)
**********====判斷是否存在此資料庫,若存在就刪除**********==
if exists(select * from sysdtabases where name ='binbin')
drop database binbin
----------
create database binbin ---建立資料庫
on primary ---主要資料庫檔案
(name=bin, ---主要資料庫檔名稱
filename='d:/bin.mdf', ---主要資料庫檔案存放的路徑
size=5, --初始化時的大小(預設不加單位是mb)
maxsize=20, ---最大值(預設不加單位是mb)
filegrowth=10 --檔案增長速度(預設不加單位是mb)
),filegroup jay ---次要資料庫檔案組
(name=jay_1, ---次要資料庫檔案
filename='d:/jay_1.ndf',
size=5,
maxsize=20,
filegrowth=10),(
name=jay_2, ---次要資料庫檔案
filename='d:/jay_2.ndf',
size=5,
maxsize=20,
filegrowth=10
)log on
(name=ziji,
filename='d:/ziji.ldf',
size=5,
maxsize=20,
filegrowth=10
)******************************===完********************====
資料庫建立
刪除資料庫 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...
建立資料庫
sysdatabases 包含 master model msdb mssqlweb 和 tempdb 資料庫的項。該錶只儲存在 master 資料庫中。tql select from master.dbo.sysdatabases 查詢結果顯示 所有資料庫 表1.0 資料庫查詢表 if exist...