SQL2005数据库中用语句创建数据库和表_SQL SERVER数据库_黑客防线网安服务器维护基地--Powered by WWW.RONGSEN.COM.CN

SQL数据库2005中用语句创建数据库和表

作者:黑客防线网安SQL维护基地 来源:黑客防线网安SQL维护基地 浏览次数:0

本篇关键词:数据库创建语句
黑客防线网安网讯:  在SQL Server2005中用语句创建数据库和表:   具体示例如下:   use master   go   if exists (select * from sysdatabases where name='Study')   --判断Study数据库...

  在SQL Server2005中用语句创建数据库和表:

  具体示例如下:

  use master

  go

  if exists (select * from sysdatabases where name='Study')

  --判断Study数据库是否存在如果是就进行删除

  drop database Study

  go

  EXEC sp_configure 'show advanced options', 1

  GO

  -- 更新当前高级选项的配置信息

  RECONFIGURE

  GO

  EXEC sp_configure 'xp_cmdshell', 1

  GO

  -- 更新当前功能(xp_cmdshell)的配置信息

  RECONFIGURE

  GO

  exec xp_cmdshell 'mkdir D:data', NO_OUTPUT

  --利用xp_cmdshell 命令创建文件夹此存储过程的第一个参数为要执行的有效dos命令,第二个参数为是否输出返回信息

  go

  create database Study--创建数据库

  on primary

  (

  name='Study_data',--主数据文件的逻辑名

  fileName='D:dataStudy_data.mdf',--主数据文件的物理名

  size=10MB,--初始大小

  filegrowth=10% --增长率

  )

  log on

  (

  name='Study_log',--日志文件的逻辑名

  fileName='D:dataStudy_data.ldf',--日志文件的物理名

  size=1MB,

  maxsize=20MB,--最大大小

  filegrowth=10%

  )

  go

  use Study

  go

  if exists (select * from sysobjects where name='Student')--判断是否存在此表

  drop table Student

  go

  create table Student

  (

  id int identity(1,1) primary key,--id自动编号,并设为主键

  [name] varchar(20) not null,

  sex char(2) not null,

  birthday datetime not null,

  phone char(11) not null,

  remark text,

  tId int not null,

  age as datediff(yyyy,birthday,getdate())--计算列。

  )

  go

  if exists (select * from sysobjects where name='Team')

  drop table Team

  go

  create table Team

  (

  id int identity(1,1) primary key,

  tName varchar(20) not null,

  captainId int

  )

  go

  alter table Student

  add

  constraint CH_sex check(sex in ('男','女')),--检查约束,性别必须是男或女

  constraint CH_birthday check(birthday between '1950-01-01' and '1988-12-31'),

  constraint CH_phone check(len(phone)=11),

  constraint FK_tId foreign key(tId) references Team(id),--外键约束,引用Team表的主键

  constraint DF_remark default('请在这里填写备注') for remark--默认约束,

  go

    黑客防线网安服务器维护方案本篇连接:http://www.rongsen.com.cn/show-9428-1.html
网站维护教程更新时间:2012-03-21 02:20:47  【打印此页】  【关闭
我要申请本站N点 | 黑客防线官网 |  
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479

footer  footer  footer  footer