GO USE [DiversityDescriptions_Base] GO /****** Object: User [AdminProxy] Script Date: 12.01.2023 14:08:43 ******/ CREATE USER [AdminProxy] FOR LOGIN [AdminProxy] WITH DEFAULT_SCHEMA=[dbo] GO /****** Object: DatabaseRole [TerminologyEditor] Script Date: 12.01.2023 14:08:43 ******/ CREATE ROLE [TerminologyEditor] GO /****** Object: DatabaseRole [ProjectManager] Script Date: 12.01.2023 14:08:43 ******/ CREATE ROLE [ProjectManager] GO /****** Object: DatabaseRole [DescriptionsEditor] Script Date: 12.01.2023 14:08:43 ******/ CREATE ROLE [DescriptionsEditor] GO /****** Object: DatabaseRole [DataUser] Script Date: 12.01.2023 14:08:43 ******/ CREATE ROLE [DataUser] GO /****** Object: DatabaseRole [DataReader] Script Date: 12.01.2023 14:08:43 ******/ CREATE ROLE [DataReader] GO /****** Object: DatabaseRole [CacheUser] Script Date: 12.01.2023 14:08:43 ******/ CREATE ROLE [CacheUser] GO /****** Object: DatabaseRole [CacheAdmin] Script Date: 12.01.2023 14:08:43 ******/ CREATE ROLE [CacheAdmin] GO /****** Object: DatabaseRole [Administrator] Script Date: 12.01.2023 14:08:43 ******/ CREATE ROLE [Administrator] GO ALTER ROLE [Administrator] ADD MEMBER [AdminProxy] GO ALTER ROLE [ProjectManager] ADD MEMBER [AdminProxy] GO ALTER ROLE [TerminologyEditor] ADD MEMBER [AdminProxy] GO ALTER ROLE [DescriptionsEditor] ADD MEMBER [AdminProxy] GO ALTER ROLE [DataReader] ADD MEMBER [AdminProxy] GO ALTER ROLE [DataUser] ADD MEMBER [AdminProxy] GO ALTER ROLE [CacheAdmin] ADD MEMBER [AdminProxy] GO ALTER ROLE [CacheUser] ADD MEMBER [AdminProxy] GO ALTER ROLE [DescriptionsEditor] ADD MEMBER [TerminologyEditor] GO ALTER ROLE [DataReader] ADD MEMBER [TerminologyEditor] GO ALTER ROLE [DataUser] ADD MEMBER [TerminologyEditor] GO ALTER ROLE [TerminologyEditor] ADD MEMBER [ProjectManager] GO ALTER ROLE [DescriptionsEditor] ADD MEMBER [ProjectManager] GO ALTER ROLE [DataReader] ADD MEMBER [ProjectManager] GO ALTER ROLE [DataUser] ADD MEMBER [ProjectManager] GO ALTER ROLE [DataReader] ADD MEMBER [DescriptionsEditor] GO ALTER ROLE [DataUser] ADD MEMBER [DescriptionsEditor] GO ALTER ROLE [DataUser] ADD MEMBER [DataReader] GO ALTER ROLE [DataReader] ADD MEMBER [CacheUser] GO ALTER ROLE [DataUser] ADD MEMBER [CacheUser] GO ALTER ROLE [DataReader] ADD MEMBER [CacheAdmin] GO ALTER ROLE [CacheUser] ADD MEMBER [CacheAdmin] GO ALTER ROLE [ProjectManager] ADD MEMBER [Administrator] GO ALTER ROLE [TerminologyEditor] ADD MEMBER [Administrator] GO ALTER ROLE [DescriptionsEditor] ADD MEMBER [Administrator] GO ALTER ROLE [DataReader] ADD MEMBER [Administrator] GO ALTER ROLE [DataUser] ADD MEMBER [Administrator] GO ALTER ROLE [CacheAdmin] ADD MEMBER [Administrator] GO /****** Object: UserDefinedFunction [dbo].[BaseURL] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE FUNCTION [dbo].[BaseURL] () RETURNS varchar(255) AS BEGIN DECLARE @URL varchar(255) SET @URL = 'http://id.snsb.info/Descriptions/' RETURN @URL END GO /****** Object: UserDefinedFunction [dbo].[DescriptorList] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- ============================================= -- Author: Anton Link -- Create date: 2020-10-01 -- Description: Read descriptor list for a -- project specified by its ProjectURI and -- Project (both from DiversityProjects) -- 2021-10-18: Project increased to 255 chars -- ============================================= CREATE FUNCTION [dbo].[DescriptorList] ( @Project NVARCHAR(255), @ProjectURI NVARCHAR(255) ) RETURNS @DescriptorList TABLE (Descriptor NVARCHAR(255) NOT NULL) AS BEGIN -- Fill the table variable with the rows for your result set DECLARE @LocalProjectId int SET @LocalProjectId=(SELECT [dbo].[LocalProjectID](@Project, @ProjectURI)) INSERT INTO @DescriptorList SELECT label FROM Descriptor WHERE id IN (SELECT descriptor_id FROM View_DescriptorProject WHERE project_id=@LocalProjectId) ORDER BY display_order, label RETURN END GO /****** Object: UserDefinedFunction [dbo].[DiversityWorkbenchModule] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE FUNCTION [dbo].[DiversityWorkbenchModule] () RETURNS nvarchar(50) AS BEGIN RETURN 'DiversityDescriptions' END; GO /****** Object: UserDefinedFunction [dbo].[IsProductive] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE FUNCTION [dbo].[IsProductive] () RETURNS bit AS BEGIN RETURN 1 END GO /****** Object: UserDefinedFunction [dbo].[ItemList] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- ============================================= -- Author: Anton Link -- Create date: 2020-10-01 -- Description: Read item list for a -- project specified by its ProjectURI and -- Project (both from DiversityProjects) -- 2021-10-18: Project increased to 255 chars -- ============================================= CREATE FUNCTION [dbo].[ItemList] ( @Project NVARCHAR(255), @ProjectURI NVARCHAR(255) ) RETURNS @ItemList TABLE (Item NVARCHAR(255) NOT NULL) AS BEGIN -- Fill the table variable with the rows for your result set DECLARE @LocalProjectId int SET @LocalProjectId=(SELECT [dbo].[LocalProjectID](@Project, @ProjectURI)) INSERT INTO @ItemList SELECT label FROM Description WHERE project_id=@LocalProjectId AND NOT id IN ( SELECT DISTINCT D.description_id FROM DescriptorStatusData D INNER JOIN DataStatus_Enum S ON D.datastatus_id=S.id WHERE S.code='DataWithheld') ORDER BY label, id RETURN END GO /****** Object: UserDefinedFunction [dbo].[LocalProjectID] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- ============================================= -- Author: Anton Link -- Create date: 2020-10-01 -- Description: Get the local project ID for a -- project specified by its ProjectURI and -- Project (both from DiversityProjects) -- 2021-10-18: Project increased to 255 chars -- ============================================= CREATE FUNCTION [dbo].[LocalProjectID] ( @Project NVARCHAR(255), @ProjectURI NVARCHAR(255) ) RETURNS int AS BEGIN -- Declare the return variable here DECLARE @LocalProjectId int SET @LocalProjectId=(SELECT P.id FROM Project P INNER JOIN ProjectProxy X ON P.ProjectProxyID=X.ProjectID WHERE X.Project=@Project AND X.ProjectURI=@ProjectURI AND P.label=@Project) -- Return the result of the function RETURN @LocalProjectId END GO /****** Object: UserDefinedFunction [dbo].[PrivacyConsentInfo] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO --##################################################################################################################### --###### Function PrivacyConsentInfo providing common information within the DiversityWorkbench #################### --##################################################################################################################### CREATE FUNCTION [dbo].[PrivacyConsentInfo] () RETURNS varchar (900) AS BEGIN return 'http://diversityworkbench.net/Portal/Default_Agreement_on_Processing_of_Personal_Data_in_DWB_Software' END; GO /****** Object: UserDefinedFunction [dbo].[ProjectDataLastChanges] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO --##################################################################################################################### --###### ProjectDataLastChanges ############################################################################## --##################################################################################################################### CREATE FUNCTION [dbo].[ProjectDataLastChanges] (@ProjectID int) RETURNS datetime AS /* retrieval of the last update in data of a project --Test select dbo.[ProjectDataLastChanges](111) */ BEGIN declare @LastChanges datetime declare @Temp datetime -- last changes in Descriptions SET @LastChanges = (SELECT MAX(Q.[LogUpdatedWhen]) FROM [dbo].[DescriptionUpdate_Query] AS Q WHERE Q.id IN (SELECT D.id FROM [Description] AS D WHERE D.project_id = @ProjectID)) -- last changes in Descriptors SET @Temp = (SELECT MAX(Q.[LogUpdatedWhen]) FROM [dbo].[DescriptorUpdate_Query] AS Q WHERE Q.id IN (SELECT DISTINCT descriptor_id FROM View_DescriptorProject WHERE project_id = @ProjectID)) if (@Temp > @LastChanges) set @LastChanges = @Temp -- last changes in Project SET @Temp = (SELECT MAX(Q.[LogUpdatedWhen]) FROM [dbo].[ProjectUpdate_Query] AS Q WHERE Q.id = @ProjectID) if (@Temp > @LastChanges) set @LastChanges = @Temp return @LastChanges END GO /****** Object: UserDefinedFunction [dbo].[UserID] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE FUNCTION [dbo].[UserID] () RETURNS int AS BEGIN declare @ID int; SET @ID = (SELECT MIN(ID) FROM UserProxy U WHERE U.LoginName = SUSER_SNAME()) if (@ID is null) begin SET @ID = (SELECT MIN(ID) FROM UserProxy U WHERE U.LoginName = USER_NAME()) end IF @ID IS NULL begin set @ID = -1 end RETURN @ID END GO /****** Object: UserDefinedFunction [dbo].[UserName] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE FUNCTION [dbo].[UserName] (@ID varchar(10)) RETURNS nvarchar(50) AS BEGIN declare @User nvarchar(50); SET @User = (SELECT MIN(CASE WHEN U.CombinedNameCache <> '' THEN substring(U.CombinedNameCache, 1, 50) ELSE CASE WHEN U.LoginName <> '' THEN U.LoginName ELSE cast(U.ID as varchar) END END) FROM UserProxy U WHERE cast(U.ID as varchar) = @ID) RETURN @User END GO /****** Object: UserDefinedFunction [dbo].[Version] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE FUNCTION [dbo].[Version] () RETURNS nvarchar(8) AS BEGIN RETURN '03.03.07' END GO /****** Object: UserDefinedFunction [dbo].[VersionClient] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO --##################################################################################################################### --###### Re-init AdminProxy ####################################################################################### --##################################################################################################################### --EXEC [dbo].[procSetUserAdminProxy]; --GO --##################################################################################################################### --###### setting the Version ###################################################################################### --##################################################################################################################### CREATE FUNCTION [dbo].[VersionClient] () RETURNS nvarchar(11) AS BEGIN RETURN '04.05.00' END GO /****** Object: Table [dbo].[Annotation] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Annotation]( [id] [int] IDENTITY(1,1) NOT NULL, [object_id] [int] NOT NULL, [language_code] [nvarchar](3) NOT NULL, [contributor_id] [int] NOT NULL, [timestamp] [datetime] NOT NULL, [content] [nvarchar](max) NOT NULL, [is_internal] [tinyint] NOT NULL, [is_latest_revision] [tinyint] NOT NULL, [MEMO_WhichVersionsInheritIsNotSolved] [int] NOT NULL, CONSTRAINT [PK_Annotation] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[BaseEntity] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[BaseEntity]( [id] [int] IDENTITY(1,1) NOT NULL, [table_id] [int] NULL CONSTRAINT [DF_BaseEntity_table_id] DEFAULT (NULL), [specific_rights_text] [nvarchar](255) NULL CONSTRAINT [DF_BaseEntity_specific_rights_text] DEFAULT (NULL), [specific_licence_uri] [nvarchar](255) NULL CONSTRAINT [DF_BaseEntity_specific_licence_uri] DEFAULT (NULL), [LogInsertedBy] [nvarchar](50) NULL CONSTRAINT [DF_BaseEntity_LogInsertedBy] DEFAULT ([dbo].[UserID]()), [LogInsertedWhen] [smalldatetime] NULL CONSTRAINT [DF_BaseEntity_LogInsertedWhen] DEFAULT (getdate()), [LogUpdatedBy] [nvarchar](50) NULL CONSTRAINT [DF_BaseEntity_LogUpdatedBy] DEFAULT ([dbo].[UserID]()), [LogUpdatedWhen] [smalldatetime] NULL CONSTRAINT [DF_BaseEntity_LogUpdatedWhen] DEFAULT (getdate()), CONSTRAINT [PK_BaseEntity] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[BaseEntity_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[BaseEntity_log]( [id] [int] NULL, [table_id] [int] NULL, [specific_rights_text] [nvarchar](255) NULL, [specific_licence_uri] [nvarchar](255) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_BaseEntity_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[BaseEntityTable_Enum] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[BaseEntityTable_Enum]( [id] [int] NOT NULL, [table] [nvarchar](255) NOT NULL, CONSTRAINT [PK_BaseEntityTable_Enum] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_BaseEntityTable_Enum_1] UNIQUE NONCLUSTERED ( [table] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[CacheDatabase] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[CacheDatabase]( [Server] [varchar](50) NOT NULL, [DatabaseName] [varchar](50) NOT NULL, [Port] [smallint] NOT NULL, [Version] [varchar](50) NULL, CONSTRAINT [PK_CacheDatabase] PRIMARY KEY CLUSTERED ( [Server] ASC, [DatabaseName] ASC, [Port] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[CacheMappingDescription] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[CacheMappingDescription]( [id] [int] IDENTITY(1,1) NOT NULL, [project_id] [int] NOT NULL, [description_id] [int] NOT NULL, [target_key] [int] NOT NULL, CONSTRAINT [PK_CacheMappingDescription] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_CacheMappingDescription_1] UNIQUE NONCLUSTERED ( [project_id] ASC, [description_id] ASC, [target_key] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[CacheMappingDescriptor] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[CacheMappingDescriptor]( [id] [int] IDENTITY(1,1) NOT NULL, [project_id] [int] NOT NULL, [descriptor_id] [int] NOT NULL, [target_key] [int] NOT NULL, [last_state_key] [int] NULL, CONSTRAINT [PK_CacheMappingDescriptor] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_CacheMappingDescriptor_1] UNIQUE NONCLUSTERED ( [project_id] ASC, [descriptor_id] ASC, [target_key] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[CacheMappingState] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[CacheMappingState]( [id] [int] IDENTITY(1,1) NOT NULL, [project_id] [int] NOT NULL, [state_id] [int] NOT NULL, [target_key] [int] NOT NULL, CONSTRAINT [PK_CacheMappingState] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_CacheMappingState_1] UNIQUE NONCLUSTERED ( [project_id] ASC, [state_id] ASC, [target_key] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[CacheProject] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[CacheProject]( [id] [int] IDENTITY(1,1) NOT NULL, [project_id] [int] NOT NULL, [withheld_data_level] [tinyint] NULL, [key_mapping_level] [tinyint] NULL, [last_char_key] [int] NULL, [last_item_key] [int] NULL, [last_changes] [datetime] NULL, CONSTRAINT [PK_CacheProject] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[CategoricalSamplingData] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[CategoricalSamplingData]( [id] [int] IDENTITY(1,1) NOT NULL, [sampling_unit_id] [int] NOT NULL, [state_id] [int] NOT NULL, [notes] [nvarchar](max) NULL, [modifier_id] [int] NULL, [frequency_value] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_CategoricalSamplingData] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_CategoricalSamplingData_1] UNIQUE NONCLUSTERED ( [sampling_unit_id] ASC, [state_id] ASC, [modifier_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[CategoricalSamplingData_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[CategoricalSamplingData_log]( [id] [int] NULL, [sampling_unit_id] [int] NULL, [state_id] [int] NULL, [notes] [nvarchar](max) NULL, [modifier_id] [int] NULL, [frequency_value] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_CategoricalSamplingData_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[CategoricalState] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[CategoricalState]( [id] [int] NOT NULL, [descriptor_id] [int] NOT NULL, [label] [nvarchar](255) NOT NULL, [abbreviation] [nvarchar](255) NULL, [detail] [nvarchar](max) NULL, [wording] [nvarchar](255) NULL, [display_order] [int] NOT NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_CategoricalState] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_CategoricalState_1] UNIQUE NONCLUSTERED ( [label] ASC, [descriptor_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[CategoricalState_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[CategoricalState_log]( [id] [int] NULL, [descriptor_id] [int] NULL, [label] [varchar](255) NULL, [abbreviation] [varchar](255) NULL, [detail] [nvarchar](max) NULL, [wording] [varchar](255) NULL, [display_order] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_CategoricalState_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[CategoricalSummaryData] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[CategoricalSummaryData]( [id] [int] IDENTITY(1,1) NOT NULL, [description_id] [int] NOT NULL, [state_id] [int] NOT NULL, [notes] [nvarchar](max) NULL, [modifier_id] [int] NULL, [frequency_id] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_CategoricalSummaryData] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_CategoricalSummaryData_1] UNIQUE NONCLUSTERED ( [description_id] ASC, [state_id] ASC, [modifier_id] ASC, [frequency_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[CategoricalSummaryData_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[CategoricalSummaryData_log]( [id] [int] NULL, [description_id] [int] NULL, [state_id] [int] NULL, [notes] [nvarchar](max) NULL, [modifier_id] [int] NULL, [frequency_id] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_CategoricalSummaryData_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[Contribution] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Contribution]( [id] [int] IDENTITY(1,1) NOT NULL, [object_id] [int] NOT NULL, [contributor_id] [int] NOT NULL, [role] [nvarchar](255) NOT NULL, [timestamp] [datetime] NOT NULL, CONSTRAINT [PK_Contribution] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[Contributor] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Contributor]( [id] [int] IDENTITY(1,1) NOT NULL, [email] [nvarchar](255) NULL, [web_pseudonym] [nvarchar](255) NULL, [avatar_uri] [nvarchar](255) NULL, [real_name] [nvarchar](255) NULL, [linked_agent_uri] [nvarchar](255) NULL, CONSTRAINT [PK_Contributor] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_Contributor_1] UNIQUE NONCLUSTERED ( [email] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[DataStatus_Enum] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[DataStatus_Enum]( [id] [int] NOT NULL, [label] [nvarchar](255) NOT NULL, [code] [nvarchar](255) NOT NULL, [abbreviation] [char](1) NOT NULL, [detail] [nvarchar](max) NULL, CONSTRAINT [PK_DataStatus_Enum] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_DataStatus_Enum_1] UNIQUE NONCLUSTERED ( [code] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_DataStatus_Enum_2] UNIQUE NONCLUSTERED ( [abbreviation] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_DataStatus_Enum_3] UNIQUE NONCLUSTERED ( [label] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[Description] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Description]( [id] [int] NOT NULL, [label] [nvarchar](255) NULL, [detail] [nvarchar](max) NULL, [project_id] [int] NOT NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [alternate_id] [nvarchar](30) NULL, [wording] [nvarchar](255) NULL, CONSTRAINT [PK_Description] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[Description_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[Description_log]( [id] [int] NULL, [label] [nvarchar](255) NULL, [detail] [nvarchar](max) NULL, [project_id] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, [alternate_id] [nvarchar](30) NULL, [wording] [nvarchar](255) NULL, CONSTRAINT [PK_Description_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[DescriptionProject] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[DescriptionProject]( [id] [int] IDENTITY(1,1) NOT NULL, [description_id] [int] NOT NULL, [project_id] [int] NOT NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_DescriptionProject] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_DescriptorProject_1] UNIQUE NONCLUSTERED ( [description_id] ASC, [project_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[DescriptionProject_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[DescriptionProject_log]( [id] [int] NOT NULL, [description_id] [int] NULL, [project_id] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_DescriptionProject_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[DescriptionScope] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[DescriptionScope]( [id] [int] IDENTITY(1,1) NOT NULL, [description_id] [int] NOT NULL, [label] [nvarchar](255) NULL, [dwbURI] [nvarchar](500) NULL, [type] [nvarchar](255) NULL, [other_scope_id] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_DescriptionScope] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[DescriptionScope_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[DescriptionScope_log]( [id] [int] NULL, [description_id] [int] NULL, [label] [nvarchar](255) NULL, [dwbURI] [nvarchar](500) NULL, [type] [nvarchar](255) NULL, [other_scope_id] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_DescriptionScope_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[Descriptor] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Descriptor]( [id] [int] NOT NULL, [label] [nvarchar](255) NOT NULL, [abbreviation] [nvarchar](255) NULL, [detail] [nvarchar](max) NULL, [display_order] [int] NOT NULL, [subclass] [nvarchar](255) NOT NULL, [statistical_measurement_scale] [nvarchar](255) NOT NULL, [usually_exclusive] [tinyint] NOT NULL, [state_collection_model] [nvarchar](255) NOT NULL, [mandatory] [tinyint] NOT NULL, [repeatability] [nvarchar](255) NOT NULL, [availability] [nvarchar](255) NOT NULL, [measurement_unit] [nvarchar](255) NULL, [measurement_unit_precedes_value] [tinyint] NOT NULL, [values_are_integer] [tinyint] NOT NULL, [min_plausible_value] [float] NOT NULL, [max_plausible_value] [float] NOT NULL, [sequence_type] [nvarchar](255) NOT NULL, [symbol_length] [tinyint] NOT NULL, [enable_ambiguity_symbols] [tinyint] NOT NULL, [gap_symbol] [nvarchar](3) NULL, [wording_before] [nvarchar](255) NULL, [wording_after] [nvarchar](255) NULL, [data_entry_note] [nvarchar](max) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [wording] [nvarchar](255) NULL, CONSTRAINT [PK_Descriptor] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[Descriptor_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[Descriptor_log]( [id] [int] NULL, [label] [nvarchar](255) NULL, [abbreviation] [nvarchar](255) NULL, [detail] [nvarchar](max) NULL, [display_order] [int] NULL, [subclass] [varchar](12) NULL, [statistical_measurement_scale] [nvarchar](255) NULL, [usually_exclusive] [tinyint] NULL, [state_collection_model] [nvarchar](255) NULL, [mandatory] [tinyint] NULL, [repeatability] [nvarchar](255) NULL, [availability] [nvarchar](255) NULL, [measurement_unit] [nvarchar](255) NULL, [measurement_unit_precedes_value] [tinyint] NULL, [min_plausible_value] [float] NULL, [max_plausible_value] [float] NULL, [wording_before] [nvarchar](255) NULL, [wording_after] [nvarchar](255) NULL, [data_entry_note] [nvarchar](max) NULL, [values_are_integer] [tinyint] NULL, [sequence_type] [nvarchar](255) NULL, [symbol_length] [tinyint] NULL, [enable_ambiguity_symbols] [tinyint] NULL, [gap_symbol] [nvarchar](3) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, [wording] [nvarchar](255) NULL, CONSTRAINT [PK_Descriptor_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[DescriptorInapplicability] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[DescriptorInapplicability]( [id] [int] IDENTITY(1,1) NOT NULL, [controlled_descriptor_id] [int] NOT NULL, [controlling_state_id] [int] NOT NULL, [rule] [nvarchar](255) NOT NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_DescriptorInapplicability] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_DescriptorInapplicability_1] UNIQUE NONCLUSTERED ( [controlled_descriptor_id] ASC, [controlling_state_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[DescriptorInapplicability_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[DescriptorInapplicability_log]( [id] [int] NULL, [controlled_descriptor_id] [int] NULL, [controlling_state_id] [int] NULL, [rule] [nvarchar](255) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_DescriptorInapplicability_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[DescriptorMapping_C2C] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[DescriptorMapping_C2C]( [id] [int] IDENTITY(1,1) NOT NULL, [from_state_id] [int] NOT NULL, [to_state_id] [int] NOT NULL, CONSTRAINT [PK_DescriptorMapping_C2C] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[DescriptorMapping_Q2C] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[DescriptorMapping_Q2C]( [id] [int] IDENTITY(1,1) NOT NULL, [from_descr_id] [int] NOT NULL, [from_lowerbound] [float] NOT NULL, [from_upperbound] [float] NOT NULL, [from_statistical_measure_id] [int] NOT NULL, [from_statmeas_class_TO_CONSIDER] [int] NOT NULL, [to_state_id] [int] NOT NULL, CONSTRAINT [PK_DescriptorMapping_Q2C] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[DescriptorStatusData] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[DescriptorStatusData]( [id] [int] IDENTITY(1,1) NOT NULL, [description_id] [int] NOT NULL, [descriptor_id] [int] NOT NULL, [datastatus_id] [int] NOT NULL, [notes] [nvarchar](max) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_DescriptorStatusData] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_DescriptorStatusData_1] UNIQUE NONCLUSTERED ( [description_id] ASC, [descriptor_id] ASC, [datastatus_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[DescriptorStatusData_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[DescriptorStatusData_log]( [id] [int] NULL, [description_id] [int] NULL, [descriptor_id] [int] NULL, [datastatus_id] [int] NULL, [notes] [nvarchar](max) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_DescriptorStatusData_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[DescriptorTree] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[DescriptorTree]( [id] [int] NOT NULL, [is_complete] [tinyint] NOT NULL, [label] [nvarchar](255) NOT NULL, [type] [nvarchar](255) NOT NULL, [project_id] [int] NOT NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_DescriptorTree] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_DescriptorTree_1] UNIQUE NONCLUSTERED ( [label] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[DescriptorTree_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[DescriptorTree_log]( [id] [int] NULL, [is_complete] [tinyint] NULL, [label] [nvarchar](255) NULL, [type] [nvarchar](255) NULL, [project_id] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_DescriptorTree_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[DescriptorTreeNode] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[DescriptorTreeNode]( [id] [int] NOT NULL, [parent_node_id] [int] NULL, [label] [nvarchar](255) NULL, [abbreviation] [nvarchar](255) NULL, [display_order] [int] NOT NULL, [descriptortree_id] [int] NOT NULL, [descriptor_id] [int] NULL, [detail] [nvarchar](max) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_DescriptorTreeNode] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_DescriptorTreeNode_1] UNIQUE NONCLUSTERED ( [descriptortree_id] ASC, [parent_node_id] ASC, [descriptor_id] ASC, [label] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[DescriptorTreeNode_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[DescriptorTreeNode_log]( [id] [int] NULL, [parent_node_id] [int] NULL, [label] [nvarchar](255) NULL, [abbreviation] [nvarchar](255) NULL, [display_order] [int] NULL, [descriptortree_id] [int] NULL, [descriptor_id] [int] NULL, [detail] [nvarchar](max) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_DescriptorTreeNode_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[DescriptorTreeNodeRecFrequency] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[DescriptorTreeNodeRecFrequency]( [id] [int] IDENTITY(1,1) NOT NULL, [node_id] [int] NOT NULL, [frequency_id] [int] NOT NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_DescriptorTreeNodeRecFrequency] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_DescriptorTreeNodeRecFrequency_1] UNIQUE NONCLUSTERED ( [node_id] ASC, [frequency_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[DescriptorTreeNodeRecFrequency_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[DescriptorTreeNodeRecFrequency_log]( [id] [int] NULL, [node_id] [int] NULL, [frequency_id] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_DescriptorTreeNodeRecFrequency_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[DescriptorTreeNodeRecModifier] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[DescriptorTreeNodeRecModifier]( [id] [int] IDENTITY(1,1) NOT NULL, [node_id] [int] NOT NULL, [modifier_id] [int] NOT NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_DescriptorTreeNodeRecModifier] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_DescriptorTreeNodeRecModifier_1] UNIQUE NONCLUSTERED ( [node_id] ASC, [modifier_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[DescriptorTreeNodeRecModifier_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[DescriptorTreeNodeRecModifier_log]( [id] [int] NULL, [node_id] [int] NULL, [modifier_id] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_DescriptorTreeNodeRecModifier_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[DescriptorTreeNodeRecStatMeasure] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[DescriptorTreeNodeRecStatMeasure]( [id] [int] IDENTITY(1,1) NOT NULL, [node_id] [int] NOT NULL, [measure_id] [int] NOT NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_DescriptorTreeNodeRecStatMeasure] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_DescriptorTreeNodeRecStatMeasure_1] UNIQUE NONCLUSTERED ( [node_id] ASC, [measure_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[DescriptorTreeNodeRecStatMeasure_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[DescriptorTreeNodeRecStatMeasure_log]( [id] [int] NULL, [node_id] [int] NULL, [measure_id] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_DescriptorTreeNodeRecStatMeasure_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[Frequency] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Frequency]( [id] [int] NOT NULL, [label] [nvarchar](255) NOT NULL, [lower_estimate] [float] NOT NULL, [upper_estimate] [float] NOT NULL, [display_order] [int] NOT NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_Frequency] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_Frequency_1] UNIQUE NONCLUSTERED ( [label] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[Frequency_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[Frequency_log]( [id] [int] NULL, [label] [nvarchar](255) NULL, [lower_estimate] [float] NULL, [upper_estimate] [float] NULL, [display_order] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_Frequency_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[Identifier] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Identifier]( [object_id] [int] NOT NULL, [uri] [nvarchar](255) NOT NULL, [match] [nvarchar](255) NOT NULL, CONSTRAINT [PK_Identifier] PRIMARY KEY CLUSTERED ( [uri] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[ImportMapping] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[ImportMapping]( [id] [int] IDENTITY(1,1) NOT NULL, [object_id] [int] NOT NULL, [session_id] [int] NOT NULL, [table_name] [varchar](50) NOT NULL, [parent_key] [varchar](255) NOT NULL, [external_key] [nvarchar](255) NOT NULL, CONSTRAINT [PK_ImportMapping] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_ImportMapping] UNIQUE NONCLUSTERED ( [session_id] ASC, [table_name] ASC, [parent_key] ASC, [external_key] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[ImportSession] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[ImportSession]( [id] [int] IDENTITY(1,1) NOT NULL, [project_id] [int] NOT NULL, [detail] [nvarchar](max) NULL, [create_timestamp] [datetime] NOT NULL, [update_timestamp] [datetime] NOT NULL, CONSTRAINT [PK_ImportSession] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[Modifier] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Modifier]( [id] [int] NOT NULL, [class] [nvarchar](255) NOT NULL, [label] [nvarchar](255) NOT NULL, [display_order] [int] NOT NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_Modifier] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_Modifier_1] UNIQUE NONCLUSTERED ( [label] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[Modifier_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[Modifier_log]( [id] [int] NULL, [class] [nvarchar](255) NULL, [label] [nvarchar](255) NULL, [display_order] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_Modifier_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[MolecularSequenceData] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[MolecularSequenceData]( [id] [int] IDENTITY(1,1) NOT NULL, [description_id] [int] NOT NULL, [descriptor_id] [int] NOT NULL, [sequence] [nvarchar](max) NOT NULL, [notes] [nvarchar](max) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_MolecularSequenceData] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_MolecularSequenceData_1] UNIQUE NONCLUSTERED ( [description_id] ASC, [descriptor_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[MolecularSequenceData_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[MolecularSequenceData_log]( [id] [int] NULL, [description_id] [int] NULL, [descriptor_id] [int] NULL, [sequence] [nvarchar](max) NULL, [notes] [nvarchar](max) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_MolecularSequenceData_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[MolecularSequenceSamplingData] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[MolecularSequenceSamplingData]( [id] [int] IDENTITY(1,1) NOT NULL, [sampling_unit_id] [int] NOT NULL, [descriptor_id] [int] NOT NULL, [sequence] [nvarchar](max) NOT NULL, [notes] [nvarchar](max) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_MolecularSequenceSamplingData] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_MolecularSequenceSamplingData_1] UNIQUE NONCLUSTERED ( [sampling_unit_id] ASC, [descriptor_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[MolecularSequenceSamplingData_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[MolecularSequenceSamplingData_log]( [id] [int] NULL, [sampling_unit_id] [int] NULL, [descriptor_id] [int] NULL, [sequence] [nvarchar](max) NULL, [notes] [nvarchar](max) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_MolecularSequenceSamplingData_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[OtherScope] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[OtherScope]( [id] [int] NOT NULL, [label] [nvarchar](255) NOT NULL, [detail] [nvarchar](max) NULL, [type] [nvarchar](255) NOT NULL, [sex_status_id] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_OtherScope] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_OtherScope_1] UNIQUE NONCLUSTERED ( [label] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[OtherScope_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[OtherScope_log]( [id] [int] NULL, [label] [nvarchar](255) NULL, [detail] [nvarchar](max) NULL, [type] [nvarchar](255) NULL, [sex_status_id] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_OtherScope_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[Project] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Project]( [id] [int] NOT NULL, [parent_project_id] [int] NULL, [label] [nvarchar](255) NOT NULL, [rights_text] [nvarchar](255) NULL, [licence_uri] [nvarchar](255) NULL, [detail] [nvarchar](max) NULL, [primary_language_code] [nvarchar](3) NOT NULL, [ProjectProxyID] [int] NOT NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [wording] [nvarchar](255) NULL, CONSTRAINT [PK_Project] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_Project_1] UNIQUE NONCLUSTERED ( [label] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[Project_AvailableScope] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Project_AvailableScope]( [id] [int] IDENTITY(1,1) NOT NULL, [project_id] [int] NOT NULL, [scope_id] [int] NOT NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_Project_AvailableScope] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_Project_AvailableScope_1] UNIQUE NONCLUSTERED ( [project_id] ASC, [scope_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[Project_AvailableScope_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[Project_AvailableScope_log]( [id] [int] NULL, [project_id] [int] NULL, [scope_id] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_Project_AvailableScope_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[Project_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[Project_log]( [id] [int] NULL, [parent_project_id] [int] NULL, [label] [nvarchar](255) NULL, [rights_text] [nvarchar](255) NULL, [licence_uri] [nvarchar](255) NULL, [detail] [nvarchar](max) NULL, [primary_language_code] [nvarchar](3) NULL, [ProjectProxyID] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, [wording] [nvarchar](255) NULL, CONSTRAINT [PK_Project_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[ProjectProxy] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[ProjectProxy]( [ProjectID] [int] NOT NULL, [Project] [nvarchar](255) NULL, [ProjectURI] [nvarchar](255) NULL, CONSTRAINT [PK_DiversityProjectProxy] PRIMARY KEY CLUSTERED ( [ProjectID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, FILLFACTOR = 90) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[ProjectUser] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[ProjectUser]( [LoginName] [nvarchar](50) NOT NULL, [ProjectID] [int] NOT NULL, [ReadOnly] [bit] NULL, CONSTRAINT [PK_ProjectUser] PRIMARY KEY CLUSTERED ( [LoginName] ASC, [ProjectID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, FILLFACTOR = 90) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[QuantitativeSamplingData] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[QuantitativeSamplingData]( [id] [int] IDENTITY(1,1) NOT NULL, [measure_id] [int] NULL, [sampling_unit_id] [int] NOT NULL, [descriptor_id] [int] NOT NULL, [value] [float] NOT NULL, [notes] [nvarchar](max) NULL, [modifier_id] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_QuantitativeSamplingData] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_QuantitativeSamplingData_1] UNIQUE NONCLUSTERED ( [sampling_unit_id] ASC, [descriptor_id] ASC, [measure_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[QuantitativeSamplingData_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[QuantitativeSamplingData_log]( [id] [int] NULL, [measure_id] [int] NULL, [sampling_unit_id] [int] NULL, [descriptor_id] [int] NULL, [value] [float] NULL, [notes] [nvarchar](max) NULL, [modifier_id] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_QuantitativeSamplingData_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[QuantitativeSummaryData] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[QuantitativeSummaryData]( [id] [int] IDENTITY(1,1) NOT NULL, [measure_id] [int] NOT NULL, [description_id] [int] NOT NULL, [descriptor_id] [int] NOT NULL, [value] [float] NOT NULL, [notes] [nvarchar](max) NULL, [modifier_id] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_QuantitativeSummaryData] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_QuantitativeSummaryData_1] UNIQUE NONCLUSTERED ( [description_id] ASC, [measure_id] ASC, [descriptor_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[QuantitativeSummaryData_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[QuantitativeSummaryData_log]( [id] [int] NULL, [measure_id] [int] NULL, [description_id] [int] NULL, [descriptor_id] [int] NULL, [value] [float] NULL, [notes] [nvarchar](max) NULL, [modifier_id] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_QuantitativeSummaryData_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[Resource] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Resource]( [id] [int] NOT NULL, [terminology_role] [nvarchar](255) NOT NULL, [ranking_for_terminology] [tinyint] NULL, [descriptor_id] [int] NULL, [state_id] [int] NULL, [taxon_role] [nvarchar](255) NOT NULL, [ranking_for_taxon_use] [tinyint] NULL, [taxon_id] [int] NULL, [description_id] [int] NULL, [scope_id] [int] NULL, [display_embedded] [tinyint] NOT NULL, [label] [nvarchar](255) NOT NULL, [detail] [nvarchar](max) NULL, [language_code] [nvarchar](3) NULL, [rights_text] [nvarchar](255) NULL, [licence_uri] [nvarchar](255) NULL, [display_order] [int] NOT NULL, [node_id] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_Resource] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[Resource_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[Resource_log]( [id] [int] NULL, [terminology_role] [nvarchar](255) NULL, [ranking_for_terminology] [tinyint] NULL, [descriptor_id] [int] NULL, [state_id] [int] NULL, [taxon_role] [nvarchar](255) NULL, [ranking_for_taxon_use] [tinyint] NULL, [taxon_id] [int] NULL, [description_id] [int] NULL, [display_embedded] [tinyint] NULL, [label] [nvarchar](255) NULL, [language_code] [nvarchar](3) NULL, [display_order] [int] NULL, [scope_id] [int] NULL, [rights_text] [nvarchar](255) NULL, [licence_uri] [nvarchar](255) NULL, [detail] [nvarchar](max) NULL, [node_id] [int] NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_Resource_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[ResourceVariant] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[ResourceVariant]( [id] [int] IDENTITY(1,1) NOT NULL, [resource_id] [int] NOT NULL, [variant_id] [int] NOT NULL, [url] [nvarchar](255) NOT NULL, [pixel_width] [int] NULL, [pixel_height] [int] NULL, [duration] [int] NULL, [size] [int] NULL, [mime_type] [nvarchar](255) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_ResourceVariant] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_ResourceVariant_1] UNIQUE NONCLUSTERED ( [resource_id] ASC, [variant_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[ResourceVariant_Enum] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[ResourceVariant_Enum]( [id] [int] NOT NULL, [label] [nvarchar](255) NOT NULL, [code] [nvarchar](255) NOT NULL, [detail] [nvarchar](max) NULL, [quality_order] [int] NOT NULL CONSTRAINT [DF_ResourceVariant_Enum_quality_order] DEFAULT ('0'), CONSTRAINT [PK_ResourceVariant_Enum] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_ResourceVariant_Enum_1] UNIQUE NONCLUSTERED ( [label] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_ResourceVariant_Enum_2] UNIQUE NONCLUSTERED ( [code] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[ResourceVariant_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[ResourceVariant_log]( [id] [int] NULL, [resource_id] [int] NULL, [variant_id] [int] NULL, [url] [nvarchar](255) NULL, [pixel_width] [int] NULL, [pixel_height] [int] NULL, [duration] [int] NULL, [size] [int] NULL, [mime_type] [nvarchar](255) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_ResourceVariant_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[SamplingEvent] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[SamplingEvent]( [id] [int] NOT NULL, [description_id] [int] NOT NULL, [label] [nvarchar](255) NULL, [detail] [nvarchar](max) NULL, [date_time] [datetime] NULL, [datetimespan_end] [datetime] NULL, [geographic_area] [nvarchar](255) NULL, [geographic_area_uri] [nvarchar](255) NULL, [coord_dec_latitude] [float] NULL, [coord_dec_longitude] [float] NULL, [coord_literal] [nvarchar](255) NULL, [coord_geodeticdatum] [nvarchar](50) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_SamplingEvent] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[SamplingEvent_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[SamplingEvent_log]( [id] [int] NULL, [description_id] [int] NULL, [label] [nvarchar](255) NULL, [detail] [nvarchar](max) NULL, [date_time] [datetime] NULL, [datetimespan_end] [datetime] NULL, [geographic_area] [nvarchar](255) NULL, [geographic_area_uri] [nvarchar](255) NULL, [coord_dec_latitude] [float] NULL, [coord_dec_longitude] [float] NULL, [coord_literal] [nvarchar](255) NULL, [coord_geodeticdatum] [nvarchar](50) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_SamplingEvent_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[SamplingUnit] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[SamplingUnit]( [id] [int] IDENTITY(1,1) NOT NULL, [sampling_event_id] [int] NOT NULL, [collection_specimen] [nvarchar](255) NULL, [collection_specimen_uri] [nvarchar](500) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_SamplingUnit] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[SamplingUnit_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[SamplingUnit_log]( [id] [int] NULL, [sampling_event_id] [int] NULL, [collection_specimen] [nvarchar](255) NULL, [collection_specimen_uri] [nvarchar](500) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_SamplingUnit_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[SexStatus_Enum] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[SexStatus_Enum]( [id] [int] NOT NULL, [label] [nvarchar](255) NOT NULL, [code] [nvarchar](255) NOT NULL, [abbreviation] [nvarchar](255) NOT NULL, [detail] [nvarchar](max) NULL, [display_order] [int] NOT NULL CONSTRAINT [DF_SexStatus_Enum_display_order] DEFAULT ('0'), CONSTRAINT [PK_SexStatus_Enum] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_SexStatus_Enum_1] UNIQUE NONCLUSTERED ( [label] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_SexStatus_Enum_2] UNIQUE NONCLUSTERED ( [code] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[StatisticalMeasure_Enum] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[StatisticalMeasure_Enum]( [id] [int] NOT NULL, [label] [nvarchar](255) NOT NULL, [code] [nvarchar](255) NOT NULL, [abbreviation] [nvarchar](255) NOT NULL, [display_order] [int] NOT NULL CONSTRAINT [DF_StatisticalMeasure_Enum_display_order] DEFAULT ('0'), [LogInsertedBy] [nvarchar](50) NULL CONSTRAINT [DF_StatisticalMeasure_Enum_LogInsertedBy] DEFAULT (user_name()), [LogInsertedWhen] [smalldatetime] NULL CONSTRAINT [DF_StatisticalMeasure_Enum_LogInsertedWhen] DEFAULT (getdate()), [LogUpdatedBy] [nvarchar](50) NULL CONSTRAINT [DF_StatisticalMeasure_Enum_LogUpdatedBy] DEFAULT (user_name()), [LogUpdatedWhen] [smalldatetime] NULL CONSTRAINT [DF_StatisticalMeasure_Enum_LogUpdatedWhen] DEFAULT (getdate()), CONSTRAINT [PK_StatisticalMeasure_Enum] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_StatisticalMeasure_Enum_1] UNIQUE NONCLUSTERED ( [label] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_StatisticalMeasure_Enum_2] UNIQUE NONCLUSTERED ( [code] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[StatisticalMeasure_Enum_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[StatisticalMeasure_Enum_log]( [id] [int] NULL, [label] [nvarchar](255) NULL, [code] [nvarchar](255) NULL, [abbreviation] [nvarchar](255) NULL, [display_order] [int] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_StatisticalMeasure_Enum_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[Tag] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Tag]( [id] [int] IDENTITY(1,1) NOT NULL, [tag] [nvarchar](255) NOT NULL, [object_id] [int] NOT NULL, CONSTRAINT [PK_Tag] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_Tag_1] UNIQUE NONCLUSTERED ( [tag] ASC, [object_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[TextDescriptorData] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[TextDescriptorData]( [id] [int] IDENTITY(1,1) NOT NULL, [description_id] [int] NOT NULL, [descriptor_id] [int] NOT NULL, [content] [nvarchar](max) NOT NULL, [notes] [nvarchar](max) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_TextDescriptorData] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_TextDescriptorData_1] UNIQUE NONCLUSTERED ( [description_id] ASC, [descriptor_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[TextDescriptorData_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[TextDescriptorData_log]( [id] [int] NULL, [description_id] [int] NULL, [descriptor_id] [int] NULL, [content] [nvarchar](max) NULL, [notes] [nvarchar](max) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_TextDescriptorData_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[TextSamplingData] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[TextSamplingData]( [id] [int] IDENTITY(1,1) NOT NULL, [sampling_unit_id] [int] NOT NULL, [descriptor_id] [int] NOT NULL, [content] [nvarchar](max) NOT NULL, [notes] [nvarchar](max) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_TextSamplingData] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_TextSamplingData_1] UNIQUE NONCLUSTERED ( [sampling_unit_id] ASC, [descriptor_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[TextSamplingData_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[TextSamplingData_log]( [id] [int] NULL, [sampling_unit_id] [int] NULL, [descriptor_id] [int] NULL, [content] [nvarchar](max) NULL, [notes] [nvarchar](max) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_TextSamplingData_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[TODO_MultilingualCharDataNotes] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[TODO_MultilingualCharDataNotes]( [table_is_just_a_note_-_Work_needs_to_be_done] [int] NOT NULL, [memo_char_and_taxon_notes_is_already_redundant_due_to_annotation] [int] NOT NULL, [memo_char_data_are_not_an_object_thus_not_annotated] [int] NOT NULL, CONSTRAINT [PK_TODO_MultilingualCharDataNotes] PRIMARY KEY CLUSTERED ( [table_is_just_a_note_-_Work_needs_to_be_done] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[Translation] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Translation]( [id] [int] IDENTITY(1,1) NOT NULL, [object_id] [int] NOT NULL, [language_code] [nvarchar](3) NOT NULL, [column_id] [int] NOT NULL, [contents] [nvarchar](max) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, CONSTRAINT [PK_Translation] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_Translation_1] UNIQUE NONCLUSTERED ( [object_id] ASC, [language_code] ASC, [column_id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[Translation_log] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[Translation_log]( [id] [int] NULL, [object_id] [int] NULL, [language_code] [nvarchar](3) NULL, [column_id] [int] NULL, [contents] [nvarchar](max) NULL, [LogInsertedBy] [nvarchar](50) NULL, [LogInsertedWhen] [smalldatetime] NULL, [LogUpdatedBy] [nvarchar](50) NULL, [LogUpdatedWhen] [smalldatetime] NULL, [LogState] [char](1) NULL, [LogDate] [datetime] NOT NULL, [LogUser] [nvarchar](50) NULL, [LogVersion] [int] NULL, [LogID] [int] IDENTITY(1,1) NOT NULL, CONSTRAINT [PK_Translation_Log] PRIMARY KEY CLUSTERED ( [LogID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO SET ANSI_PADDING OFF GO /****** Object: Table [dbo].[TranslationColumn_Enum] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[TranslationColumn_Enum]( [id] [int] NOT NULL, [column] [nvarchar](255) NOT NULL, CONSTRAINT [PK_TranslationColumn_Enum] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY], CONSTRAINT [UQ_TranslationColumn_Enum_1] UNIQUE NONCLUSTERED ( [column] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO /****** Object: Table [dbo].[UserProxy] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[UserProxy]( [LoginName] [nvarchar](50) NOT NULL, [CombinedNameCache] [nvarchar](255) NOT NULL, [AgentURI] [nvarchar](255) NULL, [Queries] [xml] NULL, [ID] [int] IDENTITY(1,1) NOT NULL, [PrivacyConsent] [bit] NULL, [PrivacyConsentDate] [datetime] NULL, CONSTRAINT [PK_UserProxy] PRIMARY KEY CLUSTERED ( [LoginName] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, FILLFACTOR = 90) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: View [dbo].[View_Project_UserAvailable] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE VIEW [dbo].[View_Project_UserAvailable] AS SELECT dbo.Project.id, dbo.Project.ProjectProxyID, dbo.ProjectUser.ReadOnly FROM dbo.Project INNER JOIN dbo.ProjectProxy ON dbo.Project.ProjectProxyID = dbo.ProjectProxy.ProjectID INNER JOIN dbo.ProjectUser ON dbo.ProjectProxy.ProjectID = dbo.ProjectUser.ProjectID WHERE (dbo.ProjectUser.LoginName = USER_NAME()) GO /****** Object: View [dbo].[Description_QueryExt] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO --##################################################################################################################### --###### View for query ########################################################################################### --##################################################################################################################### CREATE VIEW [dbo].[Description_QueryExt] AS SELECT D.[project_id] AS ProjectID, D.* FROM dbo.[Description] D WHERE (D.[project_id] IN (SELECT id FROM dbo.View_Project_UserAvailable)) UNION SELECT DP.[project_id] AS ProjectID, DD.* FROM dbo.[Description] DD INNER JOIN dbo.[DescriptionProject] DP ON DP.[description_id]=DD.[id] WHERE (DP.[project_id] IN (SELECT id FROM dbo.View_Project_UserAvailable)) GO /****** Object: View [dbo].[Description_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE VIEW [dbo].[Description_Query] AS SELECT * FROM dbo.Description WHERE (project_id IN (SELECT id FROM dbo.View_Project_UserAvailable)) GO /****** Object: View [dbo].[View_Descriptor_Unassigned] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE VIEW [dbo].[View_Descriptor_Unassigned] AS SELECT id FROM dbo.Descriptor WHERE (NOT (id IN (SELECT DISTINCT descriptor_id FROM dbo.DescriptorTreeNode WHERE (NOT (descriptor_id IS NULL))))) GO /****** Object: View [dbo].[View_Descriptor_UserAvailable] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE VIEW [dbo].[View_Descriptor_UserAvailable] AS SELECT DISTINCT dbo.DescriptorTreeNode.descriptor_id AS id, dbo.ProjectUser.ReadOnly FROM dbo.DescriptorTreeNode INNER JOIN dbo.DescriptorTree ON dbo.DescriptorTreeNode.descriptortree_id = dbo.DescriptorTree.id INNER JOIN dbo.Project ON dbo.DescriptorTree.project_id = dbo.Project.id INNER JOIN dbo.ProjectProxy ON dbo.Project.ProjectProxyID = dbo.ProjectProxy.ProjectID INNER JOIN dbo.ProjectUser ON dbo.ProjectProxy.ProjectID = dbo.ProjectUser.ProjectID WHERE (NOT dbo.DescriptorTreeNode.descriptor_id IS NULL AND dbo.ProjectUser.LoginName = USER_NAME()) GO /****** Object: View [dbo].[Descriptor_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE VIEW [dbo].[Descriptor_Query] AS SELECT * FROM Descriptor WHERE id IN (SELECT id FROM View_Descriptor_Unassigned) UNION SELECT * FROM Descriptor WHERE id IN (SELECT id FROM View_Descriptor_UserAvailable) GO /****** Object: View [dbo].[CategoricalStateResourceInsert_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Query for inserted state resource data CREATE VIEW [dbo].[CategoricalStateResourceInsert_Query] AS SELECT CategoricalState.descriptor_id AS id, [Resource].LogInsertedBy, [Resource].LogInsertedWhen FROM [Resource] INNER JOIN CategoricalState ON CategoricalState.id=[Resource].state_id WHERE NOT [Resource].state_id IS NULL GO /****** Object: View [dbo].[CategoricalStateResourceUpdate_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Query for updated state resource data CREATE VIEW [dbo].[CategoricalStateResourceUpdate_Query] AS SELECT CategoricalState.descriptor_id AS id, [Resource].LogUpdatedBy, [Resource].LogUpdatedWhen FROM [Resource] INNER JOIN CategoricalState ON CategoricalState.id=[Resource].state_id WHERE NOT [Resource].state_id IS NULL UNION SELECT CategoricalState.descriptor_id AS id, ResourceVariant.LogUpdatedBy, ResourceVariant.LogUpdatedWhen FROM ResourceVariant INNER JOIN [Resource] ON [Resource].id=ResourceVariant.resource_id INNER JOIN CategoricalState ON CategoricalState.id=[Resource].state_id WHERE NOT state_id IS NULL GO /****** Object: View [dbo].[Description_AdditionalProject] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Query for descriptions with additional project CREATE VIEW [dbo].[Description_AdditionalProject] AS SELECT D.*, P.project_id AS add_project_id FROM Description D LEFT JOIN DescriptionProject P ON P.description_id=D.id GO /****** Object: View [dbo].[Description_ParentProject] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Query for descriptions with parent project CREATE VIEW [dbo].[Description_ParentProject] AS SELECT DP.[parent_project_id], DD.* FROM dbo.[Description] DD INNER JOIN dbo.[Project] DP ON DP.[id]=DD.[project_id] GO /****** Object: View [dbo].[Description_ProjectID] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO --##################################################################################################################### --###### View for project selection ############################################################################### --##################################################################################################################### CREATE VIEW [dbo].[Description_ProjectID] AS SELECT D.[project_id] AS ProjectID, D.* FROM dbo.[Description] D UNION SELECT DP.[project_id] AS ProjectID, DD.* FROM dbo.[Description] DD INNER JOIN dbo.[DescriptionProject] DP ON DP.[description_id]=DD.[id] GO /****** Object: View [dbo].[DescriptionCitation_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Query for descriptions with citation scope CREATE VIEW [dbo].[DescriptionCitation_Query] AS SELECT dbo.Description.id AS description_id, dbo.DescriptionScope.label, dbo.DescriptionScope.dwbURI FROM dbo.Description LEFT JOIN dbo.DescriptionScope ON dbo.DescriptionScope.description_id=dbo.Description.id AND dbo.DescriptionScope.[type]='Citation' GO /****** Object: View [dbo].[DescriptionGeography_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Query for descriptions with geography scope CREATE VIEW [dbo].[DescriptionGeography_Query] AS SELECT dbo.Description.id AS description_id, dbo.DescriptionScope.label, dbo.DescriptionScope.dwbURI FROM dbo.Description LEFT JOIN dbo.DescriptionScope ON dbo.DescriptionScope.description_id=dbo.Description.id AND dbo.DescriptionScope.[type]='GeographicArea' GO /****** Object: View [dbo].[DescriptionObservation_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Query for descriptions with observation scope CREATE VIEW [dbo].[DescriptionObservation_Query] AS SELECT dbo.Description.id AS description_id, dbo.DescriptionScope.label, dbo.DescriptionScope.dwbURI FROM dbo.Description LEFT JOIN dbo.DescriptionScope ON dbo.DescriptionScope.description_id=dbo.Description.id AND dbo.DescriptionScope.[type]='Observation' GO /****** Object: View [dbo].[DescriptionOther_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Query for descriptions with other scope by other_scope_id CREATE VIEW [dbo].[DescriptionOther_Query] AS SELECT dbo.DescriptionScope.description_id, dbo.DescriptionScope.other_scope_id FROM dbo.DescriptionScope WHERE [type]='OtherConcept' GO /****** Object: View [dbo].[DescriptionPart_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Query for descriptions with part scope by other_scope_id CREATE VIEW [dbo].[DescriptionPart_Query] AS SELECT dbo.DescriptionScope.description_id, dbo.DescriptionScope.other_scope_id FROM dbo.DescriptionScope WHERE [type]='Part' GO /****** Object: View [dbo].[DescriptionResourceInsert_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Query for inserted description resource data CREATE VIEW [dbo].[DescriptionResourceInsert_Query] AS SELECT description_id AS id, LogInsertedBy, LogInsertedWhen FROM [Resource] WHERE NOT description_id IS NULL GO /****** Object: View [dbo].[DescriptionResourceUpdate_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Query for updated description resource data CREATE VIEW [dbo].[DescriptionResourceUpdate_Query] AS SELECT description_id AS id, LogUpdatedBy, LogUpdatedWhen FROM [Resource] WHERE NOT description_id IS NULL UNION SELECT Resource.description_id AS id, ResourceVariant.LogUpdatedBy, ResourceVariant.LogUpdatedWhen FROM ResourceVariant INNER JOIN Resource ON Resource.id=ResourceVariant.resource_id WHERE NOT description_id IS NULL GO /****** Object: View [dbo].[DescriptionSamplingPlot_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Query for descriptions with sampling plot scope by label CREATE VIEW [dbo].[DescriptionSamplingPlot_Query] AS SELECT dbo.DescriptionScope.description_id, dbo.DescriptionScope.label, dbo.DescriptionScope.dwbURI FROM dbo.DescriptionScope WHERE [type]='SamplingPlot' GO /****** Object: View [dbo].[DescriptionSex_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Query for descriptions with sex scope by other_scope_id CREATE VIEW [dbo].[DescriptionSex_Query] AS SELECT dbo.DescriptionScope.description_id, dbo.DescriptionScope.other_scope_id FROM dbo.DescriptionScope WHERE [type]='Sex' GO /****** Object: View [dbo].[DescriptionSpecimen_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Query for descriptions with specimen scope CREATE VIEW [dbo].[DescriptionSpecimen_Query] AS SELECT dbo.Description.id AS description_id, dbo.DescriptionScope.label, dbo.DescriptionScope.dwbURI FROM dbo.Description LEFT JOIN dbo.DescriptionScope ON dbo.DescriptionScope.description_id=dbo.Description.id AND dbo.DescriptionScope.[type]='Specimen' GO /****** Object: View [dbo].[DescriptionStage_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Query for descriptions with stage scope by other_scope_id CREATE VIEW [dbo].[DescriptionStage_Query] AS SELECT dbo.DescriptionScope.description_id, dbo.DescriptionScope.other_scope_id FROM dbo.DescriptionScope WHERE [type]='Stage' GO /****** Object: View [dbo].[DescriptionTaxon_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Query for descriptions with taxon scope CREATE VIEW [dbo].[DescriptionTaxon_Query] AS SELECT dbo.Description.id AS description_id, dbo.DescriptionScope.label, dbo.DescriptionScope.dwbURI FROM dbo.Description LEFT JOIN dbo.DescriptionScope ON dbo.DescriptionScope.description_id=dbo.Description.id AND dbo.DescriptionScope.[type]='TaxonName' GO /****** Object: View [dbo].[DescriptionUpdate_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO --##################################################################################################################### --###### Views for query ############################################################################################ --##################################################################################################################### -- Query for updated description data CREATE VIEW [dbo].[DescriptionUpdate_Query] AS SELECT id, LogUpdatedBy, LogUpdatedWhen FROM [Description] UNION SELECT description_id AS id, LogUpdatedBy, LogUpdatedWhen FROM DescriptionScope UNION SELECT description_id AS id, LogUpdatedBy, LogUpdatedWhen FROM DescriptorStatusData UNION SELECT description_id AS id, LogUpdatedBy, LogUpdatedWhen FROM CategoricalSummaryData UNION SELECT description_id AS id, LogUpdatedBy, LogUpdatedWhen FROM QuantitativeSummaryData UNION SELECT description_id AS id, LogUpdatedBy, LogUpdatedWhen FROM TextDescriptorData UNION SELECT description_id AS id, LogUpdatedBy, LogUpdatedWhen FROM MolecularSequenceData UNION SELECT description_id AS id, LogUpdatedBy, LogUpdatedWhen FROM SamplingEvent UNION SELECT SamplingEvent.description_id AS id, CategoricalSamplingData.LogUpdatedBy, CategoricalSamplingData.LogUpdatedWhen FROM CategoricalSamplingData INNER JOIN SamplingUnit ON SamplingUnit.id=CategoricalSamplingData.sampling_unit_id INNER JOIN SamplingEvent ON SamplingEvent.id=SamplingUnit.sampling_event_id UNION SELECT SamplingEvent.description_id AS id, QuantitativeSamplingData.LogUpdatedBy, QuantitativeSamplingData.LogUpdatedWhen FROM QuantitativeSamplingData INNER JOIN SamplingUnit ON SamplingUnit.id=QuantitativeSamplingData.sampling_unit_id INNER JOIN SamplingEvent ON SamplingEvent.id=SamplingUnit.sampling_event_id UNION SELECT SamplingEvent.description_id AS id, TextSamplingData.LogUpdatedBy, TextSamplingData.LogUpdatedWhen FROM TextSamplingData INNER JOIN SamplingUnit ON SamplingUnit.id=TextSamplingData.sampling_unit_id INNER JOIN SamplingEvent ON SamplingEvent.id=SamplingUnit.sampling_event_id UNION SELECT SamplingEvent.description_id AS id, MolecularSequenceSamplingData.LogUpdatedBy, MolecularSequenceSamplingData.LogUpdatedWhen FROM MolecularSequenceSamplingData INNER JOIN SamplingUnit ON SamplingUnit.id=MolecularSequenceSamplingData.sampling_unit_id INNER JOIN SamplingEvent ON SamplingEvent.id=SamplingUnit.sampling_event_id GO /****** Object: View [dbo].[DescriptorResourceInsert_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Query for inserted descriptor resource data CREATE VIEW [dbo].[DescriptorResourceInsert_Query] AS SELECT descriptor_id AS id, LogInsertedBy, LogInsertedWhen FROM [Resource] WHERE NOT descriptor_id IS NULL GO /****** Object: View [dbo].[DescriptorResourceUpdate_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Query for updated descriptor resource data CREATE VIEW [dbo].[DescriptorResourceUpdate_Query] AS SELECT descriptor_id AS id, LogUpdatedBy, LogUpdatedWhen FROM [Resource] WHERE NOT descriptor_id IS NULL UNION SELECT Resource.descriptor_id AS id, ResourceVariant.LogUpdatedBy, ResourceVariant.LogUpdatedWhen FROM ResourceVariant INNER JOIN Resource ON Resource.id=ResourceVariant.resource_id WHERE NOT descriptor_id IS NULL GO /****** Object: View [dbo].[DescriptorUpdate_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Query for updated descriptor data CREATE VIEW [dbo].[DescriptorUpdate_Query] AS SELECT id, LogUpdatedBy, LogUpdatedWhen FROM [Descriptor] UNION SELECT descriptor_id AS id, LogUpdatedBy, LogUpdatedWhen FROM DescriptorTreeNode WHERE NOT descriptor_id IS NULL UNION SELECT DescriptorTreeNode.descriptor_id AS id, DescriptorTreeNodeRecFrequency.LogUpdatedBy, DescriptorTreeNodeRecFrequency.LogUpdatedWhen FROM DescriptorTreeNodeRecFrequency INNER JOIN DescriptorTreeNode ON DescriptorTreeNodeRecFrequency.node_id=DescriptorTreeNode.id WHERE NOT DescriptorTreeNode.descriptor_id IS NULL UNION SELECT DescriptorTreeNode.descriptor_id AS id, DescriptorTreeNodeRecModifier.LogUpdatedBy, DescriptorTreeNodeRecModifier.LogUpdatedWhen FROM DescriptorTreeNodeRecModifier INNER JOIN DescriptorTreeNode ON DescriptorTreeNodeRecModifier.node_id=DescriptorTreeNode.id WHERE NOT DescriptorTreeNode.descriptor_id IS NULL UNION SELECT DescriptorTreeNode.descriptor_id AS id, DescriptorTreeNodeRecStatMeasure.LogUpdatedBy, DescriptorTreeNodeRecStatMeasure.LogUpdatedWhen FROM DescriptorTreeNodeRecStatMeasure INNER JOIN DescriptorTreeNode ON DescriptorTreeNodeRecStatMeasure.node_id=DescriptorTreeNode.id WHERE NOT DescriptorTreeNode.descriptor_id IS NULL GO /****** Object: View [dbo].[Project_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO --##################################################################################################################### --###### View Project_Query ######################################################################################### --##################################################################################################################### --###### Include project URI and personal read status CREATE VIEW [dbo].[Project_Query] AS SELECT dbo.Project.*, dbo.ProjectProxy.ProjectURI, dbo.ProjectUser.ReadOnly FROM dbo.Project INNER JOIN dbo.ProjectProxy ON dbo.Project.ProjectProxyID = dbo.ProjectProxy.ProjectID INNER JOIN dbo.ProjectUser ON dbo.ProjectProxy.ProjectID = dbo.ProjectUser.ProjectID WHERE (dbo.ProjectUser.LoginName = USER_NAME()) GO /****** Object: View [dbo].[ProjectList] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO --##################################################################################################################### --###### View ProjectList ########################################################################################### --##################################################################################################################### --###### Handle project wording as relevant name for Cache database -- ProjectList view CREATE VIEW [dbo].[ProjectList] AS SELECT TOP (100) PERCENT CASE WHEN dbo.Project.wording IS NULL THEN dbo.Project.label ELSE dbo.Project.wording END AS [Project], dbo.Project.label AS [Label], dbo.Project.wording AS [Wording], dbo.Project.id AS [ProjectID], dbo.ProjectProxy.ProjectURI, CAST(dbo.ProjectUser.ReadOnly AS int) AS ReadOnly FROM dbo.ProjectUser INNER JOIN dbo.ProjectProxy ON dbo.ProjectUser.ProjectID = dbo.ProjectProxy.ProjectID INNER JOIN dbo.Project ON dbo.ProjectProxy.ProjectID = dbo.Project.ProjectProxyID WHERE (dbo.ProjectUser.LoginName = USER_NAME()) GROUP BY dbo.Project.label, dbo.Project.wording, dbo.Project.id, dbo.ProjectProxy.ProjectURI, CAST(dbo.ProjectUser.ReadOnly AS int) ORDER BY dbo.Project.label, dbo.Project.wording GO /****** Object: View [dbo].[ProjectUpdate_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Query for updated project data CREATE VIEW [dbo].[ProjectUpdate_Query] AS SELECT id, LogUpdatedBy, LogUpdatedWhen FROM [Project] UNION SELECT Project_AvailableScope.project_id AS id, Project_AvailableScope.LogUpdatedBy, Project_AvailableScope.LogUpdatedWhen FROM Project_AvailableScope UNION SELECT DescriptorTree.project_id AS id, DescriptorInapplicability.LogUpdatedBy, DescriptorInapplicability.LogUpdatedWhen FROM DescriptorInapplicability INNER JOIN DescriptorTreeNode ON DescriptorTreeNode.descriptor_id=DescriptorInapplicability.controlled_descriptor_id INNER JOIN DescriptorTree ON DescriptorTree.id=DescriptorTreeNode.descriptortree_id UNION SELECT project_id AS id, LogUpdatedBy, LogUpdatedWhen FROM DescriptorTree UNION SELECT DescriptorTree.project_id AS id, DescriptorTreeNode.LogUpdatedBy, DescriptorTreeNode.LogUpdatedWhen FROM DescriptorTreeNode INNER JOIN DescriptorTree ON DescriptorTree.id=DescriptorTreeNode.descriptortree_id WHERE DescriptorTreeNode.descriptor_id IS NULL UNION SELECT DescriptorTreeNode.descriptor_id AS id, DescriptorTreeNodeRecFrequency.LogUpdatedBy, DescriptorTreeNodeRecFrequency.LogUpdatedWhen FROM DescriptorTreeNodeRecFrequency INNER JOIN DescriptorTreeNode ON DescriptorTreeNodeRecFrequency.node_id=DescriptorTreeNode.id INNER JOIN DescriptorTree ON DescriptorTree.id=DescriptorTreeNode.descriptortree_id WHERE DescriptorTreeNode.descriptor_id IS NULL UNION SELECT DescriptorTreeNode.descriptor_id AS id, DescriptorTreeNodeRecModifier.LogUpdatedBy, DescriptorTreeNodeRecModifier.LogUpdatedWhen FROM DescriptorTreeNodeRecModifier INNER JOIN DescriptorTreeNode ON DescriptorTreeNodeRecModifier.node_id=DescriptorTreeNode.id INNER JOIN DescriptorTree ON DescriptorTree.id=DescriptorTreeNode.descriptortree_id WHERE DescriptorTreeNode.descriptor_id IS NULL UNION SELECT DescriptorTree.project_id AS id, DescriptorTreeNodeRecStatMeasure.LogUpdatedBy, DescriptorTreeNodeRecStatMeasure.LogUpdatedWhen FROM DescriptorTreeNodeRecStatMeasure INNER JOIN DescriptorTreeNode ON DescriptorTreeNodeRecStatMeasure.node_id=DescriptorTreeNode.id INNER JOIN DescriptorTree ON DescriptorTree.id=DescriptorTreeNode.descriptortree_id WHERE DescriptorTreeNode.descriptor_id IS NULL GO /****** Object: View [dbo].[ResourceCategoricalState_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Insert view for descriptor ids with state resources CREATE VIEW [dbo].[ResourceCategoricalState_Query] AS SELECT dbo.CategoricalState.descriptor_id, dbo.[Resource].id, dbo.[Resource].label, dbo.[Resource].detail, dbo.[Resource].rights_text, dbo.[Resource].licence_uri, dbo.[Resource].language_code FROM dbo.[Resource] INNER JOIN dbo.CategoricalState ON dbo.CategoricalState.id = dbo.[Resource].state_id GO /****** Object: View [dbo].[ResourceProject_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Insert view for project ids with state resources CREATE VIEW [dbo].[ResourceProject_Query] AS SELECT dbo.DescriptorTree.project_id, dbo.[Resource].id, dbo.[Resource].label, dbo.[Resource].detail, dbo.[Resource].rights_text, dbo.[Resource].licence_uri, dbo.[Resource].language_code FROM dbo.[Resource] INNER JOIN dbo.DescriptorTreeNode ON dbo.DescriptorTreeNode.id = dbo.[Resource].node_id INNER JOIN dbo.DescriptorTree ON dbo.DescriptorTreeNode.descriptortree_id = dbo.DescriptorTree.id GO /****** Object: View [dbo].[TreeNodeResourceInsert_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Query for inserted tree node resource data CREATE VIEW [dbo].[TreeNodeResourceInsert_Query] AS SELECT DescriptorTree.project_id AS id, [Resource].LogInsertedBy, [Resource].LogInsertedWhen FROM [Resource] INNER JOIN DescriptorTreeNode ON [Resource].node_id=DescriptorTreeNode.id INNER JOIN DescriptorTree ON DescriptorTreeNode.descriptortree_id=DescriptorTree.id WHERE NOT [Resource].node_id IS NULL GO /****** Object: View [dbo].[TreeNodeResourceUpdate_Query] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Query for updated tree node resource data CREATE VIEW [dbo].[TreeNodeResourceUpdate_Query] AS SELECT DescriptorTree.project_id AS id, [Resource].LogUpdatedBy, [Resource].LogUpdatedWhen FROM [Resource] INNER JOIN DescriptorTreeNode ON [Resource].node_id=DescriptorTreeNode.id INNER JOIN DescriptorTree ON DescriptorTreeNode.descriptortree_id=DescriptorTree.id WHERE NOT [Resource].node_id IS NULL UNION SELECT DescriptorTree.project_id AS id, ResourceVariant.LogUpdatedBy, ResourceVariant.LogUpdatedWhen FROM ResourceVariant INNER JOIN [Resource] ON [Resource].id=ResourceVariant.resource_id INNER JOIN DescriptorTreeNode ON [Resource].node_id=DescriptorTreeNode.id INNER JOIN DescriptorTree ON DescriptorTreeNode.descriptortree_id=DescriptorTree.id WHERE NOT [Resource].node_id IS NULL GO /****** Object: View [dbo].[View_CategoricalStateProject] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE VIEW [dbo].[View_CategoricalStateProject] AS SELECT dbo.CategoricalState.id, dbo.DescriptorTree.project_id FROM dbo.CategoricalState INNER JOIN dbo.Descriptor ON dbo.CategoricalState.descriptor_id = dbo.Descriptor.id INNER JOIN dbo.DescriptorTreeNode ON dbo.Descriptor.id = dbo.DescriptorTreeNode.descriptor_id INNER JOIN dbo.DescriptorTree ON dbo.DescriptorTreeNode.descriptortree_id = dbo.DescriptorTree.id GO /****** Object: View [dbo].[View_Description_UserAvailable] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE VIEW [dbo].[View_Description_UserAvailable] AS SELECT dbo.Description.id, dbo.ProjectUser.ReadOnly FROM dbo.Description INNER JOIN dbo.Project ON dbo.Description.project_id = dbo.Project.id INNER JOIN dbo.ProjectProxy ON dbo.Project.ProjectProxyID = dbo.ProjectProxy.ProjectID INNER JOIN dbo.ProjectUser ON dbo.ProjectProxy.ProjectID = dbo.ProjectUser.ProjectID WHERE (dbo.ProjectUser.LoginName = USER_NAME()) GO /****** Object: View [dbo].[View_DescriptorMeasure] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO --##################################################################################################################### --###### View_DescriptorMeasure ##################################################################################### --##################################################################################################################### --###### Include display order CREATE VIEW [dbo].[View_DescriptorMeasure] AS SELECT DISTINCT D.[id] AS descriptor_id ,S.[id] ,S.[code] ,S.[label] ,S.[abbreviation] ,S.[display_order] ,T.[project_id] FROM [Descriptor] AS D INNER JOIN [DescriptorTreeNode] AS N ON N.descriptor_id=D.id INNER JOIN [DescriptorTree] AS T ON T.id=N.descriptortree_id INNER JOIN [DescriptorTreeNodeRecStatMeasure] AS R ON R.node_id=N.id INNER JOIN [StatisticalMeasure_Enum] AS S ON S.id=R.measure_id WHERE D.[subclass]='quantitative' UNION SELECT DISTINCT D.[id] AS descriptor_id ,S.[id] ,S.[code] ,S.[label] ,S.[abbreviation] ,S.[display_order] ,T.[project_id] FROM [Descriptor] AS D INNER JOIN [DescriptorTreeNode] AS N ON N.descriptor_id=D.id INNER JOIN [DescriptorTree] AS T ON T.id=N.descriptortree_id INNER JOIN [DescriptorTreeNode] AS Np1 ON Np1.id=N.parent_node_id INNER JOIN [DescriptorTreeNodeRecStatMeasure] AS R ON R.node_id=Np1.id INNER JOIN [StatisticalMeasure_Enum] AS S ON S.id=R.measure_id WHERE D.[subclass]='quantitative' UNION SELECT DISTINCT D.[id] AS descriptor_id ,S.[id] ,S.[code] ,S.[label] ,S.[abbreviation] ,S.[display_order] ,T.[project_id] FROM [Descriptor] AS D INNER JOIN [DescriptorTreeNode] AS N ON N.descriptor_id=D.id INNER JOIN [DescriptorTree] AS T ON T.id=N.descriptortree_id INNER JOIN [DescriptorTreeNode] AS Np1 ON Np1.id=N.parent_node_id INNER JOIN [DescriptorTreeNode] AS Np2 ON Np2.id=Np1.parent_node_id INNER JOIN [DescriptorTreeNodeRecStatMeasure] AS R ON R.node_id=Np2.id INNER JOIN [StatisticalMeasure_Enum] AS S ON S.id=R.measure_id WHERE D.[subclass]='quantitative' UNION SELECT DISTINCT D.[id] AS descriptor_id ,S.[id] ,S.[code] ,S.[label] ,S.[abbreviation] ,S.[display_order] ,T.[project_id] FROM [Descriptor] AS D INNER JOIN [DescriptorTreeNode] AS N ON N.descriptor_id=D.id INNER JOIN [DescriptorTree] AS T ON T.id=N.descriptortree_id INNER JOIN [DescriptorTreeNode] AS Np1 ON Np1.id=N.parent_node_id INNER JOIN [DescriptorTreeNode] AS Np2 ON Np2.id=Np1.parent_node_id INNER JOIN [DescriptorTreeNode] AS Np3 ON Np3.id=Np2.parent_node_id INNER JOIN [DescriptorTreeNodeRecStatMeasure] AS R ON R.node_id=Np3.id INNER JOIN [StatisticalMeasure_Enum] AS S ON S.id=R.measure_id WHERE D.[subclass]='quantitative' GO /****** Object: View [dbo].[View_DescriptorNode] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE VIEW [dbo].[View_DescriptorNode] AS SELECT dbo.DescriptorTreeNode.descriptortree_id, dbo.Descriptor.id FROM dbo.Descriptor INNER JOIN dbo.DescriptorTreeNode ON dbo.Descriptor.id = dbo.DescriptorTreeNode.descriptor_id GO /****** Object: View [dbo].[View_DescriptorProject] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO --##################################################################################################################### --###### Updated view definitions ################################################################################### --##################################################################################################################### CREATE VIEW [dbo].[View_DescriptorProject] AS SELECT DISTINCT dbo.DescriptorTreeNode.descriptor_id, dbo.DescriptorTree.project_id FROM dbo.DescriptorTree INNER JOIN dbo.DescriptorTreeNode ON dbo.DescriptorTree.id = dbo.DescriptorTreeNode.descriptortree_id WHERE NOT dbo.DescriptorTreeNode.descriptor_id IS NULL GO /****** Object: View [dbo].[View_DescriptorState] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE VIEW [dbo].[View_DescriptorState] AS SELECT dbo.CategoricalSummaryData.description_id, dbo.CategoricalState.descriptor_id FROM dbo.CategoricalSummaryData INNER JOIN dbo.CategoricalState ON dbo.CategoricalSummaryData.state_id = dbo.CategoricalState.id GO /****** Object: View [dbo].[View_DescriptorTree_UserAvailable] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE VIEW [dbo].[View_DescriptorTree_UserAvailable] AS SELECT dbo.DescriptorTree.id, dbo.ProjectUser.ReadOnly FROM dbo.DescriptorTree INNER JOIN dbo.Project ON dbo.DescriptorTree.project_id = dbo.Project.id INNER JOIN dbo.ProjectProxy ON dbo.Project.ProjectProxyID = dbo.ProjectProxy.ProjectID INNER JOIN dbo.ProjectUser ON dbo.ProjectProxy.ProjectID = dbo.ProjectUser.ProjectID WHERE (dbo.ProjectUser.LoginName = USER_NAME()) GO /****** Object: View [dbo].[View_DescriptorTreeNode_UserAvailable] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE VIEW [dbo].[View_DescriptorTreeNode_UserAvailable] AS SELECT dbo.DescriptorTreeNode.id, dbo.DescriptorTreeNode.descriptor_id, dbo.ProjectUser.ReadOnly FROM dbo.DescriptorTreeNode INNER JOIN dbo.DescriptorTree ON dbo.DescriptorTreeNode.descriptortree_id = dbo.DescriptorTree.id INNER JOIN dbo.Project ON dbo.DescriptorTree.project_id = dbo.Project.id INNER JOIN dbo.ProjectProxy ON dbo.Project.ProjectProxyID = dbo.ProjectProxy.ProjectID INNER JOIN dbo.ProjectUser ON dbo.ProjectProxy.ProjectID = dbo.ProjectUser.ProjectID WHERE (dbo.ProjectUser.LoginName = USER_NAME()) GO /****** Object: View [dbo].[View_DescriptorTreeNodeProject] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE VIEW [dbo].[View_DescriptorTreeNodeProject] AS SELECT dbo.DescriptorTreeNode.id, dbo.DescriptorTreeNode.descriptor_id, dbo.DescriptorTree.project_id FROM dbo.DescriptorTreeNode INNER JOIN dbo.DescriptorTree ON dbo.DescriptorTreeNode.descriptortree_id = dbo.DescriptorTree.id GO /****** Object: View [dbo].[View_DwbProject] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Create additional views CREATE VIEW [dbo].[View_DwbProject] AS SELECT dbo.ProjectProxy.ProjectID, dbo.ProjectProxy.Project, dbo.ProjectUser.ReadOnly FROM dbo.ProjectProxy INNER JOIN dbo.ProjectUser ON dbo.ProjectProxy.ProjectID = dbo.ProjectUser.ProjectID WHERE (dbo.ProjectUser.LoginName = USER_NAME()) GO /****** Object: View [dbo].[ViewAnySummaryData] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO --##################################################################################################################### --###### View for descriptor ID of any summary data ################################################################# --##################################################################################################################### --###### Include notes, modifier and frequenxy CREATE VIEW [dbo].[ViewAnySummaryData] AS SELECT CSD.description_id, CS.descriptor_id, CSD.notes, CSD.modifier_id, CSD.frequency_id FROM CategoricalSummaryData CSD INNER JOIN CategoricalState CS ON CS.id=CSD.state_id UNION SELECT QSD.description_id, QSD.descriptor_id, QSD.notes, QSD.modifier_id, NULL AS frequency_id FROM QuantitativeSummaryData QSD UNION SELECT TSD.description_id, TSD.descriptor_id, TSD.notes, NULL AS modifier_id, NULL AS frequency_id FROM TextDescriptorData TSD UNION SELECT MSD.description_id, MSD.descriptor_id, MSD.notes, NULL AS modifier_id, NULL AS frequency_id FROM MolecularSequenceData MSD GO /****** Object: View [dbo].[ViewBaseURL] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO --##################################################################################################################### --###### Basic definitions ########################################################################################## --##################################################################################################################### CREATE VIEW [dbo].[ViewBaseURL] AS SELECT dbo.BaseURL() AS BaseURL GO /****** Object: View [dbo].[ViewDiversityWorkbenchModule] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE VIEW [dbo].[ViewDiversityWorkbenchModule] AS SELECT dbo.DiversityWorkbenchModule() AS DiversityWorkbenchModule GO /****** Object: View [dbo].[WithheldData] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE VIEW [dbo].[WithheldData] AS SELECT [Description].project_id AS project_id, [Description].id AS description_id, [DescriptorStatusData].descriptor_id AS descriptor_id FROM [Description] INNER JOIN [DescriptorStatusData] ON [Description].id=[DescriptorStatusData].description_id INNER JOIN [DataStatus_Enum] ON [DescriptorStatusData].datastatus_id=[DataStatus_Enum].id WHERE [DataStatus_Enum].code='DataWithheld' GO ALTER TABLE [dbo].[Annotation] ADD CONSTRAINT [DF_Annotation_timestamp] DEFAULT (getdate()) FOR [timestamp] GO ALTER TABLE [dbo].[Annotation] ADD CONSTRAINT [DF_Annotation_is_internal] DEFAULT ('0') FOR [is_internal] GO ALTER TABLE [dbo].[Annotation] ADD CONSTRAINT [DF_Annotation_is_latest_revision] DEFAULT ('0') FOR [is_latest_revision] GO ALTER TABLE [dbo].[BaseEntity_log] ADD CONSTRAINT [DF_BaseEntity_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[BaseEntity_log] ADD CONSTRAINT [DF_BaseEntity_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[BaseEntity_log] ADD CONSTRAINT [DF_BaseEntity_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[CacheMappingDescriptor] ADD CONSTRAINT [DF_CacheMappingDescriptor_last_state_key] DEFAULT ((0)) FOR [last_state_key] GO ALTER TABLE [dbo].[CacheProject] ADD CONSTRAINT [DF_CacheProject_withheld_data_level] DEFAULT ((0)) FOR [withheld_data_level] GO ALTER TABLE [dbo].[CacheProject] ADD CONSTRAINT [DF_CacheProject_key_mapping_level] DEFAULT ((1)) FOR [key_mapping_level] GO ALTER TABLE [dbo].[CacheProject] ADD CONSTRAINT [DF_CacheProject_last_char_key] DEFAULT ((0)) FOR [last_char_key] GO ALTER TABLE [dbo].[CacheProject] ADD CONSTRAINT [DF_CacheProject_last_item_key] DEFAULT ((0)) FOR [last_item_key] GO ALTER TABLE [dbo].[CacheProject] ADD CONSTRAINT [DF_CacheProject_last_changes] DEFAULT (getdate()) FOR [last_changes] GO ALTER TABLE [dbo].[CategoricalSamplingData] ADD CONSTRAINT [DF_CategoricalSamplingData_modifier_id] DEFAULT (NULL) FOR [modifier_id] GO ALTER TABLE [dbo].[CategoricalSamplingData] ADD CONSTRAINT [DF_CategoricalSamplingData_frequency_value] DEFAULT (NULL) FOR [frequency_value] GO ALTER TABLE [dbo].[CategoricalSamplingData] ADD CONSTRAINT [DF_CategoricalSamplingData_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[CategoricalSamplingData] ADD CONSTRAINT [DF_CategoricalSamplingData_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[CategoricalSamplingData] ADD CONSTRAINT [DF_CategoricalSamplingData_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[CategoricalSamplingData] ADD CONSTRAINT [DF_CategoricalSamplingData_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[CategoricalSamplingData_log] ADD CONSTRAINT [DF_CategoricalSamplingData_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[CategoricalSamplingData_log] ADD CONSTRAINT [DF_CategoricalSamplingData_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[CategoricalSamplingData_log] ADD CONSTRAINT [DF_CategoricalSamplingData_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[CategoricalState] ADD CONSTRAINT [DF_CategoricalState_abbreviation] DEFAULT (NULL) FOR [abbreviation] GO ALTER TABLE [dbo].[CategoricalState] ADD CONSTRAINT [DF_CategoricalState_wording] DEFAULT (NULL) FOR [wording] GO ALTER TABLE [dbo].[CategoricalState] ADD CONSTRAINT [DF_CategoricalState_display_order] DEFAULT ('0') FOR [display_order] GO ALTER TABLE [dbo].[CategoricalState] ADD CONSTRAINT [DF_CategoricalState_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[CategoricalState] ADD CONSTRAINT [DF_CategoricalState_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[CategoricalState] ADD CONSTRAINT [DF_CategoricalState_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[CategoricalState] ADD CONSTRAINT [DF_CategoricalState_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[CategoricalState_log] ADD CONSTRAINT [DF_CategoricalState_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[CategoricalState_log] ADD CONSTRAINT [DF_CategoricalState_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[CategoricalState_log] ADD CONSTRAINT [DF_CategoricalState_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[CategoricalSummaryData] ADD CONSTRAINT [DF_CategoricalSummaryData_modifier_id] DEFAULT (NULL) FOR [modifier_id] GO ALTER TABLE [dbo].[CategoricalSummaryData] ADD CONSTRAINT [DF_CategoricalSummaryData_frequency_id] DEFAULT (NULL) FOR [frequency_id] GO ALTER TABLE [dbo].[CategoricalSummaryData] ADD CONSTRAINT [DF_CategoricalSummaryData_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[CategoricalSummaryData] ADD CONSTRAINT [DF_CategoricalSummaryData_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[CategoricalSummaryData] ADD CONSTRAINT [DF_CategoricalSummaryData_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[CategoricalSummaryData] ADD CONSTRAINT [DF_CategoricalSummaryData_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[CategoricalSummaryData_log] ADD CONSTRAINT [DF_CategoricalSummaryData_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[CategoricalSummaryData_log] ADD CONSTRAINT [DF_CategoricalSummaryData_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[CategoricalSummaryData_log] ADD CONSTRAINT [DF_CategoricalSummaryData_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[Contribution] ADD CONSTRAINT [DF_Contribution_role] DEFAULT ('contributor') FOR [role] GO ALTER TABLE [dbo].[Contribution] ADD CONSTRAINT [DF_Contribution_timestamp] DEFAULT (getdate()) FOR [timestamp] GO ALTER TABLE [dbo].[Contributor] ADD CONSTRAINT [DF_Contributor_email] DEFAULT (NULL) FOR [email] GO ALTER TABLE [dbo].[Contributor] ADD CONSTRAINT [DF_Contributor_web_pseudonym] DEFAULT (NULL) FOR [web_pseudonym] GO ALTER TABLE [dbo].[Contributor] ADD CONSTRAINT [DF_Contributor_avatar_uri] DEFAULT (NULL) FOR [avatar_uri] GO ALTER TABLE [dbo].[Contributor] ADD CONSTRAINT [DF_Contributor_real_name] DEFAULT (NULL) FOR [real_name] GO ALTER TABLE [dbo].[Contributor] ADD CONSTRAINT [DF_Contributor_linked_agent_uri] DEFAULT (NULL) FOR [linked_agent_uri] GO ALTER TABLE [dbo].[Description] ADD CONSTRAINT [DF_Description_label] DEFAULT (NULL) FOR [label] GO ALTER TABLE [dbo].[Description] ADD CONSTRAINT [DF_Description_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[Description] ADD CONSTRAINT [DF_Description_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[Description] ADD CONSTRAINT [DF_Description_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[Description] ADD CONSTRAINT [DF_Description_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[Description] ADD CONSTRAINT [DF_Description_alternate_id] DEFAULT (NULL) FOR [alternate_id] GO ALTER TABLE [dbo].[Description] ADD CONSTRAINT [DF_Description_wording] DEFAULT (NULL) FOR [wording] GO ALTER TABLE [dbo].[Description_log] ADD CONSTRAINT [DF_Description_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[Description_log] ADD CONSTRAINT [DF_Description_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[Description_log] ADD CONSTRAINT [DF_Description_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[DescriptionProject_log] ADD CONSTRAINT [DF_DescriptionProject_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[DescriptionProject_log] ADD CONSTRAINT [DF_DescriptionProject_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[DescriptionProject_log] ADD CONSTRAINT [DF_DescriptionProject_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[DescriptionScope] ADD CONSTRAINT [DF_DescriptionScope_label] DEFAULT (NULL) FOR [label] GO ALTER TABLE [dbo].[DescriptionScope] ADD CONSTRAINT [DF_DescriptionScope_dwbURI] DEFAULT (NULL) FOR [dwbURI] GO ALTER TABLE [dbo].[DescriptionScope] ADD CONSTRAINT [DF_DescriptionScope_type] DEFAULT (NULL) FOR [type] GO ALTER TABLE [dbo].[DescriptionScope] ADD CONSTRAINT [DF_DescriptionScope_other_scope_id] DEFAULT (NULL) FOR [other_scope_id] GO ALTER TABLE [dbo].[DescriptionScope] ADD CONSTRAINT [DF_DescriptionScope_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[DescriptionScope] ADD CONSTRAINT [DF_DescriptionScope_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[DescriptionScope] ADD CONSTRAINT [DF_DescriptionScope_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[DescriptionScope] ADD CONSTRAINT [DF_DescriptionScope_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[DescriptionScope_log] ADD CONSTRAINT [DF_DescriptionScope_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[DescriptionScope_log] ADD CONSTRAINT [DF_DescriptionScope_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[DescriptionScope_log] ADD CONSTRAINT [DF_DescriptionScope_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_abbreviation] DEFAULT (NULL) FOR [abbreviation] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_display_order] DEFAULT ('0') FOR [display_order] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_subclass] DEFAULT ('categorical') FOR [subclass] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_statistical_measurement_scale] DEFAULT ('nominal') FOR [statistical_measurement_scale] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_usually_exclusive] DEFAULT ('0') FOR [usually_exclusive] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_state_collection_model] DEFAULT ('OrSet') FOR [state_collection_model] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_mandatory] DEFAULT ('0') FOR [mandatory] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_repeatability] DEFAULT ('standard') FOR [repeatability] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_availability] DEFAULT ('standard') FOR [availability] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_measurement_unit] DEFAULT (NULL) FOR [measurement_unit] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_measurement_unit_precedes_value] DEFAULT ('0') FOR [measurement_unit_precedes_value] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_values_are_integer] DEFAULT ('0') FOR [values_are_integer] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_min_plausible_value] DEFAULT ('-1.79e308') FOR [min_plausible_value] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_max_plausible_value] DEFAULT ('1.79e308') FOR [max_plausible_value] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_sequence_type] DEFAULT ('Nucleotide') FOR [sequence_type] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_symbol_length] DEFAULT ('1') FOR [symbol_length] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_enable_ambiguity_symbols] DEFAULT ('1') FOR [enable_ambiguity_symbols] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_gap_symbol] DEFAULT (NULL) FOR [gap_symbol] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_wording_before] DEFAULT (NULL) FOR [wording_before] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_wording_after] DEFAULT (NULL) FOR [wording_after] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[Descriptor] ADD CONSTRAINT [DF_Descriptor_wording] DEFAULT (NULL) FOR [wording] GO ALTER TABLE [dbo].[Descriptor_log] ADD CONSTRAINT [DF_Descriptor_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[Descriptor_log] ADD CONSTRAINT [DF_Descriptor_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[Descriptor_log] ADD CONSTRAINT [DF_Descriptor_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[DescriptorInapplicability] ADD CONSTRAINT [DF_DescriptorInapplicability_rule] DEFAULT ('inapplicable-if') FOR [rule] GO ALTER TABLE [dbo].[DescriptorInapplicability] ADD CONSTRAINT [DF_DescriptorInapplicability_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[DescriptorInapplicability] ADD CONSTRAINT [DF_DescriptorInapplicability_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[DescriptorInapplicability] ADD CONSTRAINT [DF_DescriptorInapplicability_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[DescriptorInapplicability] ADD CONSTRAINT [DF_DescriptorInapplicability_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[DescriptorInapplicability_log] ADD CONSTRAINT [DF_DescriptorInapplicability_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[DescriptorInapplicability_log] ADD CONSTRAINT [DF_DescriptorInapplicability_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[DescriptorInapplicability_log] ADD CONSTRAINT [DF_DescriptorInapplicability_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[DescriptorStatusData] ADD CONSTRAINT [DF_DescriptorStatusData_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[DescriptorStatusData] ADD CONSTRAINT [DF_DescriptorStatusData_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[DescriptorStatusData] ADD CONSTRAINT [DF_DescriptorStatusData_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[DescriptorStatusData] ADD CONSTRAINT [DF_DescriptorStatusData_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[DescriptorStatusData_log] ADD CONSTRAINT [DF_DescriptorStatusData_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[DescriptorStatusData_log] ADD CONSTRAINT [DF_DescriptorStatusData_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[DescriptorStatusData_log] ADD CONSTRAINT [DF_DescriptorStatusData_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[DescriptorTree] ADD CONSTRAINT [DF_DescriptorTree_is_complete] DEFAULT ('0') FOR [is_complete] GO ALTER TABLE [dbo].[DescriptorTree] ADD CONSTRAINT [DF_DescriptorTree_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[DescriptorTree] ADD CONSTRAINT [DF_DescriptorTree_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[DescriptorTree] ADD CONSTRAINT [DF_DescriptorTree_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[DescriptorTree] ADD CONSTRAINT [DF_DescriptorTree_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[DescriptorTree_log] ADD CONSTRAINT [DF_DescriptorTree_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[DescriptorTree_log] ADD CONSTRAINT [DF_DescriptorTree_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[DescriptorTree_log] ADD CONSTRAINT [DF_DescriptorTree_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[DescriptorTreeNode] ADD CONSTRAINT [DF_DescriptorTreeNode_parent_node_id] DEFAULT (NULL) FOR [parent_node_id] GO ALTER TABLE [dbo].[DescriptorTreeNode] ADD CONSTRAINT [DF_DescriptorTreeNode_label] DEFAULT (NULL) FOR [label] GO ALTER TABLE [dbo].[DescriptorTreeNode] ADD CONSTRAINT [DF_DescriptorTreeNode_abbreviation] DEFAULT (NULL) FOR [abbreviation] GO ALTER TABLE [dbo].[DescriptorTreeNode] ADD CONSTRAINT [DF_DescriptorTreeNode_display_order] DEFAULT ('0') FOR [display_order] GO ALTER TABLE [dbo].[DescriptorTreeNode] ADD CONSTRAINT [DF_DescriptorTreeNode_descriptor_id] DEFAULT (NULL) FOR [descriptor_id] GO ALTER TABLE [dbo].[DescriptorTreeNode] ADD CONSTRAINT [DF_DescriptorTreeNode_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[DescriptorTreeNode] ADD CONSTRAINT [DF_DescriptorTreeNode_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[DescriptorTreeNode] ADD CONSTRAINT [DF_DescriptorTreeNode_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[DescriptorTreeNode] ADD CONSTRAINT [DF_DescriptorTreeNode_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[DescriptorTreeNode_log] ADD CONSTRAINT [DF_DescriptorTreeNode_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[DescriptorTreeNode_log] ADD CONSTRAINT [DF_DescriptorTreeNode_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[DescriptorTreeNode_log] ADD CONSTRAINT [DF_DescriptorTreeNode_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecFrequency] ADD CONSTRAINT [DF_DescriptorTreeNodeRecFrequency_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecFrequency] ADD CONSTRAINT [DF_DescriptorTreeNodeRecFrequency_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecFrequency] ADD CONSTRAINT [DF_DescriptorTreeNodeRecFrequency_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecFrequency] ADD CONSTRAINT [DF_DescriptorTreeNodeRecFrequency_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecFrequency_log] ADD CONSTRAINT [DF_DescriptorTreeNodeRecFrequency_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecFrequency_log] ADD CONSTRAINT [DF_DescriptorTreeNodeRecFrequency_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecFrequency_log] ADD CONSTRAINT [DF_DescriptorTreeNodeRecFrequency_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecModifier] ADD CONSTRAINT [DF_DescriptorTreeNodeRecModifier_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecModifier] ADD CONSTRAINT [DF_DescriptorTreeNodeRecModifier_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecModifier] ADD CONSTRAINT [DF_DescriptorTreeNodeRecModifier_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecModifier] ADD CONSTRAINT [DF_DescriptorTreeNodeRecModifier_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecModifier_log] ADD CONSTRAINT [DF_DescriptorTreeNodeRecModifier_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecModifier_log] ADD CONSTRAINT [DF_DescriptorTreeNodeRecModifier_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecModifier_log] ADD CONSTRAINT [DF_DescriptorTreeNodeRecModifier_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecStatMeasure] ADD CONSTRAINT [DF_DescriptorTreeNodeRecStatMeasure_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecStatMeasure] ADD CONSTRAINT [DF_DescriptorTreeNodeRecStatMeasure_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecStatMeasure] ADD CONSTRAINT [DF_DescriptorTreeNodeRecStatMeasure_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecStatMeasure] ADD CONSTRAINT [DF_DescriptorTreeNodeRecStatMeasure_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecStatMeasure_log] ADD CONSTRAINT [DF_DescriptorTreeNodeRecStatMeasure_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecStatMeasure_log] ADD CONSTRAINT [DF_DescriptorTreeNodeRecStatMeasure_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecStatMeasure_log] ADD CONSTRAINT [DF_DescriptorTreeNodeRecStatMeasure_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[Frequency] ADD CONSTRAINT [DF_Frequency_lower_estimate] DEFAULT ('0') FOR [lower_estimate] GO ALTER TABLE [dbo].[Frequency] ADD CONSTRAINT [DF_Frequency_upper_estimate] DEFAULT ('1') FOR [upper_estimate] GO ALTER TABLE [dbo].[Frequency] ADD CONSTRAINT [DF_Frequency_display_order] DEFAULT ('0') FOR [display_order] GO ALTER TABLE [dbo].[Frequency] ADD CONSTRAINT [DF_Frequency_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[Frequency] ADD CONSTRAINT [DF_Frequency_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[Frequency] ADD CONSTRAINT [DF_Frequency_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[Frequency] ADD CONSTRAINT [DF_Frequency_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[Frequency_log] ADD CONSTRAINT [DF_Frequency_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[Frequency_log] ADD CONSTRAINT [DF_Frequency_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[Frequency_log] ADD CONSTRAINT [DF_Frequency_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[Identifier] ADD CONSTRAINT [DF_Identifier_match] DEFAULT ('exact') FOR [match] GO ALTER TABLE [dbo].[ImportSession] ADD CONSTRAINT [DF_ImportSession_create_timestamp] DEFAULT (getdate()) FOR [create_timestamp] GO ALTER TABLE [dbo].[ImportSession] ADD CONSTRAINT [DF_ImportSession_update_timestamp] DEFAULT (getdate()) FOR [update_timestamp] GO ALTER TABLE [dbo].[Modifier] ADD CONSTRAINT [DF_Modifier_display_order] DEFAULT ('0') FOR [display_order] GO ALTER TABLE [dbo].[Modifier] ADD CONSTRAINT [DF_Modifier_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[Modifier] ADD CONSTRAINT [DF_Modifier_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[Modifier] ADD CONSTRAINT [DF_Modifier_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[Modifier] ADD CONSTRAINT [DF_Modifier_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[Modifier_log] ADD CONSTRAINT [DF_Modifier_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[Modifier_log] ADD CONSTRAINT [DF_Modifier_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[Modifier_log] ADD CONSTRAINT [DF_Modifier_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[MolecularSequenceData] ADD CONSTRAINT [DF_MolecularSequenceData_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[MolecularSequenceData] ADD CONSTRAINT [DF_MolecularSequenceData_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[MolecularSequenceData] ADD CONSTRAINT [DF_MolecularSequenceData_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[MolecularSequenceData] ADD CONSTRAINT [DF_MolecularSequenceData_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[MolecularSequenceData_log] ADD CONSTRAINT [DF_MolecularSequenceData_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[MolecularSequenceData_log] ADD CONSTRAINT [DF_MolecularSequenceData_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[MolecularSequenceData_log] ADD CONSTRAINT [DF_MolecularSequenceData_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[MolecularSequenceSamplingData] ADD CONSTRAINT [DF_MolecularSequenceSamplingData_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[MolecularSequenceSamplingData] ADD CONSTRAINT [DF_MolecularSequenceSamplingData_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[MolecularSequenceSamplingData] ADD CONSTRAINT [DF_MolecularSequenceSamplingData_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[MolecularSequenceSamplingData] ADD CONSTRAINT [DF_MolecularSequenceSamplingData_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[MolecularSequenceSamplingData_log] ADD CONSTRAINT [DF_MolecularSequenceSamplingData_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[MolecularSequenceSamplingData_log] ADD CONSTRAINT [DF_MolecularSequenceSamplingData_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[MolecularSequenceSamplingData_log] ADD CONSTRAINT [DF_MolecularSequenceSamplingData_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[OtherScope] ADD CONSTRAINT [DF_OtherScope_sex_status_id] DEFAULT (NULL) FOR [sex_status_id] GO ALTER TABLE [dbo].[OtherScope] ADD CONSTRAINT [DF_OtherScope_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[OtherScope] ADD CONSTRAINT [DF_OtherScope_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[OtherScope] ADD CONSTRAINT [DF_OtherScope_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[OtherScope] ADD CONSTRAINT [DF_OtherScope_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[OtherScope_log] ADD CONSTRAINT [DF_OtherScope_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[OtherScope_log] ADD CONSTRAINT [DF_OtherScope_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[OtherScope_log] ADD CONSTRAINT [DF_OtherScope_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[Project] ADD CONSTRAINT [DF_Project_parent_project_id] DEFAULT (NULL) FOR [parent_project_id] GO ALTER TABLE [dbo].[Project] ADD CONSTRAINT [DF_Project_rights_text] DEFAULT (NULL) FOR [rights_text] GO ALTER TABLE [dbo].[Project] ADD CONSTRAINT [DF_Project_licence_uri] DEFAULT (NULL) FOR [licence_uri] GO ALTER TABLE [dbo].[Project] ADD CONSTRAINT [DF_Project_ProjectProxyID] DEFAULT ((0)) FOR [ProjectProxyID] GO ALTER TABLE [dbo].[Project] ADD CONSTRAINT [DF_Project_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[Project] ADD CONSTRAINT [DF_Project_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[Project] ADD CONSTRAINT [DF_Project_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[Project] ADD CONSTRAINT [DF_Project_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[Project_AvailableScope] ADD CONSTRAINT [DF_Project_AvailableScope_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[Project_AvailableScope] ADD CONSTRAINT [DF_Project_AvailableScope_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[Project_AvailableScope] ADD CONSTRAINT [DF_Project_AvailableScope_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[Project_AvailableScope] ADD CONSTRAINT [DF_Project_AvailableScope_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[Project_AvailableScope_log] ADD CONSTRAINT [DF_Project_AvailableScope_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[Project_AvailableScope_log] ADD CONSTRAINT [DF_Project_AvailableScope_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[Project_AvailableScope_log] ADD CONSTRAINT [DF_Project_AvailableScope_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[Project_log] ADD CONSTRAINT [DF_Project_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[Project_log] ADD CONSTRAINT [DF_Project_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[Project_log] ADD CONSTRAINT [DF_Project_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[ProjectUser] ADD CONSTRAINT [DF_ProjectUser_ReadOnly] DEFAULT ((0)) FOR [ReadOnly] GO ALTER TABLE [dbo].[QuantitativeSamplingData] ADD CONSTRAINT [DF_QuantitativeSamplingData_measure_id] DEFAULT (NULL) FOR [measure_id] GO ALTER TABLE [dbo].[QuantitativeSamplingData] ADD CONSTRAINT [DF_QuantitativeSamplingData_modifier_id] DEFAULT (NULL) FOR [modifier_id] GO ALTER TABLE [dbo].[QuantitativeSamplingData] ADD CONSTRAINT [DF_QuantitativeSamplingData_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[QuantitativeSamplingData] ADD CONSTRAINT [DF_QuantitativeSamplingData_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[QuantitativeSamplingData] ADD CONSTRAINT [DF_QuantitativeSamplingData_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[QuantitativeSamplingData] ADD CONSTRAINT [DF_QuantitativeSamplingData_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[QuantitativeSamplingData_log] ADD CONSTRAINT [DF_QuantitativeSamplingData_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[QuantitativeSamplingData_log] ADD CONSTRAINT [DF_QuantitativeSamplingData_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[QuantitativeSamplingData_log] ADD CONSTRAINT [DF_QuantitativeSamplingData_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[QuantitativeSummaryData] ADD CONSTRAINT [DF_QuantitativeSummaryData_modifier_id] DEFAULT (NULL) FOR [modifier_id] GO ALTER TABLE [dbo].[QuantitativeSummaryData] ADD CONSTRAINT [DF_QuantitativeSummaryData_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[QuantitativeSummaryData] ADD CONSTRAINT [DF_QuantitativeSummaryData_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[QuantitativeSummaryData] ADD CONSTRAINT [DF_QuantitativeSummaryData_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[QuantitativeSummaryData] ADD CONSTRAINT [DF_QuantitativeSummaryData_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[QuantitativeSummaryData_log] ADD CONSTRAINT [DF_QuantitativeSummaryData_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[QuantitativeSummaryData_log] ADD CONSTRAINT [DF_QuantitativeSummaryData_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[QuantitativeSummaryData_log] ADD CONSTRAINT [DF_QuantitativeSummaryData_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[Resource] ADD CONSTRAINT [DF_Resource_terminology_role] DEFAULT ('unknown') FOR [terminology_role] GO ALTER TABLE [dbo].[Resource] ADD CONSTRAINT [DF_Resource_ranking_for_terminology] DEFAULT (NULL) FOR [ranking_for_terminology] GO ALTER TABLE [dbo].[Resource] ADD CONSTRAINT [DF_Resource_descriptor_id] DEFAULT (NULL) FOR [descriptor_id] GO ALTER TABLE [dbo].[Resource] ADD CONSTRAINT [DF_Resource_state_id] DEFAULT (NULL) FOR [state_id] GO ALTER TABLE [dbo].[Resource] ADD CONSTRAINT [DF_Resource_taxon_role] DEFAULT ('unknown') FOR [taxon_role] GO ALTER TABLE [dbo].[Resource] ADD CONSTRAINT [DF_Resource_ranking_for_taxon_use] DEFAULT (NULL) FOR [ranking_for_taxon_use] GO ALTER TABLE [dbo].[Resource] ADD CONSTRAINT [DF_Resource_taxon_id] DEFAULT (NULL) FOR [taxon_id] GO ALTER TABLE [dbo].[Resource] ADD CONSTRAINT [DF_Resource_description_id] DEFAULT (NULL) FOR [description_id] GO ALTER TABLE [dbo].[Resource] ADD CONSTRAINT [DF_Resource_scope_id] DEFAULT (NULL) FOR [scope_id] GO ALTER TABLE [dbo].[Resource] ADD CONSTRAINT [DF_Resource_display_embedded] DEFAULT ('0') FOR [display_embedded] GO ALTER TABLE [dbo].[Resource] ADD CONSTRAINT [DF_Resource_language_code] DEFAULT (NULL) FOR [language_code] GO ALTER TABLE [dbo].[Resource] ADD CONSTRAINT [DF_Resource_rights_text] DEFAULT (NULL) FOR [rights_text] GO ALTER TABLE [dbo].[Resource] ADD CONSTRAINT [DF_Resource_licence_uri] DEFAULT (NULL) FOR [licence_uri] GO ALTER TABLE [dbo].[Resource] ADD CONSTRAINT [DF_Resource_display_order] DEFAULT ('0') FOR [display_order] GO ALTER TABLE [dbo].[Resource] ADD CONSTRAINT [DF_Resource_node_id] DEFAULT (NULL) FOR [node_id] GO ALTER TABLE [dbo].[Resource] ADD CONSTRAINT [DF_Resource_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[Resource] ADD CONSTRAINT [DF_Resource_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[Resource] ADD CONSTRAINT [DF_Resource_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[Resource] ADD CONSTRAINT [DF_Resource_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[Resource_log] ADD CONSTRAINT [DF_Resource_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[Resource_log] ADD CONSTRAINT [DF_Resource_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[Resource_log] ADD CONSTRAINT [DF_Resource_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[ResourceVariant] ADD CONSTRAINT [DF_ResourceVariant_pixel_width] DEFAULT (NULL) FOR [pixel_width] GO ALTER TABLE [dbo].[ResourceVariant] ADD CONSTRAINT [DF_ResourceVariant_pixel_height] DEFAULT (NULL) FOR [pixel_height] GO ALTER TABLE [dbo].[ResourceVariant] ADD CONSTRAINT [DF_ResourceVariant_duration] DEFAULT (NULL) FOR [duration] GO ALTER TABLE [dbo].[ResourceVariant] ADD CONSTRAINT [DF_ResourceVariant_size] DEFAULT (NULL) FOR [size] GO ALTER TABLE [dbo].[ResourceVariant] ADD CONSTRAINT [DF_ResourceVariant_mime_type] DEFAULT (NULL) FOR [mime_type] GO ALTER TABLE [dbo].[ResourceVariant] ADD CONSTRAINT [DF_ResourceVariant_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[ResourceVariant] ADD CONSTRAINT [DF_ResourceVariant_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[ResourceVariant] ADD CONSTRAINT [DF_ResourceVariant_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[ResourceVariant] ADD CONSTRAINT [DF_ResourceVariant_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[ResourceVariant_log] ADD CONSTRAINT [DF_ResourceVariant_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[ResourceVariant_log] ADD CONSTRAINT [DF_ResourceVariant_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[ResourceVariant_log] ADD CONSTRAINT [DF_ResourceVariant_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[SamplingEvent] ADD CONSTRAINT [DF_SamplingEvent_label] DEFAULT (NULL) FOR [label] GO ALTER TABLE [dbo].[SamplingEvent] ADD CONSTRAINT [DF_SamplingEvent_date_time] DEFAULT (NULL) FOR [date_time] GO ALTER TABLE [dbo].[SamplingEvent] ADD CONSTRAINT [DF_SamplingEvent_datetimespan_end] DEFAULT (NULL) FOR [datetimespan_end] GO ALTER TABLE [dbo].[SamplingEvent] ADD CONSTRAINT [DF_SamplingEvent_geographic_area] DEFAULT (NULL) FOR [geographic_area] GO ALTER TABLE [dbo].[SamplingEvent] ADD CONSTRAINT [DF_SamplingEvent_geographic_area_uri] DEFAULT (NULL) FOR [geographic_area_uri] GO ALTER TABLE [dbo].[SamplingEvent] ADD CONSTRAINT [DF_SamplingEvent_coord_dec_latitude] DEFAULT (NULL) FOR [coord_dec_latitude] GO ALTER TABLE [dbo].[SamplingEvent] ADD CONSTRAINT [DF_SamplingEvent_coord_dec_longitude] DEFAULT (NULL) FOR [coord_dec_longitude] GO ALTER TABLE [dbo].[SamplingEvent] ADD CONSTRAINT [DF_SamplingEvent_coord_literal] DEFAULT (NULL) FOR [coord_literal] GO ALTER TABLE [dbo].[SamplingEvent] ADD CONSTRAINT [DF_SamplingEvent_coord_geodeticdatum] DEFAULT (NULL) FOR [coord_geodeticdatum] GO ALTER TABLE [dbo].[SamplingEvent] ADD CONSTRAINT [DF_SamplingEvent_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[SamplingEvent] ADD CONSTRAINT [DF_SamplingEvent_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[SamplingEvent] ADD CONSTRAINT [DF_SamplingEvent_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[SamplingEvent] ADD CONSTRAINT [DF_SamplingEvent_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[SamplingEvent_log] ADD CONSTRAINT [DF_SamplingEvent_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[SamplingEvent_log] ADD CONSTRAINT [DF_SamplingEvent_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[SamplingEvent_log] ADD CONSTRAINT [DF_SamplingEvent_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[SamplingUnit] ADD CONSTRAINT [DF_SamplingUnit_collection_specimen] DEFAULT (NULL) FOR [collection_specimen] GO ALTER TABLE [dbo].[SamplingUnit] ADD CONSTRAINT [DF_SamplingUnit_collection_specimen_uri] DEFAULT (NULL) FOR [collection_specimen_uri] GO ALTER TABLE [dbo].[SamplingUnit] ADD CONSTRAINT [DF_SamplingUnit_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[SamplingUnit] ADD CONSTRAINT [DF_SamplingUnit_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[SamplingUnit] ADD CONSTRAINT [DF_SamplingUnit_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[SamplingUnit] ADD CONSTRAINT [DF_SamplingUnit_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[SamplingUnit_log] ADD CONSTRAINT [DF_SamplingUnit_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[SamplingUnit_log] ADD CONSTRAINT [DF_SamplingUnit_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[SamplingUnit_log] ADD CONSTRAINT [DF_SamplingUnit_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[StatisticalMeasure_Enum_log] ADD CONSTRAINT [DF_StatisticalMeasure_Enum_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[StatisticalMeasure_Enum_log] ADD CONSTRAINT [DF_StatisticalMeasure_Enum_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[StatisticalMeasure_Enum_log] ADD CONSTRAINT [DF_StatisticalMeasure_Enum_Log_LogUser] DEFAULT (CONVERT([varchar],[dbo].[UserID]())) FOR [LogUser] GO ALTER TABLE [dbo].[TextDescriptorData] ADD CONSTRAINT [DF_TextDescriptorData_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[TextDescriptorData] ADD CONSTRAINT [DF_TextDescriptorData_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[TextDescriptorData] ADD CONSTRAINT [DF_TextDescriptorData_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[TextDescriptorData] ADD CONSTRAINT [DF_TextDescriptorData_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[TextDescriptorData_log] ADD CONSTRAINT [DF_TextDescriptorData_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[TextDescriptorData_log] ADD CONSTRAINT [DF_TextDescriptorData_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[TextDescriptorData_log] ADD CONSTRAINT [DF_TextDescriptorData_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[TextSamplingData] ADD CONSTRAINT [DF_TextSamplingData_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[TextSamplingData] ADD CONSTRAINT [DF_TextSamplingData_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[TextSamplingData] ADD CONSTRAINT [DF_TextSamplingData_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[TextSamplingData] ADD CONSTRAINT [DF_TextSamplingData_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[TextSamplingData_log] ADD CONSTRAINT [DF_TextSamplingData_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[TextSamplingData_log] ADD CONSTRAINT [DF_TextSamplingData_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[TextSamplingData_log] ADD CONSTRAINT [DF_TextSamplingData_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[Translation] ADD CONSTRAINT [DF_Translation_LogInsertedBy] DEFAULT ([dbo].[UserID]()) FOR [LogInsertedBy] GO ALTER TABLE [dbo].[Translation] ADD CONSTRAINT [DF_Translation_LogInsertedWhen] DEFAULT (getdate()) FOR [LogInsertedWhen] GO ALTER TABLE [dbo].[Translation] ADD CONSTRAINT [DF_Translation_LogUpdatedBy] DEFAULT ([dbo].[UserID]()) FOR [LogUpdatedBy] GO ALTER TABLE [dbo].[Translation] ADD CONSTRAINT [DF_Translation_LogUpdatedWhen] DEFAULT (getdate()) FOR [LogUpdatedWhen] GO ALTER TABLE [dbo].[Translation_log] ADD CONSTRAINT [DF_Translation_Log_LogState] DEFAULT ('U') FOR [LogState] GO ALTER TABLE [dbo].[Translation_log] ADD CONSTRAINT [DF_Translation_Log_LogDate] DEFAULT (getdate()) FOR [LogDate] GO ALTER TABLE [dbo].[Translation_log] ADD CONSTRAINT [DF_Translation_log_LogUser] DEFAULT ([dbo].[UserID]()) FOR [LogUser] GO ALTER TABLE [dbo].[Annotation] WITH CHECK ADD CONSTRAINT [FK_Annotation_BaseEntity] FOREIGN KEY([object_id]) REFERENCES [dbo].[BaseEntity] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[Annotation] CHECK CONSTRAINT [FK_Annotation_BaseEntity] GO ALTER TABLE [dbo].[Annotation] WITH CHECK ADD CONSTRAINT [FK_Annotation_Contributor] FOREIGN KEY([contributor_id]) REFERENCES [dbo].[Contributor] ([id]) GO ALTER TABLE [dbo].[Annotation] CHECK CONSTRAINT [FK_Annotation_Contributor] GO ALTER TABLE [dbo].[BaseEntity] WITH CHECK ADD CONSTRAINT [FK_BaseEntity_BaseEntityTable_Enum] FOREIGN KEY([table_id]) REFERENCES [dbo].[BaseEntityTable_Enum] ([id]) GO ALTER TABLE [dbo].[BaseEntity] CHECK CONSTRAINT [FK_BaseEntity_BaseEntityTable_Enum] GO ALTER TABLE [dbo].[CacheMappingDescription] WITH CHECK ADD CONSTRAINT [FK_CacheMappingDescription_Description] FOREIGN KEY([description_id]) REFERENCES [dbo].[Description] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[CacheMappingDescription] CHECK CONSTRAINT [FK_CacheMappingDescription_Description] GO ALTER TABLE [dbo].[CacheMappingDescription] WITH CHECK ADD CONSTRAINT [FK_CacheMappingDescription_Project] FOREIGN KEY([project_id]) REFERENCES [dbo].[Project] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[CacheMappingDescription] CHECK CONSTRAINT [FK_CacheMappingDescription_Project] GO ALTER TABLE [dbo].[CacheMappingDescriptor] WITH CHECK ADD CONSTRAINT [FK_CacheMappingDescriptor_Descriptor] FOREIGN KEY([descriptor_id]) REFERENCES [dbo].[Descriptor] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[CacheMappingDescriptor] CHECK CONSTRAINT [FK_CacheMappingDescriptor_Descriptor] GO ALTER TABLE [dbo].[CacheMappingDescriptor] WITH CHECK ADD CONSTRAINT [FK_CacheMappingDescriptor_Project] FOREIGN KEY([project_id]) REFERENCES [dbo].[Project] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[CacheMappingDescriptor] CHECK CONSTRAINT [FK_CacheMappingDescriptor_Project] GO ALTER TABLE [dbo].[CacheMappingState] WITH CHECK ADD CONSTRAINT [FK_CacheMappingState_Descriptor] FOREIGN KEY([state_id]) REFERENCES [dbo].[CategoricalState] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[CacheMappingState] CHECK CONSTRAINT [FK_CacheMappingState_Descriptor] GO ALTER TABLE [dbo].[CacheMappingState] WITH CHECK ADD CONSTRAINT [FK_CacheMappingState_Project] FOREIGN KEY([project_id]) REFERENCES [dbo].[Project] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[CacheMappingState] CHECK CONSTRAINT [FK_CacheMappingState_Project] GO ALTER TABLE [dbo].[CacheProject] WITH CHECK ADD CONSTRAINT [FK_CacheProject_Project] FOREIGN KEY([project_id]) REFERENCES [dbo].[Project] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[CacheProject] CHECK CONSTRAINT [FK_CacheProject_Project] GO ALTER TABLE [dbo].[CategoricalSamplingData] WITH CHECK ADD CONSTRAINT [FK_CategoricalSamplingData_CategoricalState] FOREIGN KEY([state_id]) REFERENCES [dbo].[CategoricalState] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[CategoricalSamplingData] CHECK CONSTRAINT [FK_CategoricalSamplingData_CategoricalState] GO ALTER TABLE [dbo].[CategoricalSamplingData] WITH CHECK ADD CONSTRAINT [FK_CategoricalSamplingData_Modifier] FOREIGN KEY([modifier_id]) REFERENCES [dbo].[Modifier] ([id]) ON DELETE SET NULL GO ALTER TABLE [dbo].[CategoricalSamplingData] CHECK CONSTRAINT [FK_CategoricalSamplingData_Modifier] GO ALTER TABLE [dbo].[CategoricalSamplingData] WITH CHECK ADD CONSTRAINT [FK_CategoricalSamplingData_SamplingUnit] FOREIGN KEY([sampling_unit_id]) REFERENCES [dbo].[SamplingUnit] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[CategoricalSamplingData] CHECK CONSTRAINT [FK_CategoricalSamplingData_SamplingUnit] GO ALTER TABLE [dbo].[CategoricalState] WITH CHECK ADD CONSTRAINT [FK_CategoricalState_BaseEntity] FOREIGN KEY([id]) REFERENCES [dbo].[BaseEntity] ([id]) GO ALTER TABLE [dbo].[CategoricalState] CHECK CONSTRAINT [FK_CategoricalState_BaseEntity] GO ALTER TABLE [dbo].[CategoricalState] WITH CHECK ADD CONSTRAINT [FK_CategoricalState_Descriptor] FOREIGN KEY([descriptor_id]) REFERENCES [dbo].[Descriptor] ([id]) GO ALTER TABLE [dbo].[CategoricalState] CHECK CONSTRAINT [FK_CategoricalState_Descriptor] GO ALTER TABLE [dbo].[CategoricalSummaryData] WITH CHECK ADD CONSTRAINT [FK_CategoricalSummaryData_CategoricalState] FOREIGN KEY([state_id]) REFERENCES [dbo].[CategoricalState] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[CategoricalSummaryData] CHECK CONSTRAINT [FK_CategoricalSummaryData_CategoricalState] GO ALTER TABLE [dbo].[CategoricalSummaryData] WITH CHECK ADD CONSTRAINT [FK_CategoricalSummaryData_Description] FOREIGN KEY([description_id]) REFERENCES [dbo].[Description] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[CategoricalSummaryData] CHECK CONSTRAINT [FK_CategoricalSummaryData_Description] GO ALTER TABLE [dbo].[CategoricalSummaryData] WITH CHECK ADD CONSTRAINT [FK_CategoricalSummaryData_Frequency] FOREIGN KEY([frequency_id]) REFERENCES [dbo].[Frequency] ([id]) ON DELETE SET NULL GO ALTER TABLE [dbo].[CategoricalSummaryData] CHECK CONSTRAINT [FK_CategoricalSummaryData_Frequency] GO ALTER TABLE [dbo].[CategoricalSummaryData] WITH CHECK ADD CONSTRAINT [FK_CategoricalSummaryData_Modifier] FOREIGN KEY([modifier_id]) REFERENCES [dbo].[Modifier] ([id]) ON DELETE SET NULL GO ALTER TABLE [dbo].[CategoricalSummaryData] CHECK CONSTRAINT [FK_CategoricalSummaryData_Modifier] GO ALTER TABLE [dbo].[Contribution] WITH CHECK ADD CONSTRAINT [FK_Contribution_BaseEntity] FOREIGN KEY([object_id]) REFERENCES [dbo].[BaseEntity] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[Contribution] CHECK CONSTRAINT [FK_Contribution_BaseEntity] GO ALTER TABLE [dbo].[Contribution] WITH CHECK ADD CONSTRAINT [FK_Contribution_Contributor] FOREIGN KEY([contributor_id]) REFERENCES [dbo].[Contributor] ([id]) GO ALTER TABLE [dbo].[Contribution] CHECK CONSTRAINT [FK_Contribution_Contributor] GO ALTER TABLE [dbo].[DataStatus_Enum] WITH CHECK ADD CONSTRAINT [FK_DataStatus_Enum_BaseEntity] FOREIGN KEY([id]) REFERENCES [dbo].[BaseEntity] ([id]) GO ALTER TABLE [dbo].[DataStatus_Enum] CHECK CONSTRAINT [FK_DataStatus_Enum_BaseEntity] GO ALTER TABLE [dbo].[Description] WITH CHECK ADD CONSTRAINT [FK_Description_BaseEntity] FOREIGN KEY([id]) REFERENCES [dbo].[BaseEntity] ([id]) GO ALTER TABLE [dbo].[Description] CHECK CONSTRAINT [FK_Description_BaseEntity] GO ALTER TABLE [dbo].[Description] WITH CHECK ADD CONSTRAINT [FK_Description_Project] FOREIGN KEY([project_id]) REFERENCES [dbo].[Project] ([id]) GO ALTER TABLE [dbo].[Description] CHECK CONSTRAINT [FK_Description_Project] GO ALTER TABLE [dbo].[DescriptionProject] WITH CHECK ADD CONSTRAINT [FK_DescriptionProject_Description] FOREIGN KEY([description_id]) REFERENCES [dbo].[Description] ([id]) ON UPDATE CASCADE ON DELETE CASCADE GO ALTER TABLE [dbo].[DescriptionProject] CHECK CONSTRAINT [FK_DescriptionProject_Description] GO ALTER TABLE [dbo].[DescriptionProject] WITH CHECK ADD CONSTRAINT [FK_DescriptionProject_Project] FOREIGN KEY([project_id]) REFERENCES [dbo].[Project] ([id]) ON UPDATE CASCADE ON DELETE CASCADE GO ALTER TABLE [dbo].[DescriptionProject] CHECK CONSTRAINT [FK_DescriptionProject_Project] GO ALTER TABLE [dbo].[DescriptionScope] WITH CHECK ADD CONSTRAINT [FK_DescriptionScope_Description] FOREIGN KEY([description_id]) REFERENCES [dbo].[Description] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[DescriptionScope] CHECK CONSTRAINT [FK_DescriptionScope_Description] GO ALTER TABLE [dbo].[DescriptionScope] WITH CHECK ADD CONSTRAINT [FK_DescriptionScope_OtherScope] FOREIGN KEY([other_scope_id]) REFERENCES [dbo].[OtherScope] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[DescriptionScope] CHECK CONSTRAINT [FK_DescriptionScope_OtherScope] GO ALTER TABLE [dbo].[Descriptor] WITH CHECK ADD CONSTRAINT [FK_Descriptor_BaseEntity] FOREIGN KEY([id]) REFERENCES [dbo].[BaseEntity] ([id]) GO ALTER TABLE [dbo].[Descriptor] CHECK CONSTRAINT [FK_Descriptor_BaseEntity] GO ALTER TABLE [dbo].[DescriptorInapplicability] WITH CHECK ADD CONSTRAINT [FK_DescriptorInapplicability_CategoricalState] FOREIGN KEY([controlling_state_id]) REFERENCES [dbo].[CategoricalState] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[DescriptorInapplicability] CHECK CONSTRAINT [FK_DescriptorInapplicability_CategoricalState] GO ALTER TABLE [dbo].[DescriptorInapplicability] WITH CHECK ADD CONSTRAINT [FK_DescriptorInapplicability_Descriptor] FOREIGN KEY([controlled_descriptor_id]) REFERENCES [dbo].[Descriptor] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[DescriptorInapplicability] CHECK CONSTRAINT [FK_DescriptorInapplicability_Descriptor] GO ALTER TABLE [dbo].[DescriptorMapping_C2C] WITH CHECK ADD CONSTRAINT [FK_DescriptorMapping_C2C_CategoricalState] FOREIGN KEY([from_state_id]) REFERENCES [dbo].[CategoricalState] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[DescriptorMapping_C2C] CHECK CONSTRAINT [FK_DescriptorMapping_C2C_CategoricalState] GO ALTER TABLE [dbo].[DescriptorMapping_Q2C] WITH CHECK ADD CONSTRAINT [FK_DescriptorMapping_Q2C_CategoricalState] FOREIGN KEY([to_state_id]) REFERENCES [dbo].[CategoricalState] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[DescriptorMapping_Q2C] CHECK CONSTRAINT [FK_DescriptorMapping_Q2C_CategoricalState] GO ALTER TABLE [dbo].[DescriptorMapping_Q2C] WITH CHECK ADD CONSTRAINT [FK_DescriptorMapping_Q2C_Descriptor] FOREIGN KEY([from_descr_id]) REFERENCES [dbo].[Descriptor] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[DescriptorMapping_Q2C] CHECK CONSTRAINT [FK_DescriptorMapping_Q2C_Descriptor] GO ALTER TABLE [dbo].[DescriptorMapping_Q2C] WITH CHECK ADD CONSTRAINT [FK_DescriptorMapping_Q2C_StatisticalMeasure_Enum] FOREIGN KEY([from_statistical_measure_id]) REFERENCES [dbo].[StatisticalMeasure_Enum] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[DescriptorMapping_Q2C] CHECK CONSTRAINT [FK_DescriptorMapping_Q2C_StatisticalMeasure_Enum] GO ALTER TABLE [dbo].[DescriptorStatusData] WITH CHECK ADD CONSTRAINT [FK_DescriptorStatusData_DataStatus_Enum] FOREIGN KEY([datastatus_id]) REFERENCES [dbo].[DataStatus_Enum] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[DescriptorStatusData] CHECK CONSTRAINT [FK_DescriptorStatusData_DataStatus_Enum] GO ALTER TABLE [dbo].[DescriptorStatusData] WITH CHECK ADD CONSTRAINT [FK_DescriptorStatusData_Description] FOREIGN KEY([description_id]) REFERENCES [dbo].[Description] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[DescriptorStatusData] CHECK CONSTRAINT [FK_DescriptorStatusData_Description] GO ALTER TABLE [dbo].[DescriptorStatusData] WITH CHECK ADD CONSTRAINT [FK_DescriptorStatusData_Descriptor] FOREIGN KEY([descriptor_id]) REFERENCES [dbo].[Descriptor] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[DescriptorStatusData] CHECK CONSTRAINT [FK_DescriptorStatusData_Descriptor] GO ALTER TABLE [dbo].[DescriptorTree] WITH CHECK ADD CONSTRAINT [FK_DescriptorTree_BaseEntity] FOREIGN KEY([id]) REFERENCES [dbo].[BaseEntity] ([id]) GO ALTER TABLE [dbo].[DescriptorTree] CHECK CONSTRAINT [FK_DescriptorTree_BaseEntity] GO ALTER TABLE [dbo].[DescriptorTree] WITH CHECK ADD CONSTRAINT [FK_DescriptorTree_Project] FOREIGN KEY([project_id]) REFERENCES [dbo].[Project] ([id]) GO ALTER TABLE [dbo].[DescriptorTree] CHECK CONSTRAINT [FK_DescriptorTree_Project] GO ALTER TABLE [dbo].[DescriptorTreeNode] WITH CHECK ADD CONSTRAINT [FK_DescriptorTreeNode_BaseEntity] FOREIGN KEY([id]) REFERENCES [dbo].[BaseEntity] ([id]) GO ALTER TABLE [dbo].[DescriptorTreeNode] CHECK CONSTRAINT [FK_DescriptorTreeNode_BaseEntity] GO ALTER TABLE [dbo].[DescriptorTreeNode] WITH CHECK ADD CONSTRAINT [FK_DescriptorTreeNode_Descriptor] FOREIGN KEY([descriptor_id]) REFERENCES [dbo].[Descriptor] ([id]) GO ALTER TABLE [dbo].[DescriptorTreeNode] CHECK CONSTRAINT [FK_DescriptorTreeNode_Descriptor] GO ALTER TABLE [dbo].[DescriptorTreeNode] WITH CHECK ADD CONSTRAINT [FK_DescriptorTreeNode_DescriptorTree] FOREIGN KEY([descriptortree_id]) REFERENCES [dbo].[DescriptorTree] ([id]) GO ALTER TABLE [dbo].[DescriptorTreeNode] CHECK CONSTRAINT [FK_DescriptorTreeNode_DescriptorTree] GO ALTER TABLE [dbo].[DescriptorTreeNode] WITH CHECK ADD CONSTRAINT [FK_DescriptorTreeNode_DescriptorTreeNode] FOREIGN KEY([parent_node_id]) REFERENCES [dbo].[DescriptorTreeNode] ([id]) GO ALTER TABLE [dbo].[DescriptorTreeNode] CHECK CONSTRAINT [FK_DescriptorTreeNode_DescriptorTreeNode] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecFrequency] WITH CHECK ADD CONSTRAINT [FK_DescriptorTreeNodeRecFrequency_DescriptorTreeNode] FOREIGN KEY([node_id]) REFERENCES [dbo].[DescriptorTreeNode] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[DescriptorTreeNodeRecFrequency] CHECK CONSTRAINT [FK_DescriptorTreeNodeRecFrequency_DescriptorTreeNode] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecFrequency] WITH CHECK ADD CONSTRAINT [FK_DescriptorTreeNodeRecFrequency_Frequency] FOREIGN KEY([frequency_id]) REFERENCES [dbo].[Frequency] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[DescriptorTreeNodeRecFrequency] CHECK CONSTRAINT [FK_DescriptorTreeNodeRecFrequency_Frequency] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecModifier] WITH CHECK ADD CONSTRAINT [FK_DescriptorTreeNodeRecModifier_DescriptorTreeNode] FOREIGN KEY([node_id]) REFERENCES [dbo].[DescriptorTreeNode] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[DescriptorTreeNodeRecModifier] CHECK CONSTRAINT [FK_DescriptorTreeNodeRecModifier_DescriptorTreeNode] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecModifier] WITH CHECK ADD CONSTRAINT [FK_DescriptorTreeNodeRecModifier_Modifier] FOREIGN KEY([modifier_id]) REFERENCES [dbo].[Modifier] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[DescriptorTreeNodeRecModifier] CHECK CONSTRAINT [FK_DescriptorTreeNodeRecModifier_Modifier] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecStatMeasure] WITH CHECK ADD CONSTRAINT [FK_DescriptorTreeNodeRecStatMeasure_DescriptorTreeNode] FOREIGN KEY([node_id]) REFERENCES [dbo].[DescriptorTreeNode] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[DescriptorTreeNodeRecStatMeasure] CHECK CONSTRAINT [FK_DescriptorTreeNodeRecStatMeasure_DescriptorTreeNode] GO ALTER TABLE [dbo].[DescriptorTreeNodeRecStatMeasure] WITH CHECK ADD CONSTRAINT [FK_DescriptorTreeNodeRecStatMeasure_StatisticalMeasure_Enum] FOREIGN KEY([measure_id]) REFERENCES [dbo].[StatisticalMeasure_Enum] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[DescriptorTreeNodeRecStatMeasure] CHECK CONSTRAINT [FK_DescriptorTreeNodeRecStatMeasure_StatisticalMeasure_Enum] GO ALTER TABLE [dbo].[Frequency] WITH CHECK ADD CONSTRAINT [FK_Frequency_BaseEntity] FOREIGN KEY([id]) REFERENCES [dbo].[BaseEntity] ([id]) GO ALTER TABLE [dbo].[Frequency] CHECK CONSTRAINT [FK_Frequency_BaseEntity] GO ALTER TABLE [dbo].[Identifier] WITH CHECK ADD CONSTRAINT [FK_Identifier_BaseEntity] FOREIGN KEY([object_id]) REFERENCES [dbo].[BaseEntity] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[Identifier] CHECK CONSTRAINT [FK_Identifier_BaseEntity] GO ALTER TABLE [dbo].[ImportMapping] WITH CHECK ADD CONSTRAINT [FK_ImportMapping_BaseEntity] FOREIGN KEY([object_id]) REFERENCES [dbo].[BaseEntity] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[ImportMapping] CHECK CONSTRAINT [FK_ImportMapping_BaseEntity] GO ALTER TABLE [dbo].[ImportMapping] WITH CHECK ADD CONSTRAINT [FK_ImportMapping_ImportSession] FOREIGN KEY([session_id]) REFERENCES [dbo].[ImportSession] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[ImportMapping] CHECK CONSTRAINT [FK_ImportMapping_ImportSession] GO ALTER TABLE [dbo].[ImportSession] WITH CHECK ADD CONSTRAINT [FK_ImportSession_Project] FOREIGN KEY([project_id]) REFERENCES [dbo].[Project] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[ImportSession] CHECK CONSTRAINT [FK_ImportSession_Project] GO ALTER TABLE [dbo].[Modifier] WITH CHECK ADD CONSTRAINT [FK_Modifier_BaseEntity] FOREIGN KEY([id]) REFERENCES [dbo].[BaseEntity] ([id]) GO ALTER TABLE [dbo].[Modifier] CHECK CONSTRAINT [FK_Modifier_BaseEntity] GO ALTER TABLE [dbo].[MolecularSequenceData] WITH CHECK ADD CONSTRAINT [FK_MolecularSequenceData_Description] FOREIGN KEY([description_id]) REFERENCES [dbo].[Description] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[MolecularSequenceData] CHECK CONSTRAINT [FK_MolecularSequenceData_Description] GO ALTER TABLE [dbo].[MolecularSequenceData] WITH CHECK ADD CONSTRAINT [FK_MolecularSequenceData_Descriptor] FOREIGN KEY([descriptor_id]) REFERENCES [dbo].[Descriptor] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[MolecularSequenceData] CHECK CONSTRAINT [FK_MolecularSequenceData_Descriptor] GO ALTER TABLE [dbo].[MolecularSequenceSamplingData] WITH CHECK ADD CONSTRAINT [FK_MolecularSequenceSamplingData_Descriptor] FOREIGN KEY([descriptor_id]) REFERENCES [dbo].[Descriptor] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[MolecularSequenceSamplingData] CHECK CONSTRAINT [FK_MolecularSequenceSamplingData_Descriptor] GO ALTER TABLE [dbo].[MolecularSequenceSamplingData] WITH CHECK ADD CONSTRAINT [FK_MolecularSequenceSamplingData_SamplingUnit] FOREIGN KEY([sampling_unit_id]) REFERENCES [dbo].[SamplingUnit] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[MolecularSequenceSamplingData] CHECK CONSTRAINT [FK_MolecularSequenceSamplingData_SamplingUnit] GO ALTER TABLE [dbo].[OtherScope] WITH CHECK ADD CONSTRAINT [FK_OtherScope_BaseEntity] FOREIGN KEY([id]) REFERENCES [dbo].[BaseEntity] ([id]) GO ALTER TABLE [dbo].[OtherScope] CHECK CONSTRAINT [FK_OtherScope_BaseEntity] GO ALTER TABLE [dbo].[OtherScope] WITH CHECK ADD CONSTRAINT [FK_OtherScope_SexStatus_Enum] FOREIGN KEY([sex_status_id]) REFERENCES [dbo].[SexStatus_Enum] ([id]) ON DELETE SET NULL GO ALTER TABLE [dbo].[OtherScope] CHECK CONSTRAINT [FK_OtherScope_SexStatus_Enum] GO ALTER TABLE [dbo].[Project] WITH CHECK ADD CONSTRAINT [FK_Project_BaseEntity] FOREIGN KEY([id]) REFERENCES [dbo].[BaseEntity] ([id]) GO ALTER TABLE [dbo].[Project] CHECK CONSTRAINT [FK_Project_BaseEntity] GO ALTER TABLE [dbo].[Project] WITH CHECK ADD CONSTRAINT [FK_Project_Project] FOREIGN KEY([parent_project_id]) REFERENCES [dbo].[Project] ([id]) GO ALTER TABLE [dbo].[Project] CHECK CONSTRAINT [FK_Project_Project] GO ALTER TABLE [dbo].[Project] WITH CHECK ADD CONSTRAINT [FK_Project_ProjectProxy] FOREIGN KEY([ProjectProxyID]) REFERENCES [dbo].[ProjectProxy] ([ProjectID]) ON UPDATE CASCADE GO ALTER TABLE [dbo].[Project] CHECK CONSTRAINT [FK_Project_ProjectProxy] GO ALTER TABLE [dbo].[Project_AvailableScope] WITH CHECK ADD CONSTRAINT [FK_Project_AvailableScope_OtherScope] FOREIGN KEY([scope_id]) REFERENCES [dbo].[OtherScope] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[Project_AvailableScope] CHECK CONSTRAINT [FK_Project_AvailableScope_OtherScope] GO ALTER TABLE [dbo].[Project_AvailableScope] WITH CHECK ADD CONSTRAINT [FK_Project_AvailableScope_Project] FOREIGN KEY([project_id]) REFERENCES [dbo].[Project] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[Project_AvailableScope] CHECK CONSTRAINT [FK_Project_AvailableScope_Project] GO ALTER TABLE [dbo].[ProjectUser] WITH CHECK ADD CONSTRAINT [FK_DiversityProjectUser_DiversityProjectProxy] FOREIGN KEY([ProjectID]) REFERENCES [dbo].[ProjectProxy] ([ProjectID]) ON UPDATE CASCADE GO ALTER TABLE [dbo].[ProjectUser] CHECK CONSTRAINT [FK_DiversityProjectUser_DiversityProjectProxy] GO ALTER TABLE [dbo].[ProjectUser] WITH CHECK ADD CONSTRAINT [FK_ProjectUser_UserProxy] FOREIGN KEY([LoginName]) REFERENCES [dbo].[UserProxy] ([LoginName]) ON UPDATE CASCADE ON DELETE CASCADE GO ALTER TABLE [dbo].[ProjectUser] CHECK CONSTRAINT [FK_ProjectUser_UserProxy] GO ALTER TABLE [dbo].[QuantitativeSamplingData] WITH CHECK ADD CONSTRAINT [FK_QuantitativeSamplingData_Descriptor] FOREIGN KEY([descriptor_id]) REFERENCES [dbo].[Descriptor] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[QuantitativeSamplingData] CHECK CONSTRAINT [FK_QuantitativeSamplingData_Descriptor] GO ALTER TABLE [dbo].[QuantitativeSamplingData] WITH CHECK ADD CONSTRAINT [FK_QuantitativeSamplingData_Modifier] FOREIGN KEY([modifier_id]) REFERENCES [dbo].[Modifier] ([id]) ON DELETE SET NULL GO ALTER TABLE [dbo].[QuantitativeSamplingData] CHECK CONSTRAINT [FK_QuantitativeSamplingData_Modifier] GO ALTER TABLE [dbo].[QuantitativeSamplingData] WITH CHECK ADD CONSTRAINT [FK_QuantitativeSamplingData_SamplingUnit] FOREIGN KEY([sampling_unit_id]) REFERENCES [dbo].[SamplingUnit] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[QuantitativeSamplingData] CHECK CONSTRAINT [FK_QuantitativeSamplingData_SamplingUnit] GO ALTER TABLE [dbo].[QuantitativeSamplingData] WITH CHECK ADD CONSTRAINT [FK_QuantitativeSamplingData_StatisticalMeasure_Enum] FOREIGN KEY([measure_id]) REFERENCES [dbo].[StatisticalMeasure_Enum] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[QuantitativeSamplingData] CHECK CONSTRAINT [FK_QuantitativeSamplingData_StatisticalMeasure_Enum] GO ALTER TABLE [dbo].[QuantitativeSummaryData] WITH CHECK ADD CONSTRAINT [FK_QuantitativeSummaryData_Description] FOREIGN KEY([description_id]) REFERENCES [dbo].[Description] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[QuantitativeSummaryData] CHECK CONSTRAINT [FK_QuantitativeSummaryData_Description] GO ALTER TABLE [dbo].[QuantitativeSummaryData] WITH CHECK ADD CONSTRAINT [FK_QuantitativeSummaryData_Descriptor] FOREIGN KEY([descriptor_id]) REFERENCES [dbo].[Descriptor] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[QuantitativeSummaryData] CHECK CONSTRAINT [FK_QuantitativeSummaryData_Descriptor] GO ALTER TABLE [dbo].[QuantitativeSummaryData] WITH CHECK ADD CONSTRAINT [FK_QuantitativeSummaryData_Modifier] FOREIGN KEY([modifier_id]) REFERENCES [dbo].[Modifier] ([id]) ON DELETE SET NULL GO ALTER TABLE [dbo].[QuantitativeSummaryData] CHECK CONSTRAINT [FK_QuantitativeSummaryData_Modifier] GO ALTER TABLE [dbo].[QuantitativeSummaryData] WITH CHECK ADD CONSTRAINT [FK_QuantitativeSummaryData_StatisticalMeasure_Enum] FOREIGN KEY([measure_id]) REFERENCES [dbo].[StatisticalMeasure_Enum] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[QuantitativeSummaryData] CHECK CONSTRAINT [FK_QuantitativeSummaryData_StatisticalMeasure_Enum] GO ALTER TABLE [dbo].[Resource] WITH CHECK ADD CONSTRAINT [FK_Resource_BaseEntity] FOREIGN KEY([id]) REFERENCES [dbo].[BaseEntity] ([id]) GO ALTER TABLE [dbo].[Resource] CHECK CONSTRAINT [FK_Resource_BaseEntity] GO ALTER TABLE [dbo].[Resource] WITH CHECK ADD CONSTRAINT [FK_Resource_CategoricalState] FOREIGN KEY([state_id]) REFERENCES [dbo].[CategoricalState] ([id]) ON DELETE SET NULL GO ALTER TABLE [dbo].[Resource] CHECK CONSTRAINT [FK_Resource_CategoricalState] GO ALTER TABLE [dbo].[Resource] WITH CHECK ADD CONSTRAINT [FK_Resource_Description] FOREIGN KEY([description_id]) REFERENCES [dbo].[Description] ([id]) ON DELETE SET NULL GO ALTER TABLE [dbo].[Resource] CHECK CONSTRAINT [FK_Resource_Description] GO ALTER TABLE [dbo].[Resource] WITH CHECK ADD CONSTRAINT [FK_Resource_Descriptor] FOREIGN KEY([descriptor_id]) REFERENCES [dbo].[Descriptor] ([id]) ON DELETE SET NULL GO ALTER TABLE [dbo].[Resource] CHECK CONSTRAINT [FK_Resource_Descriptor] GO ALTER TABLE [dbo].[Resource] WITH CHECK ADD CONSTRAINT [FK_Resource_DescriptorTreeNode] FOREIGN KEY([node_id]) REFERENCES [dbo].[DescriptorTreeNode] ([id]) ON DELETE SET NULL GO ALTER TABLE [dbo].[Resource] CHECK CONSTRAINT [FK_Resource_DescriptorTreeNode] GO ALTER TABLE [dbo].[ResourceVariant] WITH CHECK ADD CONSTRAINT [FK_ResourceVariant_Resource] FOREIGN KEY([resource_id]) REFERENCES [dbo].[Resource] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[ResourceVariant] CHECK CONSTRAINT [FK_ResourceVariant_Resource] GO ALTER TABLE [dbo].[ResourceVariant] WITH CHECK ADD CONSTRAINT [FK_ResourceVariant_ResourceVariant_Enum] FOREIGN KEY([variant_id]) REFERENCES [dbo].[ResourceVariant_Enum] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[ResourceVariant] CHECK CONSTRAINT [FK_ResourceVariant_ResourceVariant_Enum] GO ALTER TABLE [dbo].[ResourceVariant_Enum] WITH CHECK ADD CONSTRAINT [FK_ResourceVariant_Enum_BaseEntity] FOREIGN KEY([id]) REFERENCES [dbo].[BaseEntity] ([id]) GO ALTER TABLE [dbo].[ResourceVariant_Enum] CHECK CONSTRAINT [FK_ResourceVariant_Enum_BaseEntity] GO ALTER TABLE [dbo].[SamplingEvent] WITH CHECK ADD CONSTRAINT [FK_SamplingEvent_BaseEntity] FOREIGN KEY([id]) REFERENCES [dbo].[BaseEntity] ([id]) GO ALTER TABLE [dbo].[SamplingEvent] CHECK CONSTRAINT [FK_SamplingEvent_BaseEntity] GO ALTER TABLE [dbo].[SamplingEvent] WITH CHECK ADD CONSTRAINT [FK_SamplingEvent_Description] FOREIGN KEY([description_id]) REFERENCES [dbo].[Description] ([id]) GO ALTER TABLE [dbo].[SamplingEvent] CHECK CONSTRAINT [FK_SamplingEvent_Description] GO ALTER TABLE [dbo].[SamplingUnit] WITH CHECK ADD CONSTRAINT [FK_SamplingUnit_SamplingEvent] FOREIGN KEY([sampling_event_id]) REFERENCES [dbo].[SamplingEvent] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[SamplingUnit] CHECK CONSTRAINT [FK_SamplingUnit_SamplingEvent] GO ALTER TABLE [dbo].[SexStatus_Enum] WITH CHECK ADD CONSTRAINT [FK_SexStatus_Enum_BaseEntity] FOREIGN KEY([id]) REFERENCES [dbo].[BaseEntity] ([id]) GO ALTER TABLE [dbo].[SexStatus_Enum] CHECK CONSTRAINT [FK_SexStatus_Enum_BaseEntity] GO ALTER TABLE [dbo].[StatisticalMeasure_Enum] WITH CHECK ADD CONSTRAINT [FK_StatisticalMeasure_Enum_BaseEntity] FOREIGN KEY([id]) REFERENCES [dbo].[BaseEntity] ([id]) GO ALTER TABLE [dbo].[StatisticalMeasure_Enum] CHECK CONSTRAINT [FK_StatisticalMeasure_Enum_BaseEntity] GO ALTER TABLE [dbo].[Tag] WITH CHECK ADD CONSTRAINT [FK_Tag_BaseEntity] FOREIGN KEY([object_id]) REFERENCES [dbo].[BaseEntity] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[Tag] CHECK CONSTRAINT [FK_Tag_BaseEntity] GO ALTER TABLE [dbo].[TextDescriptorData] WITH CHECK ADD CONSTRAINT [FK_TextDescriptorData_Description] FOREIGN KEY([description_id]) REFERENCES [dbo].[Description] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[TextDescriptorData] CHECK CONSTRAINT [FK_TextDescriptorData_Description] GO ALTER TABLE [dbo].[TextDescriptorData] WITH CHECK ADD CONSTRAINT [FK_TextDescriptorData_Descriptor] FOREIGN KEY([descriptor_id]) REFERENCES [dbo].[Descriptor] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[TextDescriptorData] CHECK CONSTRAINT [FK_TextDescriptorData_Descriptor] GO ALTER TABLE [dbo].[TextSamplingData] WITH CHECK ADD CONSTRAINT [FK_TextSamplingData_Descriptor] FOREIGN KEY([descriptor_id]) REFERENCES [dbo].[Descriptor] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[TextSamplingData] CHECK CONSTRAINT [FK_TextSamplingData_Descriptor] GO ALTER TABLE [dbo].[TextSamplingData] WITH CHECK ADD CONSTRAINT [FK_TextSamplingData_SamplingUnit] FOREIGN KEY([sampling_unit_id]) REFERENCES [dbo].[SamplingUnit] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[TextSamplingData] CHECK CONSTRAINT [FK_TextSamplingData_SamplingUnit] GO ALTER TABLE [dbo].[Translation] WITH CHECK ADD CONSTRAINT [FK_Translation_BaseEntity] FOREIGN KEY([object_id]) REFERENCES [dbo].[BaseEntity] ([id]) ON DELETE CASCADE GO ALTER TABLE [dbo].[Translation] CHECK CONSTRAINT [FK_Translation_BaseEntity] GO ALTER TABLE [dbo].[Translation] WITH CHECK ADD CONSTRAINT [FK_Translation_TranslationColumn_Enum] FOREIGN KEY([column_id]) REFERENCES [dbo].[TranslationColumn_Enum] ([id]) GO ALTER TABLE [dbo].[Translation] CHECK CONSTRAINT [FK_Translation_TranslationColumn_Enum] GO ALTER TABLE [dbo].[Contribution] WITH CHECK ADD CONSTRAINT [CHK_Contribution_role] CHECK (([role]='creator' OR [role]='editor' OR [role]='contributor' OR [role]='photographer')) GO ALTER TABLE [dbo].[Contribution] CHECK CONSTRAINT [CHK_Contribution_role] GO ALTER TABLE [dbo].[DescriptionScope] WITH CHECK ADD CONSTRAINT [CHK_DescriptionScope_type] CHECK (([type]='GeographicArea' OR [type]='SamplingPlot' OR [type]='Citation' OR [type]='Observation' OR [type]='Specimen' OR [type]='TaxonName' OR [type]='OtherConcept' OR [type]='Part' OR [type]='Stage' OR [type]='Sex')) GO ALTER TABLE [dbo].[DescriptionScope] CHECK CONSTRAINT [CHK_DescriptionScope_type] GO ALTER TABLE [dbo].[Descriptor] WITH CHECK ADD CONSTRAINT [CHK_Descriptor_availability] CHECK (([availability]='ignore' OR [availability]='very low' OR [availability]='low' OR [availability]='below average' OR [availability]='slightly below average' OR [availability]='standard' OR [availability]='slightly above average' OR [availability]='above average' OR [availability]='high' OR [availability]='very high')) GO ALTER TABLE [dbo].[Descriptor] CHECK CONSTRAINT [CHK_Descriptor_availability] GO ALTER TABLE [dbo].[Descriptor] WITH CHECK ADD CONSTRAINT [CHK_Descriptor_repeatability] CHECK (([repeatability]='ignore' OR [repeatability]='very low' OR [repeatability]='low' OR [repeatability]='below average' OR [repeatability]='slightly below average' OR [repeatability]='standard' OR [repeatability]='slightly above average' OR [repeatability]='above average' OR [repeatability]='high' OR [repeatability]='very high')) GO ALTER TABLE [dbo].[Descriptor] CHECK CONSTRAINT [CHK_Descriptor_repeatability] GO ALTER TABLE [dbo].[Descriptor] WITH CHECK ADD CONSTRAINT [CHK_Descriptor_sequence_type] CHECK (([sequence_type]='Nucleotide' OR [sequence_type]='Protein')) GO ALTER TABLE [dbo].[Descriptor] CHECK CONSTRAINT [CHK_Descriptor_sequence_type] GO ALTER TABLE [dbo].[Descriptor] WITH CHECK ADD CONSTRAINT [CHK_Descriptor_state_collection_model] CHECK (([state_collection_model]='OrSet' OR [state_collection_model]='OrSeq' OR [state_collection_model]='AndSet' OR [state_collection_model]='AndSeq' OR [state_collection_model]='WithSeq' OR [state_collection_model]='Between')) GO ALTER TABLE [dbo].[Descriptor] CHECK CONSTRAINT [CHK_Descriptor_state_collection_model] GO ALTER TABLE [dbo].[Descriptor] WITH CHECK ADD CONSTRAINT [CHK_Descriptor_statistical_measurement_scale] CHECK (([statistical_measurement_scale]='nominal' OR [statistical_measurement_scale]='ordinal' OR [statistical_measurement_scale]='interval' OR [statistical_measurement_scale]='ratio')) GO ALTER TABLE [dbo].[Descriptor] CHECK CONSTRAINT [CHK_Descriptor_statistical_measurement_scale] GO ALTER TABLE [dbo].[Descriptor] WITH CHECK ADD CONSTRAINT [CHK_Descriptor_subclass] CHECK (([subclass]='categorical' OR [subclass]='quantitative' OR [subclass]='text' OR [subclass]='sequence')) GO ALTER TABLE [dbo].[Descriptor] CHECK CONSTRAINT [CHK_Descriptor_subclass] GO ALTER TABLE [dbo].[DescriptorInapplicability] WITH CHECK ADD CONSTRAINT [CHK_DescriptorInapplicability_rule] CHECK (([rule]='inapplicable-if' OR [rule]='applicable-if' OR [rule]='inapplicable-computed-from-applicable')) GO ALTER TABLE [dbo].[DescriptorInapplicability] CHECK CONSTRAINT [CHK_DescriptorInapplicability_rule] GO ALTER TABLE [dbo].[DescriptorTree] WITH CHECK ADD CONSTRAINT [CHK_DescriptorTree_type] CHECK (([type]='mixed' OR [type]='part-of' OR [type]='property' OR [type]='generalization')) GO ALTER TABLE [dbo].[DescriptorTree] CHECK CONSTRAINT [CHK_DescriptorTree_type] GO ALTER TABLE [dbo].[Identifier] WITH CHECK ADD CONSTRAINT [CHK_Identifier_match] CHECK (([match]='exact' OR [match]='close' OR [match]='broader' OR [match]='narrower')) GO ALTER TABLE [dbo].[Identifier] CHECK CONSTRAINT [CHK_Identifier_match] GO ALTER TABLE [dbo].[Modifier] WITH CHECK ADD CONSTRAINT [CHK_Modifier_class] CHECK (([class]='Certainty' OR [class]='Seasonal' OR [class]='Diurnal' OR [class]='TreatAsMisinterpretation' OR [class]='OtherModifierClass')) GO ALTER TABLE [dbo].[Modifier] CHECK CONSTRAINT [CHK_Modifier_class] GO ALTER TABLE [dbo].[OtherScope] WITH CHECK ADD CONSTRAINT [CHK_OtherScope_type] CHECK (([type]='sex' OR [type]='stage' OR [type]='part' OR [type]='other')) GO ALTER TABLE [dbo].[OtherScope] CHECK CONSTRAINT [CHK_OtherScope_type] GO ALTER TABLE [dbo].[Resource] WITH CHECK ADD CONSTRAINT [CHK_Resource_taxon_role] CHECK (([taxon_role]='unknown' OR [taxon_role]='diagnostic' OR [taxon_role]='iconic' OR [taxon_role]='normative' OR [taxon_role]='primary' OR [taxon_role]='secondary')) GO ALTER TABLE [dbo].[Resource] CHECK CONSTRAINT [CHK_Resource_taxon_role] GO ALTER TABLE [dbo].[Resource] WITH CHECK ADD CONSTRAINT [CHK_Resource_terminology_role] CHECK (([terminology_role]='unknown' OR [terminology_role]='diagnostic' OR [terminology_role]='iconic' OR [terminology_role]='normative' OR [terminology_role]='primary' OR [terminology_role]='secondary' OR [terminology_role]='sk:exact' OR [terminology_role]='sk:close' OR [terminology_role]='sk:broad' OR [terminology_role]='sk:narrow' OR [terminology_role]='sk:related')) GO ALTER TABLE [dbo].[Resource] CHECK CONSTRAINT [CHK_Resource_terminology_role] GO /****** Object: StoredProcedure [dbo].[procCopyDescription] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- procCopyDescription CREATE PROCEDURE [dbo].[procCopyDescription] (@DescriptionID int output , @OriginalDescriptionID int , @DescriptionLabel nvarchar(255), @NewProjectID int, @CopyResources int, @CopyTranslations int) AS /* Copy a description @NewProjectID 0: copy project id from original description >0: insert specified project id @CopyResources 0: create new description without the resources 1: create new description with the same resource data as the old description @CopyTranslations 0: create new description without the translations 1: create new description with the same translations as the old description */ DECLARE @ID int -- BaseEntity INSERT INTO [BaseEntity] DEFAULT VALUES SET @DescriptionID = SCOPE_IDENTITY() -- Description IF @NewProjectID > 0 BEGIN INSERT INTO [Description] ([id], [label], [detail], [wording], [project_id]) SELECT @DescriptionID AS [id], (SELECT (@DescriptionLabel + ' [' + CONVERT(varchar, @DescriptionID) + ']') AS [label]), [detail], [wording], (SELECT @NewProjectID AS [project_id]) FROM [Description] WHERE [id] = @OriginalDescriptionID END ELSE BEGIN INSERT INTO [Description] ([id], [label], [detail], [wording], [project_id]) SELECT @DescriptionID AS [id], (SELECT (@DescriptionLabel + ' [' + CONVERT(varchar, @DescriptionID) + ']') AS [label]), [detail], [wording], [project_id] FROM [Description] WHERE [id] = @OriginalDescriptionID END -- CategoricalSummaryData INSERT INTO [CategoricalSummaryData] ([description_id], [state_id], [modifier_id], [frequency_id], [notes]) SELECT @DescriptionID AS [description_id], [state_id], [modifier_id], [frequency_id], [notes] FROM [CategoricalSummaryData] WHERE ([description_id] = @OriginalDescriptionID) -- QuantitativeSummaryData INSERT INTO [QuantitativeSummaryData] ([description_id], [descriptor_id], [measure_id], [value], [modifier_id], [notes]) SELECT @DescriptionID AS [description_id], [descriptor_id], [measure_id], [value], [modifier_id], [notes] FROM [QuantitativeSummaryData] WHERE ([description_id] = @OriginalDescriptionID) -- MolecularSequenceData INSERT INTO [MolecularSequenceData] ([description_id], [descriptor_id], [sequence], [notes]) SELECT @DescriptionID AS [description_id], [descriptor_id], [sequence], [notes] FROM [MolecularSequenceData] WHERE ([description_id] = @OriginalDescriptionID) -- TextDescriptorData INSERT INTO [TextDescriptorData] ([description_id], [descriptor_id], [content], [notes]) SELECT @DescriptionID AS [description_id], [descriptor_id], [content], [notes] FROM [TextDescriptorData] WHERE ([description_id] = @OriginalDescriptionID) -- DescriptorStatusData INSERT INTO [DescriptorStatusData] ([description_id], [descriptor_id], [datastatus_id], [notes]) SELECT @DescriptionID AS [description_id], [descriptor_id], [datastatus_id], [notes] FROM [DescriptorStatusData] WHERE ([description_id] = @OriginalDescriptionID) -- Translations for Description IF @CopyTranslations > 0 BEGIN INSERT INTO [Translation] ([object_id], [language_code], [column_id], [contents]) SELECT @DescriptionID AS [object_id], [language_code], [column_id], [contents] FROM [Translation] WHERE [object_id] = @OriginalDescriptionID END -- DescriptionScope INSERT INTO [DescriptionScope] ([description_id], [label], [dwbURI], [type], [other_scope_id]) SELECT @DescriptionID AS [description_id], [label], [dwbURI], [type], [other_scope_id] FROM [DescriptionScope] WHERE [description_id] = @OriginalDescriptionID -- Resources IF @CopyResources > 0 BEGIN DECLARE @OriginalResourceID int DECLARE @ResourceID int DECLARE ResourceCursor CURSOR FOR SELECT [id] FROM [Resource] WHERE [description_id] = @OriginalDescriptionID OPEN ResourceCursor FETCH NEXT FROM ResourceCursor INTO @OriginalResourceID WHILE @@FETCH_STATUS = 0 BEGIN -- BaseEntity INSERT INTO [BaseEntity] DEFAULT VALUES SET @ResourceID = SCOPE_IDENTITY() -- Resource INSERT INTO [Resource] ([id], [description_id], [terminology_role], [ranking_for_terminology], [taxon_role], [ranking_for_taxon_use], [display_embedded], [label], [detail], [language_code], [rights_text], [licence_uri], [display_order]) SELECT @ResourceID AS [id], @DescriptionID AS [description_id], [terminology_role], [ranking_for_terminology], [taxon_role], [ranking_for_taxon_use], [display_embedded], [label], [detail], [language_code], [rights_text], [licence_uri], [display_order] FROM [Resource] WHERE [id] = @OriginalResourceID -- ResourceVariant INSERT INTO [ResourceVariant] ([resource_id], [variant_id], [url], [pixel_width], [pixel_height], [duration], [size], [mime_type]) SELECT @ResourceID, [variant_id], [url], [pixel_width], [pixel_height], [duration], [size], [mime_type] FROM [ResourceVariant] WHERE [resource_id] = @OriginalResourceID -- Translations for Resource IF @CopyTranslations > 0 BEGIN INSERT INTO [Translation] ([object_id], [language_code], [column_id], [contents]) SELECT @ResourceID AS [object_id], [language_code], [column_id], [contents] FROM [Translation] WHERE [object_id] = @OriginalResourceID END FETCH NEXT FROM ResourceCursor INTO @OriginalResourceID END CLOSE ResourceCursor DEALLOCATE ResourceCursor END SELECT @DescriptionID GO /****** Object: StoredProcedure [dbo].[procCopyDescriptor] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- procCopyDescriptor CREATE PROCEDURE [dbo].[procCopyDescriptor] (@DescriptorID int output , @OriginalDescriptorID int , @DescriptorLabel nvarchar(255), @CopyResources int, @CopyTranslations int) AS /* Copy a descriptor @CopyResources 0: create new descriptor without the resources 1: create new descriptor with the same resource data as the old description @CopyTranslations 0: create new descriptor without the translations 1: create new descriptor with the same translations as the old description */ DECLARE @OriginalResourceID int DECLARE @ResourceID int -- BaseEntity INSERT INTO [BaseEntity] DEFAULT VALUES SET @DescriptorID = SCOPE_IDENTITY() -- Descriptor INSERT INTO [Descriptor] ([id], [label], [abbreviation], [detail], [display_order], [subclass], [statistical_measurement_scale], [usually_exclusive], [state_collection_model], [mandatory], [repeatability], [availability], [measurement_unit], [measurement_unit_precedes_value], [values_are_integer], [min_plausible_value], [max_plausible_value], [sequence_type], [symbol_length], [enable_ambiguity_symbols], [gap_symbol], [wording], [wording_before], [wording_after], [data_entry_note]) SELECT @DescriptorID AS [id], (SELECT (@DescriptorLabel + ' [' + CONVERT(varchar, @DescriptorID) + ']') AS [label]), [abbreviation], [detail], [display_order], [subclass], [statistical_measurement_scale], [usually_exclusive], [state_collection_model], [mandatory], [repeatability], [availability], [measurement_unit], [measurement_unit_precedes_value], [values_are_integer], [min_plausible_value], [max_plausible_value], [sequence_type], [symbol_length], [enable_ambiguity_symbols], [gap_symbol], [wording], [wording_before], [wording_after], [data_entry_note] FROM [Descriptor] WHERE [id] = @OriginalDescriptorID -- Translations for Descriptor IF @CopyTranslations > 0 BEGIN INSERT INTO [Translation] ([object_id], [language_code], [column_id], [contents]) SELECT @DescriptorID AS [object_id], [language_code], [column_id], [contents] FROM [Translation] WHERE [object_id] = @OriginalDescriptorID END -- Resources for Descriptor IF @CopyResources > 0 BEGIN DECLARE ResourceCursor CURSOR FOR SELECT [id] FROM [Resource] WHERE [descriptor_id] = @OriginalDescriptorID OPEN ResourceCursor FETCH NEXT FROM ResourceCursor INTO @OriginalResourceID WHILE @@FETCH_STATUS = 0 BEGIN -- BaseEntity INSERT INTO [BaseEntity] DEFAULT VALUES SET @ResourceID = SCOPE_IDENTITY() -- Resource INSERT INTO [Resource] ([id], [descriptor_id], [terminology_role], [ranking_for_terminology], [taxon_role], [ranking_for_taxon_use], [display_embedded], [label], [detail], [language_code], [rights_text], [licence_uri], [display_order]) SELECT @ResourceID AS [id], @DescriptorID AS [descriptor_id], [terminology_role], [ranking_for_terminology], [taxon_role], [ranking_for_taxon_use], [display_embedded], [label], [detail], [language_code], [rights_text], [licence_uri], [display_order] FROM [Resource] WHERE [id] = @OriginalResourceID -- ResourceVariant INSERT INTO [ResourceVariant] ([resource_id], [variant_id], [url], [pixel_width], [pixel_height], [duration], [size], [mime_type]) SELECT @ResourceID, [variant_id], [url], [pixel_width], [pixel_height], [duration], [size], [mime_type] FROM [ResourceVariant] WHERE [resource_id] = @OriginalResourceID -- Translations for Resource IF @CopyTranslations > 0 BEGIN INSERT INTO [Translation] ([object_id], [language_code], [column_id], [contents]) SELECT @ResourceID AS [object_id], [language_code], [column_id], [contents] FROM [Translation] WHERE [object_id] = @OriginalResourceID END FETCH NEXT FROM ResourceCursor INTO @OriginalResourceID END CLOSE ResourceCursor DEALLOCATE ResourceCursor END -- CategoricalState DECLARE @OriginalStateID int DECLARE @StateID int DECLARE StateCursor CURSOR FOR SELECT [id] FROM [CategoricalState] WHERE [descriptor_id] = @OriginalDescriptorID OPEN StateCursor FETCH NEXT FROM StateCursor INTO @OriginalStateID WHILE @@FETCH_STATUS = 0 BEGIN -- BaseEntity INSERT INTO [BaseEntity] DEFAULT VALUES SET @StateID = SCOPE_IDENTITY() -- CategoricalState INSERT INTO [CategoricalState] ([id], [descriptor_id], [label], [abbreviation], [detail], [wording], [display_order]) SELECT @StateID AS [id], @DescriptorID AS [descriptor_id], [label], [abbreviation], [detail], [wording], [display_order] FROM [CategoricalState] WHERE [id] = @OriginalStateID -- Translations for State IF @CopyTranslations > 0 BEGIN INSERT INTO [Translation] ([object_id], [language_code], [column_id], [contents]) SELECT @StateID AS [object_id], [language_code], [column_id], [contents] FROM [Translation] WHERE [object_id] = @OriginalStateID END -- Resources for CategoricalState IF @CopyResources > 0 BEGIN DECLARE ResourceCursor CURSOR FOR SELECT [id] FROM [Resource] WHERE [state_id] = @OriginalStateID OPEN ResourceCursor FETCH NEXT FROM ResourceCursor INTO @OriginalResourceID WHILE @@FETCH_STATUS = 0 BEGIN -- BaseEntity INSERT INTO [BaseEntity] DEFAULT VALUES SET @ResourceID = SCOPE_IDENTITY() -- Resource INSERT INTO [Resource] ([id], [state_id], [terminology_role], [ranking_for_terminology], [taxon_role], [ranking_for_taxon_use], [display_embedded], [label], [detail], [language_code], [rights_text], [licence_uri], [display_order]) SELECT @ResourceID AS [id], @StateID AS [state_id], [terminology_role], [ranking_for_terminology], [taxon_role], [ranking_for_taxon_use], [display_embedded], [label], [detail], [language_code], [rights_text], [licence_uri], [display_order] FROM [Resource] WHERE [id] = @OriginalResourceID -- ResourceVariant INSERT INTO [ResourceVariant] ([resource_id], [variant_id], [url], [pixel_width], [pixel_height], [duration], [size], [mime_type]) SELECT @ResourceID, [variant_id], [url], [pixel_width], [pixel_height], [duration], [size], [mime_type] FROM [ResourceVariant] WHERE [resource_id] = @OriginalResourceID -- Translations for Resource IF @CopyTranslations > 0 BEGIN INSERT INTO [Translation] ([object_id], [language_code], [column_id], [contents]) SELECT @ResourceID AS [object_id], [language_code], [column_id], [contents] FROM [Translation] WHERE [object_id] = @OriginalResourceID END FETCH NEXT FROM ResourceCursor INTO @OriginalResourceID END CLOSE ResourceCursor DEALLOCATE ResourceCursor END FETCH NEXT FROM StateCursor INTO @OriginalStateID END CLOSE StateCursor DEALLOCATE StateCursor SELECT @DescriptorID GO /****** Object: StoredProcedure [dbo].[procCopyProject] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Insert copy procedure Project CREATE PROCEDURE [dbo].[procCopyProject] (@ProjectID int output, @OriginalProjectId int, @ProjectLabel nvarchar(255), @NewProjectProxyID int, @CopyTranslations int) AS /* @NewProjectProxyID 0: copy from project >0: insert specified value @CopyTranslations 0: copy project without translations 1: copy project with translations */ INSERT INTO [BaseEntity] DEFAULT VALUES SET @ProjectID = SCOPE_IDENTITY() INSERT INTO [Project] ([id], [label], [parent_project_id], [rights_text], [licence_uri], [detail], [primary_language_code], [ProjectProxyID]) SELECT @ProjectID AS [id], (SELECT (@ProjectLabel + ' [' + CONVERT(varchar, @ProjectID) + ']') AS [label]), [parent_project_id], [rights_text], [licence_uri], [detail], [primary_language_code], (SELECT @NewProjectProxyID AS [ProjectProxyID]) FROM [Project] WHERE [id] = @OriginalProjectID IF @CopyTranslations > 0 BEGIN INSERT INTO [Translation] ([object_id], [language_code], [column_id], [contents]) SELECT @ProjectID AS [object_id], [language_code], [column_id], [contents] FROM [Translation] WHERE [object_id] = @OriginalProjectId END SELECT @ProjectID GO /****** Object: StoredProcedure [dbo].[procCreateCacheMappingDescription] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Create cache mapping for descriptions CREATE PROCEDURE [dbo].[procCreateCacheMappingDescription] (@ProjectId int) AS /* @ProjectId Id of the Project The project must be present in the table CacheProject */ DECLARE @KeyMappingLevel int DECLARE @NewItemKey int DECLARE @DescriptionID int SET @KeyMappingLevel = (SELECT [key_mapping_level] FROM [CacheProject] WHERE [project_id] = @ProjectId) IF @KeyMappingLevel = 0 OR @KeyMappingLevel > 2 BEGIN DELETE FROM [dbo].[CacheMappingDescription] WHERE [project_id]=@ProjectId END IF @KeyMappingLevel > 1 BEGIN DECLARE DescriptionCursor CURSOR FOR SELECT DISTINCT [id] FROM [dbo].[Description_QueryExt] WHERE ([ProjectId] = @ProjectID AND NOT ([alternate_id] IS NULL OR [alternate_id]='')) AND NOT [id] IN (SELECT [description_id] FROM [dbo].[CacheMappingDescription] WHERE [project_id] = @ProjectId) ORDER BY [id] OPEN DescriptionCursor FETCH NEXT FROM DescriptionCursor INTO @DescriptionID WHILE @@FETCH_STATUS = 0 BEGIN BEGIN TRY SET @NewItemKey = CONVERT(int, (SELECT [alternate_id] FROM [dbo].[Description] WHERE [id] = @DescriptionID)) IF EXISTS(SELECT * FROM [dbo].[CacheMappingDescription] WHERE [target_key] = @NewItemKey) BEGIN SET @NewItemKey = 0 END END TRY BEGIN CATCH SET @NewItemKey = 0 END CATCH IF @NewItemKey > 0 BEGIN INSERT INTO [dbo].[CacheMappingDescription] ([project_id] ,[description_id] ,[target_key]) VALUES (@ProjectId ,@DescriptionID ,@NewItemKey) END FETCH NEXT FROM DescriptionCursor INTO @DescriptionID END CLOSE DescriptionCursor DEALLOCATE DescriptionCursor IF @KeyMappingLevel > 2 BEGIN UPDATE [dbo].[CacheProject] SET [key_mapping_level] = 2 WHERE [project_id]=@ProjectId END END SET @NewItemKey = (SELECT MAX(target_key) FROM [dbo].[CacheMappingDescription] WHERE [project_id] = @ProjectId) IF @NewItemKey IS NULL BEGIN SET @NewItemKey = 0 END DECLARE DescriptionCursor CURSOR FOR SELECT DISTINCT [id] FROM [dbo].[Description_QueryExt] WHERE ([ProjectId] = @ProjectID AND NOT [id] IN (SELECT [description_id] FROM [dbo].[CacheMappingDescription] WHERE [project_id] = @ProjectId)) ORDER BY [id] OPEN DescriptionCursor FETCH NEXT FROM DescriptionCursor INTO @DescriptionID WHILE @@FETCH_STATUS = 0 BEGIN SET @NewItemKey = @NewItemKey + 1 INSERT INTO [dbo].[CacheMappingDescription] ([project_id] ,[description_id] ,[target_key]) VALUES (@ProjectId ,@DescriptionID ,@NewItemKey) FETCH NEXT FROM DescriptionCursor INTO @DescriptionID END CLOSE DescriptionCursor DEALLOCATE DescriptionCursor UPDATE [dbo].[CacheProject] SET [last_item_key] = (SELECT MAX(target_key) FROM [dbo].[CacheMappingDescription] WHERE [project_id] = @ProjectId) GO /****** Object: StoredProcedure [dbo].[procCreateCacheMappingDescriptor] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Create cache mapping for descriptor CREATE PROCEDURE [dbo].[procCreateCacheMappingDescriptor] (@ProjectId int) AS /* @ProjectId Id of the Project The project must be present in the table CacheProject */ DECLARE @KeyMappingLevel int DECLARE @LastCharKey int SET @KeyMappingLevel = (SELECT [key_mapping_level] FROM [CacheProject] WHERE [project_id] = @ProjectId) IF @KeyMappingLevel = 0 BEGIN DELETE FROM [dbo].[CacheMappingDescriptor] WHERE [project_id]=@ProjectId SET @LastCharKey = 0 END ELSE BEGIN SET @LastCharKey = (SELECT [last_char_key] FROM [CacheProject] WHERE [project_id] = @ProjectId) END INSERT INTO [dbo].[CacheMappingDescriptor] ([project_id] ,[descriptor_id] ,[target_key] ,[last_state_key]) SELECT @ProjectID AS project_id ,D.id AS descriptor_id ,ROW_NUMBER() OVER (ORDER BY D.display_order, D.label) + @LastCharKey AS target_key ,CASE WHEN D.[subclass]='categorical' THEN 0 ELSE -1 END AS last_state_key /*,(SELECT COUNT(id) FROM CategoricalState WHERE CategoricalState.descriptor_id=D.id) AS last_state_key */ FROM [dbo].[Descriptor] AS D WHERE (D.id IN (SELECT DISTINCT [descriptor_id] FROM [dbo].[View_DescriptorProject] WHERE [project_id] = @ProjectId) AND NOT D.id IN (SELECT [descriptor_id] FROM [dbo].[CacheMappingDescriptor] WHERE [project_id] = @ProjectId)) UPDATE [dbo].[CacheProject] SET [last_char_key] = (SELECT MAX(target_key) FROM [dbo].[CacheMappingDescriptor] WHERE [project_id] = @ProjectId) GO /****** Object: StoredProcedure [dbo].[procCreateCacheMappingState] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Create cache mapping for categorical states CREATE PROCEDURE [dbo].[procCreateCacheMappingState] (@ProjectId int) AS /* @ProjectId Id of the Project The project must be present in the table CacheProject */ DECLARE @KeyMappingLevel int DECLARE @LastStateKey int DECLARE @DescriptorID int DECLARE @StateTable Table ([project_id] int NOT NULL, [state_id] int primary key, [target_key] int NOT NULL) SET @KeyMappingLevel = (SELECT [key_mapping_level] FROM [CacheProject] WHERE [project_id] = @ProjectId) IF @KeyMappingLevel = 0 BEGIN DELETE FROM [dbo].[CacheMappingState] WHERE [project_id]=@ProjectId END DECLARE DescriptorCursor CURSOR FOR SELECT [descriptor_id] FROM [dbo].[CacheMappingDescriptor] WHERE [project_id] = @ProjectID OPEN DescriptorCursor FETCH NEXT FROM DescriptorCursor INTO @DescriptorID WHILE @@FETCH_STATUS = 0 BEGIN SET @LastStateKey = (SELECT [last_state_key] FROM [CacheMappingDescriptor] WHERE [project_id] = @ProjectId AND [descriptor_id] = @DescriptorID) IF @LastStateKey >= 0 BEGIN IF @KeyMappingLevel = 0 BEGIN SET @LastStateKey = 0 END DELETE FROM @StateTable INSERT INTO @StateTable ([project_id] ,[state_id] ,[target_key]) SELECT @ProjectId AS project_id ,S.id AS state_id ,ROW_NUMBER() OVER (ORDER BY S.display_order, S.label) + @LastStateKey AS target_key FROM [dbo].[CategoricalState] AS S WHERE ((S.descriptor_id = @DescriptorID) AND NOT S.id IN (SELECT [state_id] FROM [dbo].[CacheMappingState] WHERE [project_id] = @ProjectId)) INSERT INTO [dbo].[CacheMappingState] ([project_id] ,[state_id] ,[target_key]) SELECT project_id ,state_id ,target_key FROM @StateTable IF (SELECT COUNT(*) FROM @StateTable) > 0 BEGIN UPDATE [dbo].[CacheMappingDescriptor] SET [last_state_key] = (SELECT MAX(target_key) FROM @StateTable) WHERE [dbo].[CacheMappingDescriptor].[project_id] = @ProjectId AND [dbo].[CacheMappingDescriptor].[descriptor_id] = @DescriptorID END END FETCH NEXT FROM DescriptorCursor INTO @DescriptorID END CLOSE DescriptorCursor DEALLOCATE DescriptorCursor GO /****** Object: StoredProcedure [dbo].[procCreateKeyMapping] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- Create internal key mapping CREATE PROCEDURE [dbo].[procCreateKeyMapping] (@SessionId int) AS /* @SessionId Id of the ImportSession All ImportMapping must be deleted before calling this procedure */ DECLARE @ProjectId int DECLARE @DescriptionId int DECLARE @DescriptorId int DECLARE @CategoricalStateId int DECLARE @NodeId int DECLARE @ResourceId int SET @ProjectId = (SELECT [project_id] FROM [ImportSession] WHERE [id] = @SessionId) DECLARE DescriptionCursor CURSOR FOR SELECT [id] FROM [Description] WHERE [project_id] = @ProjectId OPEN DescriptionCursor FETCH NEXT FROM DescriptionCursor INTO @DescriptionId WHILE @@FETCH_STATUS = 0 BEGIN INSERT INTO [ImportMapping] ([object_id], [session_id], [table_name], [parent_key], [external_key]) VALUES (@DescriptionId , @SessionId, 'Description', '', @DescriptionId) DECLARE ResourceCursor CURSOR FOR SELECT [id] FROM [Resource] WHERE [description_id] = @DescriptionId OPEN ResourceCursor FETCH NEXT FROM ResourceCursor INTO @ResourceId WHILE @@FETCH_STATUS = 0 BEGIN INSERT INTO [ImportMapping] ([object_id], [session_id], [table_name], [parent_key], [external_key]) VALUES (@ResourceId , @SessionId, 'Resource', '[Description].[id]=[' + CONVERT(varchar, @DescriptionId) + ']', @ResourceId) FETCH NEXT FROM ResourceCursor INTO @ResourceId END CLOSE ResourceCursor DEALLOCATE ResourceCursor FETCH NEXT FROM DescriptionCursor INTO @DescriptionId END CLOSE DescriptionCursor DEALLOCATE DescriptionCursor DECLARE DescriptorCursor CURSOR FOR SELECT DISTINCT [descriptor_id] FROM [View_DescriptorProject] WHERE NOT [descriptor_id] IS NULL AND [project_id] = @ProjectId OPEN DescriptorCursor FETCH NEXT FROM DescriptorCursor INTO @DescriptorId WHILE @@FETCH_STATUS = 0 BEGIN INSERT INTO [ImportMapping] ([object_id], [session_id], [table_name], [parent_key], [external_key]) VALUES (@DescriptorId , @SessionId, 'Descriptor', '', @DescriptorId) DECLARE ResourceCursor CURSOR FOR SELECT [id] FROM [Resource] WHERE [descriptor_id] = @DescriptorId OPEN ResourceCursor FETCH NEXT FROM ResourceCursor INTO @ResourceId WHILE @@FETCH_STATUS = 0 BEGIN INSERT INTO [ImportMapping] ([object_id], [session_id], [table_name], [parent_key], [external_key]) VALUES (@ResourceId , @SessionId, 'Resource', '[Descriptor].[id]=[' + CONVERT(varchar, @DescriptorId) + ']', @ResourceId) FETCH NEXT FROM ResourceCursor INTO @ResourceId END CLOSE ResourceCursor DEALLOCATE ResourceCursor DECLARE CategoricalStateCursor CURSOR FOR SELECT [id] FROM [CategoricalState] WHERE [descriptor_id] = @DescriptorId OPEN CategoricalStateCursor FETCH NEXT FROM CategoricalStateCursor INTO @CategoricalStateId WHILE @@FETCH_STATUS = 0 BEGIN INSERT INTO [ImportMapping] ([object_id], [session_id], [table_name], [parent_key], [external_key]) VALUES (@CategoricalStateId , @SessionId, 'CategoricalState', '[Descriptor].[id]=[' + CONVERT(varchar, @DescriptorId) + ']', @CategoricalStateId) DECLARE ResourceCursor CURSOR FOR SELECT [id] FROM [Resource] WHERE [state_id] = @CategoricalStateId OPEN ResourceCursor FETCH NEXT FROM ResourceCursor INTO @ResourceId WHILE @@FETCH_STATUS = 0 BEGIN INSERT INTO [ImportMapping] ([object_id], [session_id], [table_name], [parent_key], [external_key]) VALUES (@ResourceId , @SessionId, 'Resource', '[CategoricalState].[id]=[' + CONVERT(varchar, @CategoricalStateId) + ']', @ResourceId) FETCH NEXT FROM ResourceCursor INTO @ResourceId END CLOSE ResourceCursor DEALLOCATE ResourceCursor FETCH NEXT FROM CategoricalStateCursor INTO @CategoricalStateId END CLOSE CategoricalStateCursor DEALLOCATE CategoricalStateCursor DECLARE DescriptorNodeCursor CURSOR FOR SELECT [DescriptorTreeNode].[id] FROM [DescriptorTreeNode] INNER JOIN [DescriptorTree] ON [DescriptorTreeNode].[descriptortree_id] = [DescriptorTree].[id] WHERE [DescriptorTree].[project_id] = @ProjectId AND [DescriptorTreeNode].[descriptor_id] = @DescriptorId OPEN DescriptorNodeCursor FETCH NEXT FROM DescriptorNodeCursor INTO @NodeId WHILE @@FETCH_STATUS = 0 BEGIN INSERT INTO [ImportMapping] ([object_id], [session_id], [table_name], [parent_key], [external_key]) VALUES (@NodeId , @SessionId, 'DescriptorNode', '[Descriptor].[id]=[' + CONVERT(varchar, @DescriptorId) + ']', @NodeId) FETCH NEXT FROM DescriptorNodeCursor INTO @NodeId END CLOSE DescriptorNodeCursor DEALLOCATE DescriptorNodeCursor FETCH NEXT FROM DescriptorCursor INTO @DescriptorId END CLOSE DescriptorCursor DEALLOCATE DescriptorCursor DECLARE DescriptorTreeNodeCursor CURSOR FOR SELECT [DescriptorTreeNode].[id] FROM [DescriptorTreeNode] INNER JOIN [DescriptorTree] ON [DescriptorTreeNode].[descriptortree_id] = [DescriptorTree].[id] WHERE [DescriptorTree].[project_id] = @ProjectId AND [DescriptorTreeNode].[descriptor_id] IS NULL OPEN DescriptorTreeNodeCursor FETCH NEXT FROM DescriptorTreeNodeCursor INTO @NodeId WHILE @@FETCH_STATUS = 0 BEGIN INSERT INTO [ImportMapping] ([object_id], [session_id], [table_name], [parent_key], [external_key]) VALUES (@NodeId , @SessionId, 'DescriptorTreeNode', '', @NodeId) DECLARE ResourceCursor CURSOR FOR SELECT [id] FROM [Resource] WHERE [node_id] = @NodeId OPEN ResourceCursor FETCH NEXT FROM ResourceCursor INTO @ResourceId WHILE @@FETCH_STATUS = 0 BEGIN INSERT INTO [ImportMapping] ([object_id], [session_id], [table_name], [parent_key], [external_key]) VALUES (@ResourceId , @SessionId, 'Resource', '[DescriptorTreeNode].[id]=[' + CONVERT(varchar, @NodeId) + ']', @ResourceId) FETCH NEXT FROM ResourceCursor INTO @ResourceId END CLOSE ResourceCursor DEALLOCATE ResourceCursor FETCH NEXT FROM DescriptorTreeNodeCursor INTO @NodeId END CLOSE DescriptorTreeNodeCursor DEALLOCATE DescriptorTreeNodeCursor GO /****** Object: StoredProcedure [dbo].[procDeleteProjectProxy] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO --##################################################################################################################### --###### Procedure for delete of ProjectProxy ####################################################################### --##################################################################################################################### -- Create delete procedure ProjectProxy CREATE PROCEDURE [dbo].[procDeleteProjectProxy] (@ProjectProxyID int) WITH EXECUTE AS 'AdminProxy' AS /* @ProjectProxyID ID of ProjectProxy that shall be deleted Only ProjectProxys not linked to DiversityProjects will be removed. */ DECLARE @URI nvarchar(255); DECLARE @RO bit; DECLARE @User nvarchar(255); SET @User = ORIGINAL_LOGIN(); IF IS_SRVROLEMEMBER('sysadmin', ORIGINAL_LOGIN())=1 SET @User = 'dbo' -- Check that ProjectProxy is not used and accessible SET @RO = null; SELECT @RO = PU.[ReadOnly] FROM [ProjectProxy] PP LEFT JOIN [ProjectUser] PU ON PU.[ProjectID] = PP.[ProjectID] WHERE PU.[LoginName]=@User AND PP.[ProjectID]=@ProjectProxyID AND NOT PP.[ProjectID] IN (SELECT [ProjectProxyID] FROM [Project] WHERE [ProjectProxyID] = @ProjectProxyID); IF @RO = 0 BEGIN -- Proxies linked to DiversityProjects stay unchanged! -- Read matching ProjectURI SET @URI = null; SELECT @URI = ProjectURI FROM ProjectProxy WHERE ProjectID = @ProjectProxyID; IF @URI IS null BEGIN -- Delete ProjectUser DELETE FROM ProjectUser WHERE ProjectID = @ProjectProxyID; -- Delete ProjectProxy DELETE FROM ProjectProxy WHERE ProjectID = @ProjectProxyID; END END GO /****** Object: StoredProcedure [dbo].[procInsertProjectProxy] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO --##################################################################################################################### --###### Procedure for insert of ProjectProxy ####################################################################### --##################################################################################################################### -- Create insert procedure ProjectProxy CREATE PROCEDURE [dbo].[procInsertProjectProxy] (@ProjectProxyID int output, @ProjectLabel nvarchar(255), @ReuseProxy int) WITH EXECUTE AS 'AdminProxy' AS /* @ProjectProxyID ID of inserted ProjectProxy (output) null: Insert not possible <>0: Insert done @ProjectLabel Label of inserted ProjectProxy @ReuseProxy 0:no 1:yes Existing ProjectProxy will be re-used if requested and it is accessible and unused */ DECLARE @ProxyID int; DECLARE @RO bit; DECLARE @User nvarchar(255); SET @User = ORIGINAL_LOGIN(); IF IS_SRVROLEMEMBER('sysadmin', ORIGINAL_LOGIN())=1 SET @User = 'dbo' SET @ProjectProxyID = null; IF @ReuseProxy <> 0 BEGIN -- Read all project proxies DECLARE ProxyCursor CURSOR FOR SELECT [ProjectID] FROM [ProjectProxy] WHERE [Project]=@ProjectLabel; OPEN ProxyCursor FETCH NEXT FROM ProxyCursor INTO @ProxyID WHILE @@FETCH_STATUS = 0 BEGIN -- Check that ProjectProxy is not used and accessible SET @RO = null; SELECT @RO = PU.[ReadOnly] FROM [ProjectProxy] PP LEFT JOIN [ProjectUser] PU ON PU.[ProjectID] = PP.[ProjectID] WHERE PU.[LoginName]=@User AND PP.[ProjectID]=@ProxyID AND NOT PP.[ProjectID] IN (SELECT [ProjectProxyID] FROM [Project] WHERE [ProjectProxyID] = @ProxyID); -- Set ProjectProxyID if ProjectProxy is unused and accessible IF @RO = 0 SET @ProjectProxyID = @ProxyID; FETCH NEXT FROM ProxyCursor INTO @ProxyID END CLOSE ProxyCursor DEALLOCATE ProxyCursor END -- Create ProjectProxy if no fitting instance was found IF @ProjectProxyID IS null BEGIN IF (SELECT TOP 1 ProjectID FROM [ProjectProxy]) IS NULL SET @ProjectProxyID = -1; ELSE SET @ProjectProxyID = (SELECT CASE WHEN MIN([ProjectID]) > 0 THEN -1 ELSE MIN([ProjectID]) - 1 END FROM [ProjectProxy]); INSERT INTO [ProjectProxy] ([ProjectID], [Project], [ProjectURI]) VALUES (@ProjectProxyID, @ProjectLabel, null); END -- Set access rights IF NOT @ProjectProxyID IS null BEGIN SET @RO = null; SELECT @RO = [ReadOnly] FROM [ProjectUser] WHERE [ProjectID]=@ProjectProxyID AND [LoginName]=@User; IF @RO IS NULL BEGIN IF (SELECT TOP 1 ID FROM [UserProxy] WHERE [LoginName]=@User) IS NULL INSERT INTO [UserProxy] ([LoginName], [CombinedNameCache]) VALUES (@User, @User); INSERT INTO [ProjectUser] ([LoginName], [ProjectID], [ReadOnly]) VALUES (@User, @ProjectProxyID, 0); END ELSE IF @RO = 1 UPDATE [ProjectUser] SET [ReadOnly]=0 WHERE [ProjectID]=@ProjectProxyID AND [LoginName]=@User; END SELECT @ProjectProxyID GO /****** Object: StoredProcedure [dbo].[procLinkProjectProxy] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO --##################################################################################################################### --###### Procedure for link of ProjectProxy ######################################################################### --##################################################################################################################### -- Create link procedure ProjectProxy CREATE PROCEDURE [dbo].[procLinkProjectProxy] (@ProjectID int, @ProjectProxyID int, @UserRightsLevel int, @Error nvarchar(255) OUTPUT) WITH EXECUTE AS 'AdminProxy' AS /* @ProjectID ID of Project that shall be linked to a new ProjectProxy @ProjectProxyID ID of ProjectProxy that shall be linked to the Project @UserRightsLevel 0: take rights form old proxy; 1: Take rights from linked proxy; 2: Merge rights of old and new @Error = '' Processing successful; else error message The old ProjectProxy will be deleted. */ DECLARE @Count int; DECLARE @ProxyID int; DECLARE @ProxyLabel nvarchar(255); DECLARE @ProjectLabel nvarchar(255); DECLARE @ProjectWording nvarchar(255); DECLARE @RO bit; DECLARE @User nvarchar(255); SET @User = ORIGINAL_LOGIN(); IF IS_SRVROLEMEMBER('sysadmin', ORIGINAL_LOGIN())=1 SET @User = 'dbo' -- Set result SET @Error = ''; -- Check that new ProjectProxy is not used and accessible SET @RO = null; SELECT @RO = PU.[ReadOnly], @ProxyLabel = PP.[Project] FROM [ProjectProxy] PP LEFT JOIN [ProjectUser] PU ON PU.[ProjectID] = PP.[ProjectID] WHERE PU.[LoginName]=@User AND PP.[ProjectID]=@ProjectProxyID AND NOT PP.[ProjectID] IN (SELECT [ProjectProxyID] FROM [Project] WHERE [ProjectProxyID] = @ProjectProxyID); IF @RO = 0 BEGIN -- Read current ProxyID and check that it is accessible SET @RO = null; SELECT @ProjectLabel=P.[label], @ProjectWording=P.[wording], @ProxyID=P.[ProjectProxyID], @RO=PU.[ReadOnly] FROM [Project] P INNER JOIN [ProjectProxy] PP ON P.[ProjectProxyID] = PP.[ProjectID] LEFT JOIN [ProjectUser] PU ON PU.[ProjectID] = PP.[ProjectID] WHERE PU.[LoginName]=@User AND P.[id] = @ProjectID; IF @RO = 0 BEGIN IF @ProjectWording IS null AND @ProxyLabel <> @ProjectLabel BEGIN -- Check if project is published in CacheDB SELECT @Count=COUNT(*) FROM [CacheProject] WHERE [project_id]=@ProjectID; IF @Count > 0 SET @ProjectWording=@ProjectLabel; END BEGIN TRY -- Update Project UPDATE [Project] SET [label]=@ProxyLabel, [wording]=@ProjectWording, [ProjectProxyID]=@ProjectProxyID WHERE [id]=@ProjectID; -- SET access rights IF @UserRightsLevel = 0 BEGIN -- Delete rights in new proxy DELETE FROM [ProjectUser] WHERE [ProjectID]=@ProjectProxyID; END IF @UserRightsLevel > 0 BEGIN -- Insert rights of old proxy that are not present in new one INSERT INTO [ProjectUser] ([LoginName], [ProjectID], [ReadOnly]) SELECT [LoginName], @ProjectProxyID, [ReadOnly] FROM [ProjectUser] WHERE [ProjectID]=@ProxyID AND NOT [LoginName] IN (SELECT [LoginName] FROM [ProjectUser] WHERE [ProjectID]=@ProjectProxyID); -- SET ReadOnly UPDATE [ProjectUser] SET [ReadOnly]=0 WHERE [ProjectID]=@ProjectProxyID AND [ReadOnly]<>0 AND [LoginName] IN (SELECT [LoginName] FROM [ProjectUser] WHERE [ProjectID]=@ProxyID AND [ReadOnly]=0) END -- Delete old ProjectProxy EXECUTE [dbo].[procDeleteProjectProxy] @ProxyID END TRY BEGIN CATCH SELECT @Error=ERROR_MESSAGE(); END CATCH END ELSE BEGIN SET @Error='No access to project!'; END END ELSE BEGIN SET @Error='No access to project proxy!'; END SELECT @Error; GO /****** Object: StoredProcedure [dbo].[procRenameProjectProxy] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO --##################################################################################################################### --###### Procedure for rename of ProjectProxy ####################################################################### --##################################################################################################################### -- Create rename procedure ProjectProxy CREATE PROCEDURE [dbo].[procRenameProjectProxy] (@ProjectProxyID int, @ProjectLabel nvarchar(255)) WITH EXECUTE AS 'AdminProxy' AS /* @ProjectProxyID ID of ProjectProxy that shall be renamed @ProjectLabel New name of ProjectProxy Only ProjectProxys not linked to DiversityProjects will be renamed. */ DECLARE @URI nvarchar(255); DECLARE @RO bit; DECLARE @User nvarchar(255); SET @User = ORIGINAL_LOGIN(); IF IS_SRVROLEMEMBER('sysadmin', ORIGINAL_LOGIN())=1 SET @User = 'dbo' -- Check that ProjectProxy is accessible SET @RO = null; SELECT @RO = PU.[ReadOnly] FROM [ProjectProxy] PP LEFT JOIN [ProjectUser] PU ON PU.[ProjectID] = PP.[ProjectID] WHERE PU.[LoginName]=@User AND PP.[ProjectID]=@ProjectProxyID IF @RO = 0 BEGIN -- Read matching ProjectURI SET @URI = null; SELECT @URI = ProjectURI FROM ProjectProxy WHERE ProjectID = @ProjectProxyID; IF @URI IS null BEGIN -- Rename ProjectProxy UPDATE ProjectProxy SET Project = @ProjectLabel WHERE ProjectID = @ProjectProxyID; END END GO /****** Object: StoredProcedure [dbo].[procSetUserAdminProxy] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO --##################################################################################################################### --###### Create procedure to set user AdminProxy ################################################################## --##################################################################################################################### -- Create set procedure AdminProxy CREATE PROCEDURE [dbo].[procSetUserAdminProxy] AS /* */ -- Create login 'AdminProxy' IF (SELECT COUNT(*) FROM [sys].[sql_logins] WHERE [name] = 'AdminProxy') = 0 BEGIN DECLARE @SQL nvarchar(1000) DECLARE @PW varchar(100); DECLARE @DB varchar(200); SET @DB = (SELECT DB_NAME()); SET @PW = (SELECT SUBSTRING(CONVERT(varchar, RAND()), 3, 5) + SUBSTRING(CONVERT(varchar, RAND()), 3, 5) + SUBSTRING(CONVERT(varchar, RAND()), 3, 5) + SUBSTRING(CONVERT(varchar, RAND()), 3, 5)); SET @SQL = 'USE [master]; CREATE LOGIN [AdminProxy] WITH PASSWORD = ''' + @PW + ''', CHECK_POLICY=OFF;'; EXEC sys.sp_executesql @SQL; SET @SQL = 'USE [master]; ALTER LOGIN [AdminProxy] DISABLE;'; EXEC sys.sp_executesql @SQL; SET @SQL = 'USE [' + @DB + '];'; EXEC sys.sp_executesql @SQL; END -- Set user 'AdminProxy' to login ALTER USER [AdminProxy] WITH LOGIN=[AdminProxy]; GO /****** Object: StoredProcedure [dbo].[procUnlinkProjectProxy] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO --##################################################################################################################### --###### Procedure for unlink of ProjectProxy ####################################################################### --##################################################################################################################### -- Create unlink procedure ProjectProxy CREATE PROCEDURE [dbo].[procUnlinkProjectProxy] (@ProjectProxyID int) WITH EXECUTE AS 'AdminProxy' AS /* @ProjectProxyID ID of ProjectProxy that shall be unlinked Removes link to DiversityProject and sets a new negative ID for the ProjectProxy. */ DECLARE @ProxyID int; DECLARE @ProjectID int; DECLARE @ProjectLabel nvarchar(255); DECLARE @URI nvarchar(255); DECLARE @RO bit; DECLARE @User nvarchar(255); SET @User = ORIGINAL_LOGIN(); IF IS_SRVROLEMEMBER('sysadmin', ORIGINAL_LOGIN())=1 SET @User = 'dbo' -- Check that ProjectProxy is accessible SET @RO = null; SELECT @RO = PU.[ReadOnly] FROM [ProjectProxy] PP LEFT JOIN [ProjectUser] PU ON PU.[ProjectID] = PP.[ProjectID] WHERE PU.[LoginName]=@User AND PP.[ProjectID]=@ProjectProxyID IF @RO = 0 BEGIN -- Read matching ProjectURI SET @URI = null; SELECT @URI=[ProjectURI], @ProjectLabel=[Project] FROM [ProjectProxy] WHERE [ProjectID]=@ProjectProxyID; IF NOT @URI IS null BEGIN -- Read matching project SELECT @ProjectID=[id] FROM [Project] WHERE [ProjectProxyID]=@ProjectProxyID AND [label]=@ProjectLabel; IF NOT @ProjectID IS NULL BEGIN -- Get new ProxyID - negative value for unlinked projects SET @ProxyID = (SELECT CASE WHEN MIN(ProjectID) > 0 THEN -1 ELSE MIN(ProjectID) - 1 END FROM ProjectProxy); INSERT INTO [ProjectProxy] ([ProjectID], [Project], [ProjectURI]) VALUES (@ProxyID, @ProjectLabel, null); -- Create users INSERT INTO [ProjectUser] ([LoginName], [ProjectID], [ReadOnly]) SELECT [LoginName], @ProxyID, [ReadOnly] FROM [ProjectUser] WHERE [ProjectID]=@ProjectProxyID; -- Switch project UPDATE [Project] SET [ProjectProxyID]=@ProxyID WHERE [id]=@ProjectID; END END END GO /****** Object: StoredProcedure [dbo].[procUpdateProjectProxy] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO --##################################################################################################################### --###### Procedure for updating the ProjectProxy assignments ######################################################## --##################################################################################################################### -- Create update procedure ProjectProxy CREATE PROCEDURE [dbo].[procUpdateProjectProxy] (@Actions nvarchar(max) output, @OnlyCheck int) --WITH EXECUTE AS 'AdminProxy' AS /* */ DECLARE @ProjectID int; DECLARE @ProxyID int; DECLARE @NewProxyID int; DECLARE @ProjectLabel nvarchar(255); DECLARE @ProxyLabel nvarchar(255); DECLARE @ProxyURI nvarchar(255); DECLARE @Count int; DECLARE @MatchingProjectID int; -- Init result SET @Actions=''; -- Do not change database if not owner IF USER_NAME() <> 'dbo' SET @OnlyCheck = 1; -- Get list of unique project assignements with DiversityProjects reference and name mismatch DECLARE @Unique TABLE (ProjectID int, Project nvarchar(255)); INSERT INTO @Unique SELECT PP.[ProjectID], PP.[Project] FROM [ProjectProxy] PP INNER JOIN [Project] P ON P.[ProjectProxyID]=PP.[ProjectID] WHERE NOT PP.[ProjectURI] IS NULL AND PP.[Project]<>P.[label] AND 1=(SELECT COUNT(*) FROM [Project] WHERE [ProjectproxyID]=PP.[ProjectID]); -- Read all projects with conflicting names DECLARE ProjectCursor CURSOR FOR SELECT [id] FROM [Project] WHERE [label] IN (SELECT [Project] FROM @Unique) OPEN ProjectCursor FETCH NEXT FROM ProjectCursor INTO @ProjectID WHILE @@FETCH_STATUS = 0 BEGIN -- Read project data SELECT @ProjectLabel=[label], @ProxyID=[ProjectProxyID] FROM [Project] WHERE [id]=@ProjectID; -- Set new project name SET @ProxyLabel = @ProjectLabel + '%'; SELECT @Count=COUNT(*) FROM [Project] WHERE [label] LIKE @ProxyLabel; SET @ProxyLabel = @ProjectLabel + CONVERT(NVARCHAR, @Count); IF @OnlyCheck=0 UPDATE [Project] SET [label]=@ProxyLabel, [wording]=@ProjectLabel WHERE [id]=@ProjectID; SET @Actions=@Actions + 'UPDATE [Project] SET [label]=''' + @ProxyLabel + ''', [wording]=''' + @ProjectLabel + ''' WHERE [id]=' + CONVERT(nvarchar, @ProjectID) +';' + char(13) + char(10); FETCH NEXT FROM ProjectCursor INTO @ProjectID END CLOSE ProjectCursor DEALLOCATE ProjectCursor -- Read all projects to achieve consistent names DECLARE ProjectCursor CURSOR FOR SELECT [id] FROM [Project] --WHERE [descriptor_id] = @OriginalDescriptorID OPEN ProjectCursor FETCH NEXT FROM ProjectCursor INTO @ProjectID WHILE @@FETCH_STATUS = 0 BEGIN -- Read project data SELECT @ProjectLabel=[label], @ProxyID=[ProjectProxyID] FROM [Project] WHERE [id]=@ProjectID; -- Read proyy data SET @ProxyURI=null; SELECT @ProxyLabel=[Project], @ProxyURI=[ProjectURI] FROM [ProjectProxy] WHERE [ProjectID]=@ProxyID; -- Set consistent labels IF @ProjectLabel<>@ProxyLabel BEGIN IF @ProxyID IN (SELECT [ProjectID] FROM @Unique) BEGIN -- Set project name according project proxy for uniquely assigned projects IF @OnlyCheck=0 UPDATE [Project] SET [label]=@ProxyLabel, [wording]=@ProjectLabel WHERE [id]=@ProjectID; SET @Actions=@Actions + 'UPDATE [Project] SET [label]=''' + @ProxyLabel + ''', [wording]=''' + @ProjectLabel + ''' WHERE [id]=' + CONVERT(nvarchar, @ProjectID) + ';' + char(13) + char(10); END ELSE BEGIN -- Get new ProxyID - negative value for unlinked projects SET @NewProxyID = (SELECT CASE WHEN MIN(ProjectID) > 0 THEN -1 ELSE MIN(ProjectID) - 1 END FROM ProjectProxy); IF @OnlyCheck=0 INSERT INTO [ProjectProxy] ([ProjectID], [Project], [ProjectURI]) VALUES (@NewProxyID, @ProjectLabel, null); SET @Actions=@Actions + 'INSERT INTO [ProjectProxy] ([ProjectID], [Project], [ProjectURI]) VALUES (' + CONVERT(nvarchar, @NewProxyID) + ', ''' + @ProjectLabel + ''', null);' + char(13) + char(10); -- Set access rights IF @OnlyCheck=0 INSERT INTO [ProjectUser] (LoginName, ProjectID, ReadOnly) SELECT [LoginName], @NewProxyID, [ReadOnly] FROM [ProjectUser] WHERE [ProjectID]=@ProxyID; SET @Actions=@Actions + 'INSERT INTO [ProjectUser] (LoginName, ProjectID, ReadOnly) SELECT [LoginName], ' + CONVERT(nvarchar, @NewProxyID) + ', [ReadOnly] FROM [ProjectUser] WHERE [ProjectID]='+ CONVERT(nvarchar, @ProxyID) + ';' + char(13) + char(10); -- Update project IF @OnlyCheck=0 UPDATE [Project] SET [ProjectProxyID]=@NewProxyID WHERE [id]=@ProjectID; SET @Actions=@Actions + 'UPDATE [Project] SET [ProjectProxyID]=' + CONVERT(nvarchar, @NewProxyID) + ' WHERE [id]=' + CONVERT(nvarchar, @ProjectID) + ';' + char(13) + char(10); END END FETCH NEXT FROM ProjectCursor INTO @ProjectID END CLOSE ProjectCursor DEALLOCATE ProjectCursor SELECT @Count=COUNT(*) FROM [ProjectProxy] WHERE [ProjectURI] IS NULL AND NOT [ProjectID] IN (SELECT [ProjectProxyID] FROM [Project]); IF @Count > 0 BEGIN IF @OnlyCheck=0 BEGIN -- Remove unlinked unused project proxies DELETE FROM [ProjectUser] WHERE [ProjectID] IN (SELECT [ProjectID] FROM [ProjectProxy] WHERE [ProjectURI] IS NULL AND NOT [ProjectID] IN (SELECT [ProjectProxyID] FROM [Project])); DELETE FROM [ProjectProxy] WHERE [ProjectURI] IS NULL AND NOT [ProjectID] IN (SELECT [ProjectProxyID] FROM [Project]); END SET @Actions=@Actions + 'DELETE FROM [ProjectUser] WHERE [ProjectID] IN (SELECT [ProjectID] FROM [ProjectProxy] WHERE [ProjectURI] IS NULL AND NOT [ProjectID] IN (SELECT [ProjectProxyID] FROM [Project]));' + char(13) + char(10); SET @Actions=@Actions + 'DELETE FROM [ProjectProxy] WHERE [ProjectURI] IS NULL AND NOT [ProjectID] IN (SELECT [ProjectProxyID] FROM [Project]);' + char(13) + char(10); END SELECT @Actions GO /****** Object: StoredProcedure [dbo].[SetUserProjects] Script Date: 12.01.2023 14:08:43 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- ============================================= -- Author: Anton Link -- Create date: 20210205 -- Description: Create database user and assign -- training projects -- ============================================= CREATE PROCEDURE [dbo].[SetUserProjects] -- Add the parameters for the stored procedure here @User VARCHAR(50) AS BEGIN -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements. SET NOCOUNT ON; -- Insert statements for procedure here DECLARE @SQL NVARCHAR(MAX); DECLARE @Result NVARCHAR(200); DECLARE @DatabaseName NVARCHAR(MAX); DECLARE @DatabaseRole VARCHAR(100); DECLARE @DatabaseUser VARCHAR(100); DECLARE @Workshop INT; DECLARE @Windows INT; SET @DatabaseName=(SELECT DB_NAME()); SET @DatabaseRole=(SELECT TOP 1 [name] FROM [sys].[database_principals] WHERE [type]='R' AND [name] LIKE '%Administrator'); SET @Workshop=(SELECT COUNT(*) FROM [UserProxy] WHERE [LoginName]='Workshop'); SET @Windows=CHARINDEX('\', REVERSE(@User)); SET @Result=''; IF @Windows=0 BEGIN SET @SQL=(SELECT 'USE [' + @DatabaseName + ']; ' + 'SELECT @DatabaseUser = [name] FROM [sys].[database_principals] WHERE [type]=''S'' AND [name]=''' + @User + ''' '); EXECUTE sp_executesql @SQL, N'@DatabaseUser varchar(100) OUTPUT', @DatabaseUser=@DatabaseUser OUTPUT; IF @DatabaseUser IS NULL BEGIN SET @SQL=(SELECT 'USE [' + @DatabaseName + ']; ' + 'SELECT @DatabaseUser = [name] FROM [sys].[database_principals] WHERE [type]=''U'' AND [name] LIKE ''%\' + @User + ''' '); EXECUTE sp_executesql @SQL, N'@DatabaseUser varchar(100) OUTPUT', @DatabaseUser=@DatabaseUser OUTPUT; END END ELSE BEGIN SET @User=REVERSE(SUBSTRING(REVERSE(@User), 1, @Windows)); SET @SQL=(SELECT 'USE [' + @DatabaseName + ']; ' + 'SELECT @DatabaseUser = [name] FROM [sys].[database_principals] WHERE [type]=''U'' AND [name] LIKE ''%' + @User + ''' '); EXECUTE sp_executesql @SQL, N'@DatabaseUser varchar(100) OUTPUT', @DatabaseUser=@DatabaseUser OUTPUT; END IF @DatabaseUser IS NULL BEGIN SET @Result='User ' + @User + ' is not present in database ' + @DatabaseName; END ELSE BEGIN IF NOT @DatabaseRole IS NULL BEGIN SET @SQL=(SELECT 'USE [' + @DatabaseName + ']; ' + 'ALTER ROLE [' + @DatabaseRole + '] ADD MEMBER [' + @DatabaseUser + ']; ') EXEC sp_executesql @SQL SET @Result='Database role ' + @DatabaseRole + ' set for user ' + @DatabaseUser; END SET @SQL=(SELECT 'USE [' + @DatabaseName + ']; ' + 'DELETE FROM [dbo].[ProjectUser] WHERE [LoginName]=''' + @DatabaseUser + ''' ') EXEC sp_executesql @SQL SET @SQL=(SELECT 'USE [' + @DatabaseName + ']; ' + 'DELETE FROM [dbo].[UserProxy] WHERE [LoginName]=''' + @DatabaseUser + ''' ') EXEC sp_executesql @SQL SET @SQL=(SELECT 'USE [' + @DatabaseName + ']; ' + 'INSERT INTO [dbo].[UserProxy] ([LoginName], [CombinedNameCache]) VALUES (''' + @DatabaseUser + ''', ''' + @DatabaseUser + '''); ') EXEC sp_executesql @SQL IF @Workshop > 0 BEGIN SET @SQL=(SELECT 'USE [' + @DatabaseName + ']; ' + 'INSERT INTO [dbo].[ProjectUser] ([LoginName], [ProjectID]) ' + 'SELECT ''' + @DatabaseUser + ''', [ProjectID] FROM [dbo].[ProjectUser] WHERE [LoginName]=''Workshop''; ') EXEC sp_executesql @SQL SET @Result=@Result + '; Workshop projects assigned for user ' + @DatabaseUser; END ELSE BEGIN SET @SQL=(SELECT 'USE [' + @DatabaseName + ']; ' + 'INSERT INTO [dbo].[ProjectUser] ([LoginName], [ProjectID]) ' + 'SELECT ''' + @DatabaseUser + ''', [ProjectID] FROM [dbo].[ProjectProxy] WHERE [ProjectID]>0; ') EXEC sp_executesql @SQL SET @Result=@Result + '; Available projects assigned for user ' + @DatabaseUser; END END EXEC [dbo].[procSetUserAdminProxy]; SELECT @Result END GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reading access to objects related to the cache database' , @level0type=N'USER',@level0name=N'CacheUser' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Read/write access to objects related to cache database' , @level0type=N'USER',@level0name=N'CacheAdmin' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Providing common information about the storage and processing of personal data within the DiversityWorkbench' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'FUNCTION',@level1name=N'PrivacyConsentInfo' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the User as stored in table UserProxy' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'FUNCTION',@level1name=N'UserID' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the user according to table UserProxy' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'FUNCTION',@level1name=N'UserName', @level2type=N'PARAMETER',@level2name=N'@ID' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Providing the name of the user from UserProxy' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'FUNCTION',@level1name=N'UserName' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Annotation', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to object to which the annotation belongs, references BaseEntity (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Annotation', @level2type=N'COLUMN',@level2name=N'object_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Language of annotation text (ISO 639 language code)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Annotation', @level2type=N'COLUMN',@level2name=N'language_code' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Contributors of annotations may be different from contributors of the object that is being annotated. Each annotation has only a single contributor.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Annotation', @level2type=N'COLUMN',@level2name=N'contributor_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the annotation was entered. Annotations are never changed and only the most recent annotation is valid/current.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Annotation', @level2type=N'COLUMN',@level2name=N'timestamp' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Free-form text annotating an object in the database, e.g. a descriptor, state, modifier, description etc.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Annotation', @level2type=N'COLUMN',@level2name=N'content' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Set to 1 if text is a project internal note that should not normally be present on public pages. Goal is reduction of "annotation noise", not confidentiality. At least project contributors will be able to read internals.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Annotation', @level2type=N'COLUMN',@level2name=N'is_internal' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Set to 1 if this annotation is the latest by a given contributor. Annotations can never be changed, but each revision creates a new version. Only the latest version is valid.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Annotation', @level2type=N'COLUMN',@level2name=N'is_latest_revision' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'One record per annotated object (Char, State, Descr. etc.)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Annotation' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal object ID, unique across all tables in database (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BaseEntity', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'References the table name of table entries associated with the BaseEntity; NULL indicates orphaned entries and may be used for garbage collection of otherwise deleted object ids' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BaseEntity', @level2type=N'COLUMN',@level2name=N'table_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'To be used where the licence for an object differs from the default project licence' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BaseEntity', @level2type=N'COLUMN',@level2name=N'specific_rights_text' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'URI of licence, where different from project licence' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BaseEntity', @level2type=N'COLUMN',@level2name=N'specific_licence_uri' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BaseEntity', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BaseEntity', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BaseEntity', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BaseEntity', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The BaseEntity is used within the database to provide unique keys' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BaseEntity' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal object ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BaseEntityTable_Enum', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Name of table that references the BaseEntity table' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BaseEntityTable_Enum', @level2type=N'COLUMN',@level2name=N'table' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The BaseEntityTable_Enum contains the names of tables that reference the BaseEntity table' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BaseEntityTable_Enum' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The name or IP of the server where the cache database is located' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheDatabase', @level2type=N'COLUMN',@level2name=N'Server' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The name of the cache database' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheDatabase', @level2type=N'COLUMN',@level2name=N'DatabaseName' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The port of the server where the cache database is located' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheDatabase', @level2type=N'COLUMN',@level2name=N'Port' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The version of the cache database' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheDatabase', @level2type=N'COLUMN',@level2name=N'Version' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Table holding the cache databases connected to the database' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheDatabase' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheMappingDescription', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the description project (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheMappingDescription', @level2type=N'COLUMN',@level2name=N'project_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the description to which these data belong (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheMappingDescription', @level2type=N'COLUMN',@level2name=N'description_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Mapped key value for the target of the cache database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheMappingDescription', @level2type=N'COLUMN',@level2name=N'target_key' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Table holding the description key mappings for the cache database' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheMappingDescription' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheMappingDescriptor', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the descriptor project (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheMappingDescriptor', @level2type=N'COLUMN',@level2name=N'project_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the descriptor to which these data belong (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheMappingDescriptor', @level2type=N'COLUMN',@level2name=N'descriptor_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Mapped key value for the target of the cache database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheMappingDescriptor', @level2type=N'COLUMN',@level2name=N'target_key' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Highest value of state key. Relevant for key_mapping_level > 0' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheMappingDescriptor', @level2type=N'COLUMN',@level2name=N'last_state_key' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Table holding the descriptor key mappings for the cache database' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheMappingDescriptor' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheMappingState', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the state project (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheMappingState', @level2type=N'COLUMN',@level2name=N'project_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the categorical state to which these data belong (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheMappingState', @level2type=N'COLUMN',@level2name=N'state_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Mapped key value for the target of the cache database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheMappingState', @level2type=N'COLUMN',@level2name=N'target_key' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Table holding the categorical state key mappings for the cache database' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheMappingState' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheProject', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the description project (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheProject', @level2type=N'COLUMN',@level2name=N'project_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Flag for handling of withheld descriptor data. 0=withhold description; 1=withhold descriptor; 2=do not withhold data' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheProject', @level2type=N'COLUMN',@level2name=N'withheld_data_level' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Flag for handling of key mapping. 0=re-build mapping for each update; 1=keep first mapping; 2=additionally take numeric values of alternate ID for items; >2 as 2 but re-initialize table' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheProject', @level2type=N'COLUMN',@level2name=N'key_mapping_level' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Highest value of character key. Relevant for key_mapping_level > 0' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheProject', @level2type=N'COLUMN',@level2name=N'last_char_key' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Highest value of item key. Relevant for key_mapping_level > 0' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheProject', @level2type=N'COLUMN',@level2name=N'last_item_key' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The recent date when data within the project had been changed' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheProject', @level2type=N'COLUMN',@level2name=N'last_changes' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Table holding the project settings for the cache database' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CacheProject' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record, references BaseEntity (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalSamplingData', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the sampling unit (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalSamplingData', @level2type=N'COLUMN',@level2name=N'sampling_unit_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the state (descriptor is implicit in state_id) (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalSamplingData', @level2type=N'COLUMN',@level2name=N'state_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Free-form text detailing special cases or additional data beyond the values' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalSamplingData', @level2type=N'COLUMN',@level2name=N'notes' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Optional reference to a modifier definition (e.g. "strongly", "at the base", "in autumn") (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalSamplingData', @level2type=N'COLUMN',@level2name=N'modifier_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Number of times this category was observed within a single sampling unit' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalSamplingData', @level2type=N'COLUMN',@level2name=N'frequency_value' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalSamplingData', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalSamplingData', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalSamplingData', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalSamplingData', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The categorical data recorded for a sampling event' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalSamplingData' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record, references BaseEntity (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalState', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the descriptor to which the state belongs (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalState', @level2type=N'COLUMN',@level2name=N'descriptor_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Short label (or name) of descriptor state' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalState', @level2type=N'COLUMN',@level2name=N'label' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Abbreviated label of descriptor state' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalState', @level2type=N'COLUMN',@level2name=N'abbreviation' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Additional detail text explaining or commenting on the descriptor state definition' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalState', @level2type=N'COLUMN',@level2name=N'detail' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Optional separate wording for natural language generation (label will be used if this is missing)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalState', @level2type=N'COLUMN',@level2name=N'wording' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'A positive number defining the sequence in which descriptor states are displayed' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalState', @level2type=N'COLUMN',@level2name=N'display_order' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalState', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalState', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalState', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalState', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The categorical states available for categorical descriptors' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalState' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalSummaryData', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the description to which these data belong (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalSummaryData', @level2type=N'COLUMN',@level2name=N'description_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the state (the descriptor is implicit in state_id) (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalSummaryData', @level2type=N'COLUMN',@level2name=N'state_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Free-form text detailing special cases or additional data beyond the values' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalSummaryData', @level2type=N'COLUMN',@level2name=N'notes' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Optional reference to a modifier definition (e.g. "strongly", "at the base", "in autumn") (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalSummaryData', @level2type=N'COLUMN',@level2name=N'modifier_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Optional reference to a frequency modifier definition (e.g. "rarely", "usually", "mostly") (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalSummaryData', @level2type=N'COLUMN',@level2name=N'frequency_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalSummaryData', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalSummaryData', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalSummaryData', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalSummaryData', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The categorical data of a description' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CategoricalSummaryData' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Contribution', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to an object which the contributor has created or contributed to, references BaseEntity (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Contribution', @level2type=N'COLUMN',@level2name=N'object_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to a contributor (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Contribution', @level2type=N'COLUMN',@level2name=N'contributor_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'TODO: expand enumeration, perhaps rather as linked vocabulary?' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Contribution', @level2type=N'COLUMN',@level2name=N'role' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time of a contribution' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Contribution', @level2type=N'COLUMN',@level2name=N'timestamp' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Multiple contributors may contribute in different roles' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Contribution' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Contributor', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'User’s email address' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Contributor', @level2type=N'COLUMN',@level2name=N'email' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Optional alternative name to display publicly on the web' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Contributor', @level2type=N'COLUMN',@level2name=N'web_pseudonym' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Optional URI to an image representing the user' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Contributor', @level2type=N'COLUMN',@level2name=N'avatar_uri' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Optional name the user gave (full name)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Contributor', @level2type=N'COLUMN',@level2name=N'real_name' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Linking to agents managed in an external component' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Contributor', @level2type=N'COLUMN',@level2name=N'linked_agent_uri' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'People contibuting to a work. Roles are recorded in Contribution' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Contributor' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record, references BaseEntity (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DataStatus_Enum', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Short label (or name) of data status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DataStatus_Enum', @level2type=N'COLUMN',@level2name=N'label' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Code of data status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DataStatus_Enum', @level2type=N'COLUMN',@level2name=N'code' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Single (intuitive) character' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DataStatus_Enum', @level2type=N'COLUMN',@level2name=N'abbreviation' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Additional detail text explaining or commenting on the data status definition' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DataStatus_Enum', @level2type=N'COLUMN',@level2name=N'detail' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Values of data status used for descriptions according to SDD 1.1 rev 5' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DataStatus_Enum' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record, references BaseEntity (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Description', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Short label (or name) of description' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Description', @level2type=N'COLUMN',@level2name=N'label' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Additional detail text explaining or commenting on the description definition' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Description', @level2type=N'COLUMN',@level2name=N'detail' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Each description belongs to exactly one project that determines its terminology (required, foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Description', @level2type=N'COLUMN',@level2name=N'project_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Description', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Description', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Description', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Description', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Optional alternate id of a description item - should be unique within one project, but not checked by database' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Description', @level2type=N'COLUMN',@level2name=N'alternate_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Optional separate wording for natural language generation (label will be used if this is missing)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Description', @level2type=N'COLUMN',@level2name=N'wording' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The description in the database' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Description' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptionProject', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the description that belongs to the project (required, foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptionProject', @level2type=N'COLUMN',@level2name=N'description_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the project to which the description belongs (required, foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptionProject', @level2type=N'COLUMN',@level2name=N'project_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptionProject', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptionProject', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptionProject', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptionProject', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The projects where descriptions are accessible' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptionProject' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptionScope', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the description to which these data belong (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptionScope', @level2type=N'COLUMN',@level2name=N'description_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Short label (or name) of scope' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptionScope', @level2type=N'COLUMN',@level2name=N'label' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to DiversityWorkbench component' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptionScope', @level2type=N'COLUMN',@level2name=N'dwbURI' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Scope type ("GeographicArea", "SamplingPlot", "Citation", "Observation", "Specimen", "TaxonName", "OtherConcept", "Stage", "Part" or "Sex")' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptionScope', @level2type=N'COLUMN',@level2name=N'type' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to further scopes, e.g. stage, sex etc. (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptionScope', @level2type=N'COLUMN',@level2name=N'other_scope_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptionScope', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptionScope', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptionScope', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptionScope', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The scope of the description' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptionScope' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record, references BaseEntity (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Short label (or name) of descriptor' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'label' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Abbreviated label of descriptor' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'abbreviation' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Additional detail text explaining or commenting on the descriptor definition' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'detail' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'A positive number defining the sequence in which descriptors are displayed' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'display_order' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The four character subclasses of SDD are all combined here in one entity and distinguished by this attribute ("categorical", "quantitative", "text" or "sequence")' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'subclass' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Scale of descriptor: Categorical may be nominal (unordered, “red/green/blue”) or ordinal (ordered, “bad/medium/good”); Quantitative may be interval (°C) or ratio (mass, length, time, K)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'statistical_measurement_scale' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Applicable to categorical (nominal/ordinal) descriptors only. If usually exclusive = 1, then by default the user interface allows only entering one state. Nevertheless, multiple states in the data are valid.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'usually_exclusive' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Handling of multiple values: OrSet/AndSet: unordered set combined with or/and, OrSeq/AndSeq: ordered sequence combined with or/and, WithSeq: example is “green with brown”, Between: an example is “oval to elliptic”' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'state_collection_model' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Is the scoring of this descriptor mandatory (required) in each item?' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'mandatory' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'How reliable and consistent are repeated measurements or scorings of the descriptor by different observers and on different objects? ("ignore", "very low", "low", "below average", "slightly below average", "standard", "slightly above average", "above average", "high" or "very high")' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'repeatability' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'How available is the descriptor or concept for identification? ("ignore", "very low", "low", "below average", "slightly below average", "standard", "slightly above average", "above average", "high" or "very high")' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'availability' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'A measurement unit (mm, inch, kg, °C, m/s etc.) or dimensionless scaling factor' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'measurement_unit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Set to 1 if the measurement unit precedes the value' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'measurement_unit_precedes_value' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Set to 1 if the values are integer' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'values_are_integer' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Applicable to quantitative descriptors only; in support of a plausibility check for values. Example: for tree height this could be 0, i.e. only positive values allowed' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'min_plausible_value' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Applicable to quantitative descriptors only; in support of a plausibility check for values. Example: for tree height this could be 99' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'max_plausible_value' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Type of molecular sequence, "Nucleotide" or "Protein". The value "Nucleotide" covers RNA and DNA sequences' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'sequence_type' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The number of letters in each symbol. Nucleotides are always codes with 1-letter symbols, but proteins may use 1 or 3-letter codes (e.g. A or Ala for alanine)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'symbol_length' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Set to 1 if ambiguity symbols are supported in the sequence string, e.g. R, Y, S, W for nucleotides or B, Z for proteins' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'enable_ambiguity_symbols' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'A string identifying the "gap" symbol used in aligned sequences. The gap symbol must always be symbol_length long' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'gap_symbol' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Representation for natural language output, inserted before the states/value' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'wording_before' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Representation for natural language output, inserted after the states/value' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'wording_after' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'A note or prompt when entering or dealing with data' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'data_entry_note' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Optional separate wording for natural language generation (label will be used if this is missing)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor', @level2type=N'COLUMN',@level2name=N'wording' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Descriptor (= characters, features) define variables' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Descriptor' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorInapplicability', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the descriptor to which the rule will apply, e.g. which will be inapplicable if controlling state applies to the same description (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorInapplicability', @level2type=N'COLUMN',@level2name=N'controlled_descriptor_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the controlling categorical state; if present in a description, controlled descriptor is affected according to rule' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorInapplicability', @level2type=N'COLUMN',@level2name=N'controlling_state_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The kind of rule creating a descriptor inapplicability ("inapplicable-if", "applicable-if", "inapplicable-computed-from-applicable")' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorInapplicability', @level2type=N'COLUMN',@level2name=N'rule' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorInapplicability', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorInapplicability', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorInapplicability', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorInapplicability', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The descriptor dependency rules' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorInapplicability' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorMapping_C2C', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to a categorical state that shall be mapped to target state' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorMapping_C2C', @level2type=N'COLUMN',@level2name=N'from_state_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to a categorical state that shall be the target state' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorMapping_C2C', @level2type=N'COLUMN',@level2name=N'to_state_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Mapping of a categorical state to another categorical state' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorMapping_C2C' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorMapping_Q2C', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to quantitative descriptor that shall be mapped' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorMapping_Q2C', @level2type=N'COLUMN',@level2name=N'from_descr_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to a categorical state that shall be the target state' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorMapping_Q2C', @level2type=N'COLUMN',@level2name=N'to_state_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Mapping of a quantitative descriptor to a categorical state' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorMapping_Q2C' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorStatusData', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the description to which these data belong (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorStatusData', @level2type=N'COLUMN',@level2name=N'description_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the descriptor to which the status value belongs (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorStatusData', @level2type=N'COLUMN',@level2name=N'descriptor_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to a status definition. Status is like a marker why data is missing or in need of revision (examples: "unknown", "not applicable", "to be checked", "data withheld" etc.) (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorStatusData', @level2type=N'COLUMN',@level2name=N'datastatus_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Free-form text detailing additional information (rarely used, not multilingual)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorStatusData', @level2type=N'COLUMN',@level2name=N'notes' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorStatusData', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorStatusData', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorStatusData', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorStatusData', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The status data of a descriptor for a certain description' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorStatusData' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record, references BaseEntity (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTree', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Set to 1 if this tree includes the largest possible set of descriptors for the taxon set associated with a project (i.e. the "master-descriptor tree", other trees being subsets)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTree', @level2type=N'COLUMN',@level2name=N'is_complete' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Short label (or name) of descriptor tree' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTree', @level2type=N'COLUMN',@level2name=N'label' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'"mixed", "part-of", "property" or "generalization"' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTree', @level2type=N'COLUMN',@level2name=N'type' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Each tree belongs to exactly one project (required, foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTree', @level2type=N'COLUMN',@level2name=N'project_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTree', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTree', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTree', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTree', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The root and definition of a descriptor tree' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTree' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record, references BaseEntity (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNode', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to a parent node, creating a true tree; NULL for a root node (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNode', @level2type=N'COLUMN',@level2name=N'parent_node_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Short label (or name) of internal node associated with a concept; NULL for a descriptor node' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNode', @level2type=N'COLUMN',@level2name=N'label' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Abbreviated label of node' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNode', @level2type=N'COLUMN',@level2name=N'abbreviation' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'A positive number defining the sequence in which child nodes are displayed' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNode', @level2type=N'COLUMN',@level2name=N'display_order' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to a descriptor tree; all nodes must have a direct link to the tree definition (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNode', @level2type=N'COLUMN',@level2name=N'descriptortree_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to a descriptor; NULL if the present node is an inner concept node defining a hierarchy of nodes or descriptors (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNode', @level2type=N'COLUMN',@level2name=N'descriptor_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Additional detail text explaining or commenting on the node definition' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNode', @level2type=N'COLUMN',@level2name=N'detail' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNode', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNode', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNode', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNode', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The descriptor tree nodes representing either nodes of the tree or descriptors ("leafes" of the tree)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNode' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecFrequency', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the descriptor tree node (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecFrequency', @level2type=N'COLUMN',@level2name=N'node_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the recommended frequency modifier (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecFrequency', @level2type=N'COLUMN',@level2name=N'frequency_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecFrequency', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecFrequency', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecFrequency', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecFrequency', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Selection of recommended frequency values for descriptor tree parts or single descriptors' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecFrequency' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecModifier', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the descriptor tree node (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecModifier', @level2type=N'COLUMN',@level2name=N'node_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the recommended modifier (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecModifier', @level2type=N'COLUMN',@level2name=N'modifier_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecModifier', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecModifier', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecModifier', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecModifier', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Selection of recommended modifier values for descriptor tree parts or single descriptors' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecModifier' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecStatMeasure', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the descriptor tree node (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecStatMeasure', @level2type=N'COLUMN',@level2name=N'node_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the recommended measure (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecStatMeasure', @level2type=N'COLUMN',@level2name=N'measure_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecStatMeasure', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecStatMeasure', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecStatMeasure', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecStatMeasure', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Selection of recommended statistical measures for descriptor tree parts or single descriptors' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DescriptorTreeNodeRecStatMeasure' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record, references BaseEntity (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Frequency', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Short label (or name) of frequency modifier (e.g. "very rare", "rare", "usually" etc.)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Frequency', @level2type=N'COLUMN',@level2name=N'label' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Each frequency modifier defines a frequency range, this is the estimated lowest frequency' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Frequency', @level2type=N'COLUMN',@level2name=N'lower_estimate' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'As above, estimate of upper range for the border; note: ranges may overlap!' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Frequency', @level2type=N'COLUMN',@level2name=N'upper_estimate' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'A positive number defining the sequence in which frequency modifiers are to be displayed' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Frequency', @level2type=N'COLUMN',@level2name=N'display_order' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Frequency', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Frequency', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Frequency', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Frequency', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Definition of frequency modifier values' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Frequency' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to object that is identified by the uri, references BaseEntity (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Identifier', @level2type=N'COLUMN',@level2name=N'object_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'URI (globally unique identifier, including IRIs) for the object (descriptor/character, taxon, etc.). Local IDs should be entered using a consistent method (e.g. if organisation x uses local id "char 123" create "x.org:EXTERNAL_LINK:char:123")' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Identifier', @level2type=N'COLUMN',@level2name=N'uri' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Match of URI to linked object, see definitions according to skos:exactMatch etc.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Identifier', @level2type=N'COLUMN',@level2name=N'match' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Objects may have multiple external identifiers' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Identifier' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ImportMapping', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the object to which the mapping belongs, references BaseEntity (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ImportMapping', @level2type=N'COLUMN',@level2name=N'object_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the import session to which the mapping belongs, references ImportMapping (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ImportMapping', @level2type=N'COLUMN',@level2name=N'session_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Name of the import table' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ImportMapping', @level2type=N'COLUMN',@level2name=N'table_name' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Symbolic key of the parent table' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ImportMapping', @level2type=N'COLUMN',@level2name=N'parent_key' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'External key in the import file' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ImportMapping', @level2type=N'COLUMN',@level2name=N'external_key' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The import mappings to support mapping of external file keys to database keys' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ImportMapping' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ImportSession', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Each import session belongs to exactly one project (required, foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ImportSession', @level2type=N'COLUMN',@level2name=N'project_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Detail text explaining the import session definition' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ImportSession', @level2type=N'COLUMN',@level2name=N'detail' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the import session was created' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ImportSession', @level2type=N'COLUMN',@level2name=N'create_timestamp' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the import session was updated' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ImportSession', @level2type=N'COLUMN',@level2name=N'update_timestamp' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The import sessions to support import of data spread over several files' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ImportSession' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record, references BaseEntity (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Modifier', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Grouping of modifiers into classes ("Certainty", "Seasonal", "Diurnal", "TreatAsMisinterpretation" or "OtherModifierClass")' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Modifier', @level2type=N'COLUMN',@level2name=N'class' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Short label (or name) of modifier (e.g. "strong", "probably" etc.)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Modifier', @level2type=N'COLUMN',@level2name=N'label' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'A positive number defining the sequence in which modifiers are to be displayed' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Modifier', @level2type=N'COLUMN',@level2name=N'display_order' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Modifier', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Modifier', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Modifier', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Modifier', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Definition of modifier values' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Modifier' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'MolecularSequenceData', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to description to which these data belong (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'MolecularSequenceData', @level2type=N'COLUMN',@level2name=N'description_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to a molecular sequence descriptor to which the sequence text belongs (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'MolecularSequenceData', @level2type=N'COLUMN',@level2name=N'descriptor_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Molecular sequence text referring to information on one descriptor' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'MolecularSequenceData', @level2type=N'COLUMN',@level2name=N'sequence' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Free-form text detailing special cases or additional data beyond the values ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'MolecularSequenceData', @level2type=N'COLUMN',@level2name=N'notes' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'MolecularSequenceData', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'MolecularSequenceData', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'MolecularSequenceData', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'MolecularSequenceData', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The molecular sequence data of a description' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'MolecularSequenceData' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'MolecularSequenceSamplingData', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to a sampling unit (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'MolecularSequenceSamplingData', @level2type=N'COLUMN',@level2name=N'sampling_unit_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to a molecular sequence descriptor to which the sequence text belongs (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'MolecularSequenceSamplingData', @level2type=N'COLUMN',@level2name=N'descriptor_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Molecular sequence text referring to information on one descriptor' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'MolecularSequenceSamplingData', @level2type=N'COLUMN',@level2name=N'sequence' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Free-form text detailing special cases or additional data beyond the values ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'MolecularSequenceSamplingData', @level2type=N'COLUMN',@level2name=N'notes' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'MolecularSequenceSamplingData', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'MolecularSequenceSamplingData', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'MolecularSequenceSamplingData', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'MolecularSequenceSamplingData', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The molecular sequence data recorded for a sampling event' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'MolecularSequenceSamplingData' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record, references BaseEntity (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OtherScope', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Short label (or name) of scope (e.g. "male", "female", "adult", "juvenile" etc.)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OtherScope', @level2type=N'COLUMN',@level2name=N'label' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Additional detail text explaining or commenting on the scope and delimitation of the present description' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OtherScope', @level2type=N'COLUMN',@level2name=N'detail' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Describes the scope type ("sex", "stage", "part" or "other")' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OtherScope', @level2type=N'COLUMN',@level2name=N'type' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to sex status value according SDD V5.1 (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OtherScope', @level2type=N'COLUMN',@level2name=N'sex_status_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OtherScope', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OtherScope', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OtherScope', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OtherScope', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Scope values for description scope values for scope types "Other scope", "Part", "Stage" and "Sex"' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OtherScope' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record, references BaseEntity (primary key) ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Project', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to a parent project, creating a subproject; NULL for a root project (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Project', @level2type=N'COLUMN',@level2name=N'parent_project_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Short label (or name) of project (or subproject); each project defines a separate work environment within a shared database by means of defining sets of descriptors (through DescriptorTree)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Project', @level2type=N'COLUMN',@level2name=N'label' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The default rights and licence statement for the entire project; BaseEntity provides means to override this for individual objects' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Project', @level2type=N'COLUMN',@level2name=N'rights_text' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'URI of licence for the project; BaseEntity provides means to override this for individual objects' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Project', @level2type=N'COLUMN',@level2name=N'licence_uri' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Additional detail text explaining or commenting on the project (or subproject)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Project', @level2type=N'COLUMN',@level2name=N'detail' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Language of primary text version (fields directly in tables, may be translated in table Translation); Examples: "de", "en" etc. (ISO 639 language code)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Project', @level2type=N'COLUMN',@level2name=N'primary_language_code' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to a project definition of DiversityProjects that allows control of access rights' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Project', @level2type=N'COLUMN',@level2name=N'ProjectProxyID' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Project', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Project', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Project', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Project', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Optional separate wording for natural language generation and cache database (label will be used if this is missing)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Project', @level2type=N'COLUMN',@level2name=N'wording' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Projects define separated workareas in a single database' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Project' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Project_AvailableScope', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the project for which a shall be available (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Project_AvailableScope', @level2type=N'COLUMN',@level2name=N'project_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to a scope definition in OtherScope (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Project_AvailableScope', @level2type=N'COLUMN',@level2name=N'scope_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Project_AvailableScope', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Project_AvailableScope', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Project_AvailableScope', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Project_AvailableScope', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Scope values available for a certain project' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Project_AvailableScope' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the project to which the specimen belongs (Projects are defined in DiversityProjects)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProjectProxy', @level2type=N'COLUMN',@level2name=N'ProjectID' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The name or title of the project as shown in a user interface (Projects are defined in DiversityProjects)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProjectProxy', @level2type=N'COLUMN',@level2name=N'Project' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'URI of a project in a remote module, e.g. refering to database DiversityProjects' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProjectProxy', @level2type=N'COLUMN',@level2name=N'ProjectURI' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The projects as stored in the module DiversityProjects' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProjectProxy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'A login name which the user uses for access the DivesityWorkbench, Microsoft domains, etc..' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProjectUser', @level2type=N'COLUMN',@level2name=N'LoginName' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the project defined in DiversityProjects - negative value for local project' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProjectUser', @level2type=N'COLUMN',@level2name=N'ProjectID' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'If the user has only read access to data of this project' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProjectUser', @level2type=N'COLUMN',@level2name=N'ReadOnly' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The projects that a user can access' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProjectUser' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSamplingData', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Optional statistical measure (minimum, mean, maximum, ranges, sample size, variance etc.) recorded in value; if NULL, value is a direct measurement (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSamplingData', @level2type=N'COLUMN',@level2name=N'measure_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to a sampling unit (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSamplingData', @level2type=N'COLUMN',@level2name=N'sampling_unit_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to descriptor which the values record (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSamplingData', @level2type=N'COLUMN',@level2name=N'descriptor_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The value for the statistical measure or single measurement/recording' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSamplingData', @level2type=N'COLUMN',@level2name=N'value' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Free-form text detailing special cases or additional data beyond the values' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSamplingData', @level2type=N'COLUMN',@level2name=N'notes' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Optional reference to a modifier definition (e.g. "strongly", "at the base", "in autumn") (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSamplingData', @level2type=N'COLUMN',@level2name=N'modifier_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSamplingData', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSamplingData', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSamplingData', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSamplingData', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The quantitative data recorded for a sampling event' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSamplingData' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSummaryData', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the statistical measure (minimum, mean, maximum, ranges, sample size, variance etc.) recorded in value (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSummaryData', @level2type=N'COLUMN',@level2name=N'measure_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the description to which these data belong (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSummaryData', @level2type=N'COLUMN',@level2name=N'description_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the descriptor which the values record (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSummaryData', @level2type=N'COLUMN',@level2name=N'descriptor_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The value of the statistical measure' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSummaryData', @level2type=N'COLUMN',@level2name=N'value' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Free-form text detailing special cases or additional data beyond the values' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSummaryData', @level2type=N'COLUMN',@level2name=N'notes' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Optional reference to a modifier definition (e.g. "strongly", "at the base", "in autumn") (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSummaryData', @level2type=N'COLUMN',@level2name=N'modifier_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSummaryData', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSummaryData', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSummaryData', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSummaryData', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The quantitative data of a description' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'QuantitativeSummaryData' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record, references BaseEntity (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Role in relation to descriptors or states ("unknown"=role not known or not specified; "diagnostic"=optimized for identification; "iconic"=icon/thumbnail, needs text; "normative"=defines a resource object; "primary"=display always, informative without text; "secondary"=display only on request)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource', @level2type=N'COLUMN',@level2name=N'terminology_role' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Ranking of the resource with respect to terminology; range: 0 to 10' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource', @level2type=N'COLUMN',@level2name=N'ranking_for_terminology' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Optional reference to a descriptor (at least 1 of description_id, node_id, descriptor_id, state_id or taxon_id must be present) (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource', @level2type=N'COLUMN',@level2name=N'descriptor_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Optional reference to a categorical state (at least 1 of description_id, node_id, descriptor_id, state_id or taxon_id must be present) (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource', @level2type=N'COLUMN',@level2name=N'state_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Role in relation to taxa or descriptions ("unknown"=role not known or not specified; "diagnostic"=optimized for identification; "iconic"=icon/thumbnail, needs text; "normative"=defines a resource object; "primary"=display always, informative without text; "secondary"=display only on request)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource', @level2type=N'COLUMN',@level2name=N'taxon_role' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Ranking of the resource with respect to taxa or descriptions; range: 0 to 10' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource', @level2type=N'COLUMN',@level2name=N'ranking_for_taxon_use' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Optional reference to a taxon (at least 1 of description_id, node_id, descriptor_id, state_id or taxon_id must be present) (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource', @level2type=N'COLUMN',@level2name=N'taxon_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Optional reference to a description (at least 1 of description_id, node_id, descriptor_id, state_id or taxon_id must be present) (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource', @level2type=N'COLUMN',@level2name=N'description_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the scope of the resource (e.g. "sex", "stage", "season" etc.)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource', @level2type=N'COLUMN',@level2name=N'scope_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'false/0: display as link, true/1: display as embedded media object' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource', @level2type=N'COLUMN',@level2name=N'display_embedded' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Short label of (or caption for) the resource, e.g. a text displayed below an image or instead of the link' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource', @level2type=N'COLUMN',@level2name=N'label' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Additional detail text explaining or commenting on the resource definition' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource', @level2type=N'COLUMN',@level2name=N'detail' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Language of the resource itself, use zxx for language neutral/no linguistic content (ISO 639-1)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource', @level2type=N'COLUMN',@level2name=N'language_code' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The rights and licence statement for the resource' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource', @level2type=N'COLUMN',@level2name=N'rights_text' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'URI of licence for the resource' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource', @level2type=N'COLUMN',@level2name=N'licence_uri' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'A positive number defining the sequence in which multiple resources are displayed' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource', @level2type=N'COLUMN',@level2name=N'display_order' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Optional reference to a descriptor tree node (at least 1 of description_id, node_id, descriptor_id, state_id or taxon_id must be present) (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource', @level2type=N'COLUMN',@level2name=N'node_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Hyperlinks to separate rich text/media objects' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Resource' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record, references BaseEntity (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ResourceVariant', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the resource to which these variants provide access points (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ResourceVariant', @level2type=N'COLUMN',@level2name=N'resource_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the definition of a variant class e.g. "tiny sample", "small sample", "lower quality", "medium quality", "good quality" or "best quality" (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ResourceVariant', @level2type=N'COLUMN',@level2name=N'variant_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'URL of the resource variant' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ResourceVariant', @level2type=N'COLUMN',@level2name=N'url' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Where applicable (still- or moving image): the width in pixel' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ResourceVariant', @level2type=N'COLUMN',@level2name=N'pixel_width' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Where applicable (still- or moving image): the height in pixel' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ResourceVariant', @level2type=N'COLUMN',@level2name=N'pixel_height' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Where applicable (sound or moving image): the duration in seconds' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ResourceVariant', @level2type=N'COLUMN',@level2name=N'duration' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The size of the resource in bytes' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ResourceVariant', @level2type=N'COLUMN',@level2name=N'size' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Type of the resource as MIME type like image/jpeg; color as color/hexrgb' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ResourceVariant', @level2type=N'COLUMN',@level2name=N'mime_type' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ResourceVariant', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ResourceVariant', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ResourceVariant', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ResourceVariant', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Different resource variants/instances/service access points' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ResourceVariant' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record, references BaseEntity (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ResourceVariant_Enum', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Short label (or name) of resource variant class ("tiny sample", "small sample", "lower quality", "medium quality", "good quality" or "best quality")' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ResourceVariant_Enum', @level2type=N'COLUMN',@level2name=N'label' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Brief code equivalent to the (longer) label' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ResourceVariant_Enum', @level2type=N'COLUMN',@level2name=N'code' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Additional detail text explaining the resource variant class' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ResourceVariant_Enum', @level2type=N'COLUMN',@level2name=N'detail' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'A positive number providing a filter mechanism for "tiny sample" to "best quality"; the smaller the number, the less quality a resource has' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ResourceVariant_Enum', @level2type=N'COLUMN',@level2name=N'quality_order' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Classes for resource variants, values are predefined in the database' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ResourceVariant_Enum' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingEvent', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the description to which these sampling data belong (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingEvent', @level2type=N'COLUMN',@level2name=N'description_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Free-form text identifying a sampling event to humans. Sampling events have time, location, perhaps purpose and act as a container for multiple sampling units.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingEvent', @level2type=N'COLUMN',@level2name=N'label' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Free-form text giving detail or description of sampling event' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingEvent', @level2type=N'COLUMN',@level2name=N'detail' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the event occurred; single point or start of duration' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingEvent', @level2type=N'COLUMN',@level2name=N'date_time' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Optional end of a time span or duration within which or during which the event occurred' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingEvent', @level2type=N'COLUMN',@level2name=N'datetimespan_end' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'A geographic area at which the event occurred' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingEvent', @level2type=N'COLUMN',@level2name=N'geographic_area' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to a geographic area in DiversityGazetteers' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingEvent', @level2type=N'COLUMN',@level2name=N'geographic_area_uri' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Latitude of geographical coordinates in signed decimal degrees' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingEvent', @level2type=N'COLUMN',@level2name=N'coord_dec_latitude' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Longitude of geographical coordinates in decimal degrees' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingEvent', @level2type=N'COLUMN',@level2name=N'coord_dec_longitude' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Free-form string, either in addition to or instead of code (a mapping to the controlled vocabulary may be unavailable or considered ambiguous)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingEvent', @level2type=N'COLUMN',@level2name=N'coord_literal' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Optional, only where knowledge of the geodetic datum is readily available; defaults to WGS84 used in GPS' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingEvent', @level2type=N'COLUMN',@level2name=N'coord_geodeticdatum' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingEvent', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingEvent', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingEvent', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingEvent', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'A sampling event may contain many sampling units' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingEvent' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingUnit', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to a sampling event; keeps paired measurements together (several categorical or quantitative observations at the same time on the same object or object part) (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingUnit', @level2type=N'COLUMN',@level2name=N'sampling_event_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'A collection specimen that is represented by the sampling unit' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingUnit', @level2type=N'COLUMN',@level2name=N'collection_specimen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to a collection specimen in DiversityCollection' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingUnit', @level2type=N'COLUMN',@level2name=N'collection_specimen_uri' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingUnit', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingUnit', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingUnit', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingUnit', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Sampling unit data' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SamplingUnit' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record, references BaseEntity (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SexStatus_Enum', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Short label (or name) of sex status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SexStatus_Enum', @level2type=N'COLUMN',@level2name=N'label' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Code of sex status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SexStatus_Enum', @level2type=N'COLUMN',@level2name=N'code' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'One or two (intuitive) characters' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SexStatus_Enum', @level2type=N'COLUMN',@level2name=N'abbreviation' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Additional detail text explaining or commenting on the sex status definition' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SexStatus_Enum', @level2type=N'COLUMN',@level2name=N'detail' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'A positive number defining the sequence in which sex status values are displayed' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SexStatus_Enum', @level2type=N'COLUMN',@level2name=N'display_order' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Values of sex status predefined according to SDD 1.1 rev 5' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'SexStatus_Enum' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record, references BaseEntity (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StatisticalMeasure_Enum', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Short label (or name) of statistical measure' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StatisticalMeasure_Enum', @level2type=N'COLUMN',@level2name=N'label' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Code of statistical measure according SDD 1.1 rev 5' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StatisticalMeasure_Enum', @level2type=N'COLUMN',@level2name=N'code' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Abbreviation of statistical measure' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StatisticalMeasure_Enum', @level2type=N'COLUMN',@level2name=N'abbreviation' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'A positive number defining the sequence in which statistical measures are displayed' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StatisticalMeasure_Enum', @level2type=N'COLUMN',@level2name=N'display_order' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Name of user who first entered (typed or imported) the data.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StatisticalMeasure_Enum', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StatisticalMeasure_Enum', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Name of user who last updated the data.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StatisticalMeasure_Enum', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StatisticalMeasure_Enum', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The statistical measures predefined according SDD 1.1 rev 5' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StatisticalMeasure_Enum' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Tag', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Tag (= keyword) to categorize objects like descriptors, states, descriptions' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Tag', @level2type=N'COLUMN',@level2name=N'tag' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to object to which the tag belongs, references BaseEntity (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Tag', @level2type=N'COLUMN',@level2name=N'object_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Objects may have multiple tags (= keywords)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Tag' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TextDescriptorData', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to description to which these data belong (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TextDescriptorData', @level2type=N'COLUMN',@level2name=N'description_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to a text descriptor to which the free-form text belongs (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TextDescriptorData', @level2type=N'COLUMN',@level2name=N'descriptor_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Free-form text referring to information on one descriptor' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TextDescriptorData', @level2type=N'COLUMN',@level2name=N'content' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Free-form text detailing special cases or additional data beyond the values ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TextDescriptorData', @level2type=N'COLUMN',@level2name=N'notes' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TextDescriptorData', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TextDescriptorData', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TextDescriptorData', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TextDescriptorData', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The text data of a description' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TextDescriptorData' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TextSamplingData', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to a sampling unit (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TextSamplingData', @level2type=N'COLUMN',@level2name=N'sampling_unit_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to descriptor to which the free-form text belongs (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TextSamplingData', @level2type=N'COLUMN',@level2name=N'descriptor_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Free-form text referring to information on one descriptor' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TextSamplingData', @level2type=N'COLUMN',@level2name=N'content' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Free-form text detailing special cases or additional data beyond the data' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TextSamplingData', @level2type=N'COLUMN',@level2name=N'notes' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TextSamplingData', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TextSamplingData', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TextSamplingData', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TextSamplingData', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Free-form text data recorded for a sampling event' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TextSamplingData' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Translation', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Reference to the object to which the translation belongs, references BaseEntity (foreign key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Translation', @level2type=N'COLUMN',@level2name=N'object_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Language of representation translation (ISO 639 language code)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Translation', @level2type=N'COLUMN',@level2name=N'language_code' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'References the translated column name' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Translation', @level2type=N'COLUMN',@level2name=N'column_id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Translated contents' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Translation', @level2type=N'COLUMN',@level2name=N'contents' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the creator of this data set' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Translation', @level2type=N'COLUMN',@level2name=N'LogInsertedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were first entered (typed or imported) into this database.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Translation', @level2type=N'COLUMN',@level2name=N'LogInsertedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the person to update this data set last' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Translation', @level2type=N'COLUMN',@level2name=N'LogUpdatedBy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time when the data were last updated.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Translation', @level2type=N'COLUMN',@level2name=N'LogUpdatedWhen' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The translations of entries related to BaseEntity' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Translation' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Database-internal object ID of this record (primary key)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TranslationColumn_Enum', @level2type=N'COLUMN',@level2name=N'id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Name of column that is translated in the Translation table' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TranslationColumn_Enum', @level2type=N'COLUMN',@level2name=N'column' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The TranslationColumn_Enum contains the column names that are translated in the Translation table' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'TranslationColumn_Enum' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'A login name which the user uses for access the DivesityWorkbench, Microsoft domains, etc..' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'UserProxy', @level2type=N'COLUMN',@level2name=N'LoginName' GO EXEC sys.sp_addextendedproperty @name=N'MS_DisplayControl', @value=N'109' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'UserProxy', @level2type=N'COLUMN',@level2name=N'LoginName' GO EXEC sys.sp_addextendedproperty @name=N'MS_Format', @value=N'' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'UserProxy', @level2type=N'COLUMN',@level2name=N'LoginName' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The short name of the user, e.g. P. Smith' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'UserProxy', @level2type=N'COLUMN',@level2name=N'CombinedNameCache' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'URI of a user in a remote module, e.g. refering to database DiversityAgents' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'UserProxy', @level2type=N'COLUMN',@level2name=N'AgentURI' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Queries created by the user' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'UserProxy', @level2type=N'COLUMN',@level2name=N'Queries' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID of the user' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'UserProxy', @level2type=N'COLUMN',@level2name=N'ID' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'If the user consents the storage of his user name in the database' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'UserProxy', @level2type=N'COLUMN',@level2name=N'PrivacyConsent' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The time and date when the user consented or refused the storage of his user name in the database' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'UserProxy', @level2type=N'COLUMN',@level2name=N'PrivacyConsentDate' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The user as stored in the module DiversityAgents' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'UserProxy' GO