汽车租赁公司CIS数据库系统的设计[7]

[入库:2005年8月18日] [更新:2007年3月24日]

本文简介:选择自 lastking 的 blog

go

 

exec sp_dboption n'taxi', n'dbo use', n'false'

go

 

exec sp_dboption n'taxi', n'single', n'false'

go

 

exec sp_dboption n'taxi', n'autoshrink', n'true'

go

 

exec sp_dboption n'taxi', n'ansi null default', n'false'

go

 

exec sp_dboption n'taxi', n'recursive triggers', n'false'

go

 

exec sp_dboption n'taxi', n'ansi nulls', n'false'

go

 

exec sp_dboption n'taxi', n'concat null yields null', n'false'

go

 

exec sp_dboption n'taxi', n'cursor close on commit', n'false'

go

 

exec sp_dboption n'taxi', n'default to local cursor', n'false'

go

 

exec sp_dboption n'taxi', n'quoted identifier', n'false'

go

 

exec sp_dboption n'taxi', n'ansi warnings', n'false'

go

 

exec sp_dboption n'taxi', n'auto create statistics', n'true'

go

 

exec sp_dboption n'taxi', n'auto update statistics', n'true'

go

 

use [taxi]

go

 

if exists (select * from dbo.sysobjects where id = object_id(n'[dbo].[fk_reserve_info_car_info]') and objectproperty(id, n'isforeignkey') = 1)

alter table [dbo].[reserve_info] drop constraint fk_reserve_info_car_info

go

 

本文关键:汽车租赁公司CIS数据库系统的设计
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top