مهندسی نرم افزار uml سیستم توریسم بخش سی و چهارم
طراحی Data Base
9-1- نمودار مربوط به ارتباط بین موجودیتهای سيستم E-Tourism
9-2- کدهای SQL جهت تولید جدول فوق در SQL Server
/****** Object: Database GatarRahan Script Date: 2009/01/26 04:01:56 ب.ظ ******/
IF EXISTS (SELECT name FROM master.dbo.sysdatabases WHERE name = N'GatarRahan')
DROP DATABASE [GatarRahan]
GO
CREATE DATABASE [GatarRahan] ON (NAME = N'GatarRahan_Data', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL\data\GatarRahan_Data.MDF' , SIZE = 1, FILEGROWTH = 10%) LOG ON (NAME = N'GatarRahan_Log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL\data\GatarRahan_Log.LDF' , SIZE = 1, FILEGROWTH = 10%)
GO
exec sp_dboption N'GatarRahan', N'autoclose', N'false'
GO
exec sp_dboption N'GatarRahan', N'bulkcopy', N'false'
GO
exec sp_dboption N'GatarRahan', N'trunc. log', N'false'
GO
exec sp_dboption N'GatarRahan', N'torn page detection', N'true'
GO
exec sp_dboption N'GatarRahan', N'read only', N'false'
GO
exec sp_dboption N'GatarRahan', N'dbo use', N'false'
GO
exec sp_dboption N'GatarRahan', N'single', N'false'
GO
exec sp_dboption N'GatarRahan', N'autoshrink', N'false'
GO
exec sp_dboption N'GatarRahan', N'ANSI null default', N'false'
GO
exec sp_dboption N'GatarRahan', N'recursive triggers', N'false'
GO
exec sp_dboption N'GatarRahan', N'ANSI nulls', N'false'
GO
exec sp_dboption N'GatarRahan', N'concat null yields null', N'false'
GO
exec sp_dboption N'GatarRahan', N'cursor close on commit', N'false'
GO
exec sp_dboption N'GatarRahan', N'default to local cursor', N'false'
GO
exec sp_dboption N'GatarRahan', N'quoted identifier', N'false'
GO
exec sp_dboption N'GatarRahan', N'ANSI warnings', N'false'
GO
exec sp_dboption N'GatarRahan', N'auto create statistics', N'true'
GO
exec sp_dboption N'GatarRahan', N'auto update statistics', N'true'
GO
if( (@@microsoftversion / power(2, 24) = 8) and (@@microsoftversion & 0xffff >= 724) )
exec sp_dboption N'GatarRahan', N'db chaining', N'false'
GO
use [GatarRahan]
GO
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[FK_Forush_Belit_Ghtar_Costumers2]') and OBJECTPROPERTY(id, N'IsForeignKey') = 1)
ALTER TABLE [dbo].[Forush_Belit_Ghtar] DROP CONSTRAINT FK_Forush_Belit_Ghtar_Costumers2
GO
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[FK_Forush_Belit_Ghtar_Look_Harkat_Num]') and OBJECTPROPERTY(id, N'IsForeignKey') = 1)
ALTER TABLE [dbo].[Forush_Belit_Ghtar] DROP CONSTRAINT FK_Forush_Belit_Ghtar_Look_Harkat_Num
GO