建立資料庫

2021-06-01 12:14:05 字數 1635 閱讀 6019

sysdatabases 包含 master、model、msdb、mssqlweb 和 tempdb 資料庫的項。該錶只儲存在 master 資料庫中。

tql:select * from master.dbo.sysdatabases

查詢結果顯示:所有資料庫

表1.0

(資料庫查詢表)

if exists(select * from master.dbo.sysdatabases where name='databasename')

drop database test /*刪除資料庫*/

create database databasename

use [master]

goif  exists(select * from master.dbo.sysdatabases where name='test')

begin

print 'test資料庫已經存在'

drop database test/*刪除資料庫*/

/***建立資料庫

:test 建立日期:2011/11/6***/

create database [test] on primary /**建立主要日誌檔案

**/

name = n'test',

filename = n'e:\my program\db\test.mdf',

size = 5mb,/*初始大小*/

maxsize=50mb,/*最大大小*/

filegrowth=2mb/*增長增量*/

log 

on/*建立次要日誌檔案*/

name= n'test_log',

filename=n'e:\my program\db\test_log.ldf',

size=10mb,

maxsize=100mb,

filegrowth=1mb

print '資料庫建立成功

'

end

else

begin

print 'test資料庫已經存在'

drop database test/*刪除資料庫*/

/***建立資料庫

:test 建立日期:2011/11/6***/

create database [test] on primary /**建立主要日誌檔案

**/

name = n'test',

filename = n'e:\my program\db\test.mdf',

size = 5mb,/*初始大小*/

maxsize=50mb,/*最大大小*/

filegrowth=2mb/*增長增量*/

log 

on/*建立次要日誌檔案*/

name= n'test_log',

filename=n'e:\my program\db\test_log.ldf',

size=10mb,

maxsize=100mb,

filegrowth=1mb

print '資料庫建立成功

'

end g

資料庫建立

刪除資料庫 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...