?? softsys.sql
字號(hào):
USE master
GO
CREATE DATABASE SoftSys
ON
PRIMARY ( NAME = Soft1,
FILENAME = 'c:\program files\microsoft sql server\mssql\data\SoftData1.mdf',
SIZE = 100MB,
MAXSIZE = 200,
FILEGROWTH = 20),
( NAME = Soft2,
FILENAME = 'c:\program files\microsoft sql server\mssql\data\SoftData2.ndf',
SIZE = 100MB,
MAXSIZE = 200,
FILEGROWTH = 20),
( NAME = Soft3,
FILENAME = 'c:\program files\microsoft sql server\mssql\data\SoftData3.ndf',
SIZE = 100MB,
MAXSIZE = 200,
FILEGROWTH = 20)
LOG ON
( NAME = SoftLog1,
FILENAME = 'c:\program files\microsoft sql server\mssql\data\SoftLog1.ldf',
SIZE = 100MB,
MAXSIZE = 200,
FILEGROWTH = 20),
( NAME = SoftLog2,
FILENAME = 'c:\program files\microsoft sql server\mssql\data\SoftLog2.ldf',
SIZE = 100MB,
MAXSIZE = 200,
FILEGROWTH = 20)
GO
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -