Created
September 29, 2013 00:15
-
-
Save WilliamDoman/6748027 to your computer and use it in GitHub Desktop.
teamcity 8.x database build for Azure Web
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /****** Object: Table [dbo].[working_server] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[working_server]( | |
| [starting_code] [bigint] NOT NULL, | |
| [starting_time] [datetime] NULL, | |
| [ip_address] [varchar](15) NULL, | |
| [application_info] [varchar](80) NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [working_server_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[vcs_root_instance] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[vcs_root_instance]( | |
| [id] [int] NOT NULL, | |
| [parent_id] [int] NOT NULL, | |
| [settings_hash] [bigint] NOT NULL, | |
| [body] [varchar](max) NULL, | |
| CONSTRAINT [vcs_root_instance_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [vcs_root_instance_hash_idx] ON [dbo].[vcs_root_instance] | |
| ( | |
| [settings_hash] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [vcs_root_instance_parent_idx] ON [dbo].[vcs_root_instance] | |
| ( | |
| [parent_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[vcs_root_first_revision] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[vcs_root_first_revision]( | |
| [build_type_id] [varchar](80) NOT NULL, | |
| [parent_root_id] [bigint] NOT NULL, | |
| [settings_hash] [bigint] NOT NULL, | |
| [vcs_revision] [varchar](200) NOT NULL, | |
| CONSTRAINT [vcs_settings_hash_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_type_id] ASC, | |
| [parent_root_id] ASC, | |
| [settings_hash] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[vcs_root] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[vcs_root]( | |
| [int_id] [bigint] NOT NULL, | |
| [ext_id] [varchar](80) NOT NULL, | |
| CONSTRAINT [vcs_root_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [int_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [vcs_root_ak] UNIQUE NONCLUSTERED | |
| ( | |
| [ext_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[vcs_history] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[vcs_history]( | |
| [modification_id] [bigint] NOT NULL, | |
| [user_name] [varchar](255) NULL, | |
| [description] [varchar](max) NULL, | |
| [change_date] [bigint] NULL, | |
| [register_date] [bigint] NULL, | |
| [vcs_root_id] [int] NULL, | |
| [changes_count] [int] NULL, | |
| [version] [varchar](200) NOT NULL, | |
| [display_version] [varchar](200) NULL, | |
| CONSTRAINT [vcs_history_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [modification_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [vcs_history_root] ON [dbo].[vcs_history] | |
| ( | |
| [vcs_root_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [vcs_history_user] ON [dbo].[vcs_history] | |
| ( | |
| [user_name] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [vcs_version_in_root_i] ON [dbo].[vcs_history] | |
| ( | |
| [vcs_root_id] ASC, | |
| [version] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[vcs_changes_graph] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[vcs_changes_graph]( | |
| [child_modification_id] [bigint] NOT NULL, | |
| [child_revision] [varchar](200) NOT NULL, | |
| [parent_num] [int] NOT NULL, | |
| [parent_modification_id] [bigint] NULL, | |
| [parent_revision] [varchar](200) NOT NULL, | |
| CONSTRAINT [vcs_changes_graph_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [child_modification_id] ASC, | |
| [parent_num] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[vcs_changes] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[vcs_changes]( | |
| [modification_id] [bigint] NULL, | |
| [change_name] [varchar](64) NULL, | |
| [vcs_file_name] [varchar](max) NULL, | |
| [relative_file_name] [varchar](max) NULL, | |
| [change_type] [int] NULL, | |
| [before_revision] [varchar](max) NULL, | |
| [after_revision] [varchar](max) NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [vcs_changes_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [vcs_changes_index] ON [dbo].[vcs_changes] | |
| ( | |
| [modification_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[vcs_change_attrs] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[vcs_change_attrs]( | |
| [modification_id] [bigint] NOT NULL, | |
| [attr_name] [varchar](200) NOT NULL, | |
| [attr_value] [varchar](1000) NULL, | |
| CONSTRAINT [vcs_change_attrs_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [modification_id] ASC, | |
| [attr_name] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[users] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[users]( | |
| [id] [bigint] NOT NULL, | |
| [auth_type] [varchar](80) NOT NULL, | |
| [realm] [varchar](60) NULL, | |
| [username] [varchar](60) NOT NULL, | |
| [name] [varchar](256) NULL, | |
| [email] [varchar](256) NULL, | |
| [last_login_timestamp] [bigint] NULL, | |
| [password] [varchar](128) NULL, | |
| CONSTRAINT [users_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [users_ak] UNIQUE NONCLUSTERED | |
| ( | |
| [auth_type] ASC, | |
| [realm] ASC, | |
| [username] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[usergroups] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[usergroups]( | |
| [group_id] [varchar](16) NOT NULL, | |
| [name] [varchar](255) NOT NULL, | |
| [description] [varchar](2000) NULL, | |
| CONSTRAINT [usergroups_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [group_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [usergroups_name] UNIQUE NONCLUSTERED | |
| ( | |
| [name] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| INSERT [dbo].[usergroups] ([group_id], [name], [description]) VALUES (N'ALL_USERS_GROUP', N'All Users', N'Contains all TeamCity users') | |
| /****** Object: Table [dbo].[usergroup_watch_type] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[usergroup_watch_type]( | |
| [rule_id] [bigint] NOT NULL, | |
| [group_id] [varchar](16) NOT NULL, | |
| [notificator_type] [varchar](20) NOT NULL, | |
| [watch_type] [int] NOT NULL, | |
| [watch_value] [varchar](80) NOT NULL, | |
| [order_num] [bigint] NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [usergroup_watch_type_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [usergroup_watch_type_ui] UNIQUE NONCLUSTERED | |
| ( | |
| [group_id] ASC, | |
| [notificator_type] ASC, | |
| [watch_type] ASC, | |
| [watch_value] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [group_watch_type_rule_id] ON [dbo].[usergroup_watch_type] | |
| ( | |
| [rule_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| SET IDENTITY_INSERT [dbo].[usergroup_watch_type] ON | |
| INSERT [dbo].[usergroup_watch_type] ([rule_id], [group_id], [notificator_type], [watch_type], [watch_value], [order_num], [pkid]) VALUES (1, N'ALL_USERS_GROUP', N'email', 1, N'__BUILDS_WITH_USER_CHANGES__', 1, 1) | |
| INSERT [dbo].[usergroup_watch_type] ([rule_id], [group_id], [notificator_type], [watch_type], [watch_value], [order_num], [pkid]) VALUES (2, N'ALL_USERS_GROUP', N'IDE_Notificator', 1, N'__BUILDS_WITH_USER_CHANGES__', 1, 2) | |
| INSERT [dbo].[usergroup_watch_type] ([rule_id], [group_id], [notificator_type], [watch_type], [watch_value], [order_num], [pkid]) VALUES (3, N'ALL_USERS_GROUP', N'email', 5, N'__SYSTEM_WIDE__', 2, 3) | |
| INSERT [dbo].[usergroup_watch_type] ([rule_id], [group_id], [notificator_type], [watch_type], [watch_value], [order_num], [pkid]) VALUES (4, N'ALL_USERS_GROUP', N'IDE_Notificator', 5, N'__SYSTEM_WIDE__', 2, 4) | |
| INSERT [dbo].[usergroup_watch_type] ([rule_id], [group_id], [notificator_type], [watch_type], [watch_value], [order_num], [pkid]) VALUES (5, N'ALL_USERS_GROUP', N'WindowsTray', 5, N'__SYSTEM_WIDE__', 1, 5) | |
| INSERT [dbo].[usergroup_watch_type] ([rule_id], [group_id], [notificator_type], [watch_type], [watch_value], [order_num], [pkid]) VALUES (6, N'ALL_USERS_GROUP', N'jabber', 5, N'__SYSTEM_WIDE__', 1, 6) | |
| SET IDENTITY_INSERT [dbo].[usergroup_watch_type] OFF | |
| /****** Object: Table [dbo].[usergroup_users] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[usergroup_users]( | |
| [group_id] [varchar](16) NOT NULL, | |
| [user_id] [bigint] NOT NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [usergroup_users_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [usergroup_users_ui] UNIQUE NONCLUSTERED | |
| ( | |
| [group_id] ASC, | |
| [user_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[usergroup_subgroups] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[usergroup_subgroups]( | |
| [hostgroup_id] [varchar](16) NOT NULL, | |
| [subgroup_id] [varchar](16) NOT NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [usergropu_subgroups_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [usergroup_subgroups_ui] UNIQUE NONCLUSTERED | |
| ( | |
| [hostgroup_id] ASC, | |
| [subgroup_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[usergroup_roles] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[usergroup_roles]( | |
| [group_id] [varchar](16) NOT NULL, | |
| [role_id] [varchar](80) NOT NULL, | |
| [project_int_id] [varchar](80) NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [usergroup_roles_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [usergroup_roles_ui] UNIQUE NONCLUSTERED | |
| ( | |
| [group_id] ASC, | |
| [role_id] ASC, | |
| [project_int_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| SET IDENTITY_INSERT [dbo].[usergroup_roles] ON | |
| INSERT [dbo].[usergroup_roles] ([group_id], [role_id], [project_int_id], [pkid]) VALUES (N'ALL_USERS_GROUP', N'PROJECT_DEVELOPER', NULL, 1) | |
| SET IDENTITY_INSERT [dbo].[usergroup_roles] OFF | |
| /****** Object: Table [dbo].[usergroup_notification_events] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[usergroup_notification_events]( | |
| [id] [bigint] NOT NULL, | |
| [group_id] [varchar](16) NOT NULL, | |
| [notificator_type] [varchar](20) NOT NULL, | |
| [events_mask] [int] NOT NULL, | |
| CONSTRAINT [usergroup_notific_evnts_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [usergroup_events_group_id] ON [dbo].[usergroup_notification_events] | |
| ( | |
| [group_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [usergroup_events_notifier] ON [dbo].[usergroup_notification_events] | |
| ( | |
| [notificator_type] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| INSERT [dbo].[usergroup_notification_events] ([id], [group_id], [notificator_type], [events_mask]) VALUES (1, N'ALL_USERS_GROUP', N'email', 68) | |
| INSERT [dbo].[usergroup_notification_events] ([id], [group_id], [notificator_type], [events_mask]) VALUES (2, N'ALL_USERS_GROUP', N'IDE_Notificator', 76) | |
| INSERT [dbo].[usergroup_notification_events] ([id], [group_id], [notificator_type], [events_mask]) VALUES (3, N'ALL_USERS_GROUP', N'email', 512) | |
| INSERT [dbo].[usergroup_notification_events] ([id], [group_id], [notificator_type], [events_mask]) VALUES (4, N'ALL_USERS_GROUP', N'IDE_Notificator', 512) | |
| INSERT [dbo].[usergroup_notification_events] ([id], [group_id], [notificator_type], [events_mask]) VALUES (5, N'ALL_USERS_GROUP', N'WindowsTray', 512) | |
| INSERT [dbo].[usergroup_notification_events] ([id], [group_id], [notificator_type], [events_mask]) VALUES (6, N'ALL_USERS_GROUP', N'jabber', 512) | |
| /****** Object: Table [dbo].[user_watch_type] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[user_watch_type]( | |
| [rule_id] [bigint] NOT NULL, | |
| [user_id] [bigint] NOT NULL, | |
| [notificator_type] [varchar](20) NOT NULL, | |
| [watch_type] [int] NOT NULL, | |
| [watch_value] [varchar](80) NOT NULL, | |
| [order_num] [bigint] NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [user_watch_type_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [user_watch_type_ui] UNIQUE NONCLUSTERED | |
| ( | |
| [user_id] ASC, | |
| [notificator_type] ASC, | |
| [watch_type] ASC, | |
| [watch_value] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [watch_type_rule_id] ON [dbo].[user_watch_type] | |
| ( | |
| [rule_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[user_roles] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[user_roles]( | |
| [user_id] [bigint] NOT NULL, | |
| [role_id] [varchar](80) NOT NULL, | |
| [project_int_id] [varchar](80) NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [user_roles_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [user_roles_ui] UNIQUE NONCLUSTERED | |
| ( | |
| [user_id] ASC, | |
| [role_id] ASC, | |
| [project_int_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| SET IDENTITY_INSERT [dbo].[user_roles] ON | |
| INSERT [dbo].[user_roles] ([user_id], [role_id], [project_int_id], [pkid]) VALUES (-1000, N'PROJECT_VIEWER', NULL, 1) | |
| SET IDENTITY_INSERT [dbo].[user_roles] OFF | |
| /****** Object: Table [dbo].[user_property] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[user_property]( | |
| [user_id] [bigint] NOT NULL, | |
| [key1] [varchar](80) NOT NULL, | |
| [value] [varchar](2048) NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [user_property_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [user_property_ui] UNIQUE NONCLUSTERED | |
| ( | |
| [user_id] ASC, | |
| [key1] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[user_projects_visibility] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[user_projects_visibility]( | |
| [user_id] [bigint] NOT NULL, | |
| [project_int_id] [varchar](80) NOT NULL, | |
| [visible] [int] NOT NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [user_projects_visibility_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [user_projects_visibility_ui] UNIQUE NONCLUSTERED | |
| ( | |
| [user_id] ASC, | |
| [project_int_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[user_projects_order] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[user_projects_order]( | |
| [user_id] [bigint] NOT NULL, | |
| [project_int_id] [varchar](80) NOT NULL, | |
| [ordernum] [int] NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [user_projects_order_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [user_projects_order_ui] UNIQUE NONCLUSTERED | |
| ( | |
| [user_id] ASC, | |
| [project_int_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[user_notification_events] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[user_notification_events]( | |
| [id] [bigint] NOT NULL, | |
| [user_id] [bigint] NOT NULL, | |
| [notificator_type] [varchar](20) NOT NULL, | |
| [events_mask] [int] NOT NULL, | |
| CONSTRAINT [user_notification_events_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [notification_events_notifier] ON [dbo].[user_notification_events] | |
| ( | |
| [notificator_type] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [notification_events_user_id] ON [dbo].[user_notification_events] | |
| ( | |
| [user_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[user_build_parameters] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[user_build_parameters]( | |
| [build_state_id] [bigint] NULL, | |
| [param_name] [varchar](2000) NULL, | |
| [param_value] [varchar](max) NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [user_build_parameters_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [user_build_params_state_id] ON [dbo].[user_build_parameters] | |
| ( | |
| [build_state_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[user_blocks] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[user_blocks]( | |
| [user_id] [bigint] NOT NULL, | |
| [block_type] [varchar](80) NOT NULL, | |
| [state] [varchar](2048) NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [user_blocks_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [user_blocks_ui] UNIQUE NONCLUSTERED | |
| ( | |
| [user_id] ASC, | |
| [block_type] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[test_names] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[test_names]( | |
| [id] [bigint] NOT NULL, | |
| [test_name] [varchar](255) NOT NULL, | |
| CONSTRAINT [test_names_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[test_muted] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE TABLE [dbo].[test_muted]( | |
| [build_id] [bigint] NOT NULL, | |
| [test_name_id] [bigint] NOT NULL, | |
| [mute_id] [int] NOT NULL, | |
| CONSTRAINT [test_muted_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_id] ASC, | |
| [test_name_id] ASC, | |
| [mute_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| /****** Object: Table [dbo].[test_info] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE TABLE [dbo].[test_info]( | |
| [build_id] [bigint] NOT NULL, | |
| [test_id] [int] NOT NULL, | |
| [test_name_id] [bigint] NULL, | |
| [status] [int] NULL, | |
| [duration] [int] NOT NULL, | |
| CONSTRAINT [test_info_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_id] ASC, | |
| [test_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| CREATE NONCLUSTERED INDEX [test_name_id_idx] ON [dbo].[test_info] | |
| ( | |
| [test_name_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[test_failure_rate] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[test_failure_rate]( | |
| [build_type_id] [varchar](80) NOT NULL, | |
| [agent_id] [int] NOT NULL, | |
| [test_name_id] [bigint] NOT NULL, | |
| [success_count] [int] NULL, | |
| [failure_count] [int] NULL, | |
| [last_failure_time] [bigint] NULL, | |
| CONSTRAINT [test_failure_rate_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_type_id] ASC, | |
| [agent_id] ASC, | |
| [test_name_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[tc_build_tags] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[tc_build_tags]( | |
| [tag] [varchar](255) NULL, | |
| [build_id] [bigint] NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [tc_build_tags_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [tc_tags_id_index] ON [dbo].[tc_build_tags] | |
| ( | |
| [build_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [tc_tags_id_tag] ON [dbo].[tc_build_tags] | |
| ( | |
| [tag] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[stats_publisher_state] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE TABLE [dbo].[stats_publisher_state]( | |
| [metric_id] [bigint] NOT NULL, | |
| [value] [bigint] NOT NULL, | |
| CONSTRAINT [stats_publisher_state_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [metric_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| INSERT [dbo].[stats_publisher_state] ([metric_id], [value]) VALUES (-6371738409877395985, 0) | |
| INSERT [dbo].[stats_publisher_state] ([metric_id], [value]) VALUES (-6022911269954286022, 0) | |
| INSERT [dbo].[stats_publisher_state] ([metric_id], [value]) VALUES (-4539345364261023841, 0) | |
| INSERT [dbo].[stats_publisher_state] ([metric_id], [value]) VALUES (-3896958621569208557, 0) | |
| INSERT [dbo].[stats_publisher_state] ([metric_id], [value]) VALUES (-1749670243861784615, 0) | |
| INSERT [dbo].[stats_publisher_state] ([metric_id], [value]) VALUES (3014510524022395756, 0) | |
| INSERT [dbo].[stats_publisher_state] ([metric_id], [value]) VALUES (4442225825414644568, 0) | |
| INSERT [dbo].[stats_publisher_state] ([metric_id], [value]) VALUES (5176326009405783383, 0) | |
| INSERT [dbo].[stats_publisher_state] ([metric_id], [value]) VALUES (7099310522317309347, 0) | |
| INSERT [dbo].[stats_publisher_state] ([metric_id], [value]) VALUES (8902705693490759987, 0) | |
| INSERT [dbo].[stats_publisher_state] ([metric_id], [value]) VALUES (9018439616396414058, 0) | |
| /****** Object: Table [dbo].[stats] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[stats]( | |
| [build_id] [bigint] NOT NULL, | |
| [test_count] [int] NULL, | |
| [status_text] [varchar](256) NULL, | |
| CONSTRAINT [stats_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[single_row] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[single_row]( | |
| [dummy_field] [char](1) NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [single_row_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| SET IDENTITY_INSERT [dbo].[single_row] ON | |
| INSERT [dbo].[single_row] ([dummy_field], [pkid]) VALUES (N'X', 1) | |
| SET IDENTITY_INSERT [dbo].[single_row] OFF | |
| /****** Object: Table [dbo].[server_property] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[server_property]( | |
| [prop_name] [varchar](80) NOT NULL, | |
| [prop_value] [varchar](256) NOT NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [server_property_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [server_property_ak] UNIQUE NONCLUSTERED | |
| ( | |
| [prop_name] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| SET IDENTITY_INSERT [dbo].[server_property] ON | |
| INSERT [dbo].[server_property] ([prop_name], [prop_value], [pkid]) VALUES (N'***', N'8f80140d1868578ad3b346d06d25f6c10000', 1) | |
| INSERT [dbo].[server_property] ([prop_name], [prop_value], [pkid]) VALUES (N'LICENSE_AGREEMENT', N'true', 2) | |
| SET IDENTITY_INSERT [dbo].[server_property] OFF | |
| /****** Object: Table [dbo].[server_health_items] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[server_health_items]( | |
| [id] [bigint] NOT NULL, | |
| [report_id] [varchar](80) NOT NULL, | |
| [category_id] [varchar](80) NOT NULL, | |
| [item_id] [varchar](255) NOT NULL, | |
| [visible] [bit] NOT NULL, | |
| CONSTRAINT [server_health_items_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [server_health_items_ie] ON [dbo].[server_health_items] | |
| ( | |
| [report_id] ASC, | |
| [category_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[server] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE TABLE [dbo].[server]( | |
| [server_id] [bigint] NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [server_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET IDENTITY_INSERT [dbo].[server] ON | |
| INSERT [dbo].[server] ([server_id], [pkid]) VALUES (1379693321702, 1) | |
| SET IDENTITY_INSERT [dbo].[server] OFF | |
| /****** Object: Table [dbo].[running] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[running]( | |
| [build_id] [bigint] NOT NULL, | |
| [agent_id] [int] NULL, | |
| [build_type_id] [varchar](80) NULL, | |
| [build_start_time_agent] [bigint] NULL, | |
| [build_start_time_server] [bigint] NULL, | |
| [is_personal] [int] NULL, | |
| [build_number] [varchar](256) NULL, | |
| [requestor] [varchar](1024) NULL, | |
| [access_code] [varchar](60) NULL, | |
| [queued_ag_restr_type_id] [int] NULL, | |
| [queued_ag_restr_id] [int] NULL, | |
| [queued_time] [bigint] NULL, | |
| [remove_from_queue_time] [bigint] NULL, | |
| [build_state_id] [bigint] NULL, | |
| [agent_type_id] [int] NULL, | |
| CONSTRAINT [running_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [running_state_id] ON [dbo].[running] | |
| ( | |
| [build_state_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[responsibilities] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[responsibilities]( | |
| [problem_id] [varchar](80) NOT NULL, | |
| [state] [int] NOT NULL, | |
| [responsible_user_id] [bigint] NOT NULL, | |
| [reporter_user_id] [bigint] NULL, | |
| [timestmp] [bigint] NULL, | |
| [comments] [varchar](max) NULL, | |
| [remove_method] [int] NOT NULL, | |
| CONSTRAINT [responsibilities_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [problem_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [responsibilities_assignee] ON [dbo].[responsibilities] | |
| ( | |
| [responsible_user_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [responsibilities_reporter] ON [dbo].[responsibilities] | |
| ( | |
| [reporter_user_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[remember_me] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[remember_me]( | |
| [user_key] [varchar](65) NOT NULL, | |
| [secure] [bigint] NOT NULL | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[project_files] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[project_files]( | |
| [file_id] [bigint] NOT NULL, | |
| [file_name] [varchar](255) NULL, | |
| CONSTRAINT [project_files_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [file_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [project_files_file_name_index] ON [dbo].[project_files] | |
| ( | |
| [file_name] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[project] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[project]( | |
| [int_id] [varchar](80) NOT NULL, | |
| [ext_id] [varchar](80) NOT NULL, | |
| CONSTRAINT [project_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [int_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [project_ak] UNIQUE NONCLUSTERED | |
| ( | |
| [ext_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| INSERT [dbo].[project] ([int_id], [ext_id]) VALUES (N'_Root', N'_Root') | |
| /****** Object: Table [dbo].[problem] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[problem]( | |
| [problem_id] [int] NOT NULL, | |
| [problem_type] [varchar](80) NOT NULL, | |
| [problem_identity] [varchar](60) NOT NULL, | |
| CONSTRAINT [problem_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [problem_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [problem_ak] UNIQUE NONCLUSTERED | |
| ( | |
| [problem_type] ASC, | |
| [problem_identity] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[personal_vcs_history] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[personal_vcs_history]( | |
| [modification_id] [bigint] NOT NULL, | |
| [user_id] [bigint] NULL, | |
| [description] [varchar](max) NULL, | |
| [change_date] [bigint] NULL, | |
| [changes_count] [int] NULL, | |
| [commit_changes] [int] NULL, | |
| [scheduled_for_deletion] [int] NULL, | |
| [status] [int] NULL, | |
| CONSTRAINT [personal_vcs_history_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [modification_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[personal_vcs_changes] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[personal_vcs_changes]( | |
| [modification_id] [bigint] NULL, | |
| [change_name] [varchar](64) NULL, | |
| [vcs_file_name] [varchar](max) NULL, | |
| [relative_file_name] [varchar](max) NULL, | |
| [change_type] [int] NULL, | |
| [before_revision] [varchar](2048) NULL, | |
| [after_revision] [varchar](2048) NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [personal_vcs_changes_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [vcs_personal_changes_index] ON [dbo].[personal_vcs_changes] | |
| ( | |
| [modification_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[personal_build_relative_path] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[personal_build_relative_path]( | |
| [build_id] [bigint] NULL, | |
| [original_path_hash] [bigint] NULL, | |
| [relative_path] [varchar](max) NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [personal_build_relative_path_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [personal_build_relative_p_ak] UNIQUE NONCLUSTERED | |
| ( | |
| [build_id] ASC, | |
| [original_path_hash] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[mute_test_in_proj] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[mute_test_in_proj]( | |
| [mute_id] [int] NOT NULL, | |
| [project_int_id] [varchar](80) NOT NULL, | |
| [test_name_id] [bigint] NOT NULL, | |
| CONSTRAINT [mute_test_in_proj_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [mute_id] ASC, | |
| [project_int_id] ASC, | |
| [test_name_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [mute_test_in_proj_ie] ON [dbo].[mute_test_in_proj] | |
| ( | |
| [project_int_id] ASC, | |
| [test_name_id] ASC, | |
| [mute_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[mute_test_in_bt] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[mute_test_in_bt]( | |
| [mute_id] [int] NOT NULL, | |
| [build_type_id] [varchar](80) NOT NULL, | |
| [test_name_id] [bigint] NOT NULL, | |
| CONSTRAINT [mute_test_in_bt_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [mute_id] ASC, | |
| [build_type_id] ASC, | |
| [test_name_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [mute_test_in_bt_ie] ON [dbo].[mute_test_in_bt] | |
| ( | |
| [build_type_id] ASC, | |
| [test_name_id] ASC, | |
| [mute_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[mute_problem_in_proj] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[mute_problem_in_proj]( | |
| [mute_id] [int] NOT NULL, | |
| [project_int_id] [varchar](80) NOT NULL, | |
| [problem_id] [int] NOT NULL, | |
| CONSTRAINT [mute_problem_in_proj_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [mute_id] ASC, | |
| [project_int_id] ASC, | |
| [problem_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [mute_problem_in_proj_ie] ON [dbo].[mute_problem_in_proj] | |
| ( | |
| [project_int_id] ASC, | |
| [problem_id] ASC, | |
| [mute_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[mute_problem_in_bt] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[mute_problem_in_bt]( | |
| [mute_id] [int] NOT NULL, | |
| [build_type_id] [varchar](80) NOT NULL, | |
| [problem_id] [int] NOT NULL, | |
| CONSTRAINT [mute_problem_in_bt_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [mute_id] ASC, | |
| [build_type_id] ASC, | |
| [problem_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [mute_problem_in_bt_ie] ON [dbo].[mute_problem_in_bt] | |
| ( | |
| [build_type_id] ASC, | |
| [problem_id] ASC, | |
| [mute_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[mute_info_test] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE TABLE [dbo].[mute_info_test]( | |
| [mute_id] [int] NOT NULL, | |
| [test_name_id] [bigint] NOT NULL, | |
| CONSTRAINT [mute_info_test_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [mute_id] ASC, | |
| [test_name_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| /****** Object: Table [dbo].[mute_info_problem] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE TABLE [dbo].[mute_info_problem]( | |
| [mute_id] [int] NOT NULL, | |
| [problem_id] [int] NOT NULL, | |
| CONSTRAINT [mute_info_problem_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [mute_id] ASC, | |
| [problem_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| /****** Object: Table [dbo].[mute_info_bt] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[mute_info_bt]( | |
| [mute_id] [int] NOT NULL, | |
| [build_type_id] [varchar](80) NOT NULL, | |
| CONSTRAINT [mute_info_bt_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [mute_id] ASC, | |
| [build_type_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[mute_info] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[mute_info]( | |
| [mute_id] [int] NOT NULL, | |
| [muting_user_id] [bigint] NOT NULL, | |
| [muting_time] [datetime] NOT NULL, | |
| [muting_comment] [varchar](2000) NULL, | |
| [scope] [char](1) NOT NULL, | |
| [project_int_id] [varchar](80) NOT NULL, | |
| [build_id] [bigint] NULL, | |
| [unmute_when_fixed] [bit] NULL, | |
| [unmute_by_time] [datetime] NULL, | |
| CONSTRAINT [mute_info_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [mute_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [mute_info_ak] UNIQUE NONCLUSTERED | |
| ( | |
| [project_int_id] ASC, | |
| [mute_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[meta_file_line] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[meta_file_line]( | |
| [file_name] [varchar](15) NOT NULL, | |
| [line_nr] [int] NOT NULL, | |
| [line_text] [varchar](160) NULL, | |
| CONSTRAINT [meta_file_line_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [file_name] ASC, | |
| [line_nr] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 1, N'-- INTERNAL BACKUP CONFIGURATION') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 2, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 3, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 4, N'TABLES-NOT-TO-BACKUP') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 5, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 6, N' working_server') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 7, N' virtual$lock') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 8, N' build_set_tmp') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 9, N' backup_builds') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 10, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 11, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 12, N'TABLES-TO-FILTER-BY-BUILDS') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 13, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 14, N' build_data_storage') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 15, N' build_labels') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 16, N' build_runtime_info') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 17, N' compiler_output') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 18, N' failed_tests_output') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 19, N' ignored_tests') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 20, N' personal_build_relative_path') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 21, N' stats') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 22, N' tc_build_tags') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 23, N' test_info') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 24, N' inspection_results') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 25, N' inspection_stats') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 26, N' inspection_diff') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 27, N' duplicate_results') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 28, N' duplicate_diff') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 29, N' duplicate_stats') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 30, N' running') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 31, N' history') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 32, N' light_history') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 33, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 34, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 35, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 36, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 37, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'backup.config', 38, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1, N'-- TEAMCITY DATABASE SCHEMA') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 2, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 3, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 4, N'-- Each table describes as a table name started from the first position of the line,') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 5, N'-- and followed by its inner constructions with offset. All inner constructions') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 6, N'-- should be written with the same offset.') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 7, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 8, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 9, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 10, N'-- Abbreviations') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 11, N'-- -------------') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 12, N'-- M: mandatory (not null)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 13, N'-- PK: primary key') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 14, N'-- AK: alternative key (unique index)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 15, N'-- IE: inversion entry (non-unique index)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 16, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 17, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 18, N'-- Data types') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 19, N'-- ----------') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 20, N'-- int : 4-bytes signed integer') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 21, N'-- long_int : 8-bytes signed integer') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 22, N'-- decimal(d) : d-digits integer number') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 23, N'-- str(n) : string of length n, n is limited to 2000') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 24, N'-- long_str(n) : long text of length n (CLOB)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 25, N'-- char : one character') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 26, N'-- timestamp : date and time with 1 second precision, without time zone') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 27, N'-- boolean : boolean') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 28, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 29, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 30, N'-- Notes:') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 31, N'-- 1. The first table should be ''db_version'', the last table should be ''server''.') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 32, N'-- 2. All names should be written in lower case; national characters are not allowed.') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 33, N'-- 3. Name of temporary tables are suffixed with ''$''.') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 34, N'-- 4. Ensure that there are no tab characters at beginning of lines.') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 35, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 36, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 37, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 38, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 39, N'db_version') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 40, N' version_number: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 41, N' version_time: timestamp M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 42, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 43, N' db_version_pk: PK (version_number)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 44, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 45, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 46, N'meta_file_line') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 47, N' file_name: str(15) M -- metadata file name with suffix') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 48, N' line_nr: int M -- line number, started with 1') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 49, N' line_text: str(160) -- text of line') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 50, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 51, N' meta_file_line_pk: PK (file_name, line_nr)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 52, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 53, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 54, N'single_row') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 55, N' dummy_field: char') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 56, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 57, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 58, N'project') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 59, N' int_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 60, N' ext_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 61, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 62, N' project_pk: PK (int_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 63, N' project_ak: AK (ext_id)') | |
| GO | |
| print 'Processed 100 total records' | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 64, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 65, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 66, N'build_type') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 67, N' int_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 68, N' ext_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 69, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 70, N' build_type_pk: PK (int_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 71, N' build_type_ak: AK (ext_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 72, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 73, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 74, N'vcs_root') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 75, N' int_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 76, N' ext_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 77, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 78, N' vcs_root_pk: PK (int_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 79, N' vcs_root_ak: AK (ext_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 80, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 81, N'server_health_items') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 82, N' id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 83, N' report_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 84, N' category_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 85, N' item_id: str(255) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 86, N' visible: boolean M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 87, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 88, N' server_health_items_pk: PK (id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 89, N' server_health_items_ie: IE (report_id, category_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 90, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 91, N'agent') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 92, N' id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 93, N' name: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 94, N' host_addr: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 95, N' port: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 96, N' agent_type_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 97, N' status: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 98, N' authorized: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 99, N' registered: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 100, N' registration_timestamp: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 101, N' last_binding_timestamp: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 102, N' unregistered_reason: str(256)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 103, N' authorization_token: str(32)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 104, N' status_to_restore: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 105, N' status_restoring_timestamp: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 106, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 107, N' agent_pk: PK (id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 108, N' agent_name_ui: AK (name)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 109, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 110, N' agent_host_address: IE (host_addr)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 111, N' agent_authorization_token: IE (authorization_token)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 112, N' agent_agent_type_id: IE (agent_type_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 113, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 114, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 115, N'deleted_build_types') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 116, N' build_type_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 117, N' delete_time: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 118, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 119, N' deleted_build_types_pk: PK (build_type_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 120, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 121, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 122, N'build_data_storage') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 123, N' build_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 124, N' metric_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 125, N' metric_value: decimal(19) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 126, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 127, N' build_data_storage_pk: PK (build_id, metric_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 128, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 129, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 130, N'canceled_info') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 131, N' build_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 132, N' user_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 133, N' description: str(256)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 134, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 135, N' canceled_info_pk: PK (build_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 136, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 137, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 138, N'running') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 139, N' build_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 140, N' agent_id: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 141, N' build_type_id: str(80)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 142, N' build_start_time_agent: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 143, N' build_start_time_server: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 144, N' is_personal: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 145, N' build_number: str(256)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 146, N' requestor: str(1024)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 147, N' access_code: str(60)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 148, N' queued_ag_restr_type_id: int -- agent restrictor type id') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 149, N' queued_ag_restr_id: int -- agent restrictor id') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 150, N' queued_time: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 151, N' remove_from_queue_time: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 152, N' build_state_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 153, N' agent_type_id: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 154, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 155, N' running_pk: PK (build_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 156, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 157, N' running_state_id: IE (build_state_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 158, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 159, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 160, N'build_state') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 161, N' id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 162, N' build_type_id: str(80)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 163, N' modification_id: long_int -- can be null if changes checking was not performed yet') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 164, N' is_personal: int M default 0') | |
| GO | |
| print 'Processed 200 total records' | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 165, N' is_canceled: int M default 0') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 166, N' is_changes_detached: int M default 0') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 167, N' is_deleted: boolean M default 0') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 168, N' branch_name: str(255) -- null means no branch (master)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 169, N' build_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 170, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 171, N' build_state_pk: PK (id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 172, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 173, N' build_state_mod_id: IE (modification_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 174, N' build_state_build_type_id: IE (build_type_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 175, N' build_state_build_id: IE (build_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 176, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 177, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 178, N'build_dependency') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 179, N' build_state_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 180, N' depends_on: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 181, N' dependency_options: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 182, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 183, N' build_dependency_pk: PK (build_state_id, depends_on)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 184, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 185, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 186, N'build_attrs') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 187, N' build_state_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 188, N' attr_name: str(70) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 189, N' attr_value: str(1000)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 190, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 191, N' build_attrs_pk: PK (build_state_id, attr_name)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 192, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 193, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 194, N'problem') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 195, N' problem_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 196, N' problem_type: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 197, N' problem_identity: str(60) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 198, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 199, N' problem_pk: PK (problem_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 200, N' problem_ak: AK (problem_type, problem_identity)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 201, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 202, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 203, N'build_problem') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 204, N' build_state_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 205, N' problem_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 206, N' problem_description: long_str(4000)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 207, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 208, N' build_problem_pk: PK (build_state_id, problem_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 209, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 210, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 211, N'build_problem_attribute') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 212, N' build_state_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 213, N' problem_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 214, N' attr_name: str(60) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 215, N' attr_value: str(2000) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 216, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 217, N' build_problem_attribute_pk: PK (build_state_id, problem_id, attr_name)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 218, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 219, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 220, N'build_problem_muted') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 221, N' build_state_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 222, N' problem_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 223, N' mute_id: int -- may be null if user muted build problem manually') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 224, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 225, N' build_problem_muted_pk: PK (build_state_id, problem_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 226, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 227, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 228, N'build_artifact_dependency') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 229, N' build_state_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 230, N' source_build_type_id: str(80)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 231, N' src_paths: long_str(40960)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 232, N' revision_rule: str(80)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 233, N' branch: str(255)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 234, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 235, N' build_artif_dep_state_id: IE (build_state_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 236, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 237, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 238, N'final_artifact_dependency') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 239, N' build_state_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 240, N' source_build_type_id: str(80)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 241, N' src_paths: long_str(40960)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 242, N' revision_rule: str(80)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 243, N' branch: str(255)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 244, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 245, N' final_artif_dep_state_id: IE (build_state_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 246, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 247, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 248, N'agent_sources_version') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 249, N' build_type_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 250, N' vcs_root_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 251, N' agent_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 252, N' vcs_settings_hash: str(16) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 253, N' checkout_dir: str(2048)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 254, N' current_version: str(80)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 255, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 256, N' agent_sources_version_pk: PK (build_type_id, vcs_settings_hash, vcs_root_id, agent_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 257, N' agent_sources_version_hidx: IE (vcs_settings_hash)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 258, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 259, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 260, N'vcs_history') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 261, N' modification_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 262, N' user_name: str(255)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 263, N' description: long_str(4000)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 264, N' change_date: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 265, N' register_date: long_int') | |
| GO | |
| print 'Processed 300 total records' | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 266, N' vcs_root_id: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 267, N' changes_count: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 268, N' version: str(200) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 269, N' display_version: str(200)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 270, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 271, N' vcs_history_pk: PK (modification_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 272, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 273, N' vcs_history_root: IE (vcs_root_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 274, N' vcs_history_user: IE (user_name)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 275, N' vcs_version_in_root_i: IE (vcs_root_id, version)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 276, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 277, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 278, N'build_type_vcs_change') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 279, N' modification_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 280, N' build_type_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 281, N' change_type: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 282, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 283, N' build_type_vcs_change_ui: AK (modification_id, build_type_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 284, N' build_type_vcs_change_btid: IE (build_type_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 285, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 286, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 287, N'build_checkout_rules') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 288, N' build_state_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 289, N' build_type_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 290, N' vcs_root_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 291, N' checkout_rules: long_str(2096)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 292, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 293, N' build_checkout_rules_pk: PK (build_state_id, build_type_id, vcs_root_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 294, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 295, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 296, N'vcs_changes') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 297, N' modification_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 298, N' change_name: str(64)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 299, N' vcs_file_name: long_str(16000)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 300, N' relative_file_name: long_str(16000)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 301, N' change_type: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 302, N' before_revision: long_str(2048)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 303, N' after_revision: long_str(2048)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 304, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 305, N' vcs_changes_index: IE (modification_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 306, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 307, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 308, N'vcs_changes_graph') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 309, N' child_modification_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 310, N' child_revision: str(200) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 311, N' parent_num: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 312, N' parent_modification_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 313, N' parent_revision: str(200) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 314, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 315, N' vcs_changes_graph_pk: PK (child_modification_id, parent_num)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 316, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 317, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 318, N'vcs_change_attrs') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 319, N' modification_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 320, N' attr_name: str(200) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 321, N' attr_value: str(1000)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 322, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 323, N' vcs_change_attrs_pk: PK (modification_id, attr_name)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 324, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 325, N'personal_vcs_changes') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 326, N' modification_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 327, N' change_name: str(64)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 328, N' vcs_file_name: long_str(16000)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 329, N' relative_file_name: long_str(16000)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 330, N' change_type: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 331, N' before_revision: str(2048)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 332, N' after_revision: str(2048)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 333, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 334, N' vcs_personal_changes_index: IE (modification_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 335, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 336, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 337, N'personal_vcs_history') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 338, N' modification_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 339, N' user_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 340, N' description: long_str(4096)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 341, N' change_date: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 342, N' changes_count: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 343, N' commit_changes: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 344, N' scheduled_for_deletion: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 345, N' status: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 346, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 347, N' personal_vcs_history_pk: PK (modification_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 348, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 349, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 350, N'test_names') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 351, N' id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 352, N' test_name: str(255) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 353, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 354, N' test_names_pk: PK (id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 355, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 356, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 357, N'mute_info') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 358, N' -- invariant records (they''re expected never been modified)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 359, N' mute_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 360, N' muting_user_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 361, N' muting_time: timestamp M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 362, N' muting_comment: str(2000)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 363, N' scope: char M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 364, N' project_int_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 365, N' build_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 366, N' unmute_when_fixed: boolean') | |
| GO | |
| print 'Processed 400 total records' | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 367, N' unmute_by_time: timestamp') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 368, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 369, N' mute_info_pk: PK (mute_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 370, N' mute_info_ak: AK (project_int_id, mute_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 371, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 372, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 373, N'mute_info_bt') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 374, N' -- build type was muted (a detail of the mute_info), not currently muted') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 375, N' mute_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 376, N' build_type_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 377, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 378, N' mute_info_bt_pk: PK (mute_id, build_type_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 379, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 380, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 381, N'mute_info_test') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 382, N' -- test was muted (a detail of the mute_info), not currently muted') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 383, N' mute_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 384, N' test_name_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 385, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 386, N' mute_info_test_pk: PK (mute_id, test_name_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 387, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 388, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 389, N'mute_test_in_proj') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 390, N' -- currently muted test in project') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 391, N' mute_id: int M -- records can be reassigned from one muting to another') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 392, N' project_int_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 393, N' test_name_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 394, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 395, N' mute_test_in_proj_pk: PK (mute_id, project_int_id, test_name_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 396, N' mute_test_in_proj_ie: IE (project_int_id, test_name_id, mute_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 397, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 398, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 399, N'mute_test_in_bt') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 400, N' -- currently muted test in build configuration') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 401, N' mute_id: int M -- records can be reassigned from one muting to another') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 402, N' build_type_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 403, N' test_name_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 404, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 405, N' mute_test_in_bt_pk: PK (mute_id, build_type_id, test_name_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 406, N' mute_test_in_bt_ie: IE (build_type_id, test_name_id, mute_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 407, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 408, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 409, N'mute_info_problem') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 410, N' mute_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 411, N' problem_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 412, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 413, N' mute_info_problem_pk: PK (mute_id, problem_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 414, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 415, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 416, N'mute_problem_in_proj') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 417, N' -- currently muted build problem in project') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 418, N' mute_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 419, N' project_int_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 420, N' problem_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 421, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 422, N' mute_problem_in_proj_pk: PK (mute_id, project_int_id, problem_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 423, N' mute_problem_in_proj_ie: IE (project_int_id, problem_id, mute_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 424, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 425, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 426, N'mute_problem_in_bt') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 427, N' -- currently muted build problem in build configuration') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 428, N' mute_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 429, N' build_type_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 430, N' problem_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 431, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 432, N' mute_problem_in_bt_pk: PK (mute_id, build_type_id, problem_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 433, N' mute_problem_in_bt_ie: IE (build_type_id, problem_id, mute_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 434, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 435, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 436, N'test_info') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 437, N' build_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 438, N' test_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 439, N' test_name_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 440, N' status: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 441, N' duration: int M default 0') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 442, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 443, N' test_info_pk: PK (build_id, test_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 444, N' test_name_id_idx: IE (test_name_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 445, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 446, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 447, N'test_muted') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 448, N' build_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 449, N' test_name_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 450, N' mute_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 451, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 452, N' test_muted_pk: PK (build_id, test_name_id, mute_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 453, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 454, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 455, N'test_failure_rate') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 456, N' build_type_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 457, N' agent_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 458, N' test_name_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 459, N' success_count: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 460, N' failure_count: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 461, N' last_failure_time: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 462, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 463, N' test_failure_rate_pk: PK (build_type_id, agent_id, test_name_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 464, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 465, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 466, N'build_queue') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 467, N' build_type_id: str(80)') | |
| GO | |
| print 'Processed 500 total records' | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 468, N' agent_restrictor_type_id: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 469, N' agent_restrictor_id: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 470, N' requestor: str(1024)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 471, N' when_queued: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 472, N' pos: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 473, N' build_state_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 474, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 475, N' build_queue_build_state_id: IE (build_state_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 476, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 477, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 478, N'stats') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 479, N' build_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 480, N' test_count: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 481, N' status_text: str(256)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 482, N' -- a record per build') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 483, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 484, N' stats_pk: PK (build_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 485, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 486, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 487, N'stats_publisher_state') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 488, N' metric_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 489, N' value: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 490, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 491, N' stats_publisher_state_pk: PK (metric_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 492, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 493, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 494, N'failed_tests_output') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 495, N' build_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 496, N' test_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 497, N' problem_description: long_str(256)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 498, N' std_output: long_str(40960)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 499, N' error_output: long_str(40960)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 500, N' stacktrace: long_str(40960)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 501, N' expected: long_str(40960)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 502, N' actual: long_str(40960)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 503, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 504, N' failed_tests_output_pk: PK (build_id, test_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 505, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 506, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 507, N'compiler_output') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 508, N' build_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 509, N' message_order: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 510, N' message: long_str(40960)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 511, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 512, N' co_build_id_index: IE (build_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 513, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 514, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 515, N'ignored_tests') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 516, N' build_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 517, N' test_id: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 518, N' test_name: str(255)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 519, N' reason: long_str(40960)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 520, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 521, N' ignored_tests_build_id: IE (build_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 522, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 523, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 524, N'downloaded_artifacts') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 525, N' target_build_id: long_int -- artifact was downloaded to') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 526, N' source_build_id: long_int -- artifact was downloaded from') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 527, N' artifact_path: long_str(8192)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 528, N' download_timestamp: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 529, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 530, N' downloaded_artifacts_source_id: IE (source_build_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 531, N' downloaded_artifacts_ts_id: IE (target_build_id,source_build_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 532, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 533, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 534, N'users') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 535, N' id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 536, N' auth_type: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 537, N' realm: str(60)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 538, N' username: str(60) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 539, N' name: str(256)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 540, N' email: str(256)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 541, N' last_login_timestamp: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 542, N' password: str(128)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 543, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 544, N' users_pk: PK (id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 545, N' users_ak: AK (auth_type, realm, username)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 546, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 547, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 548, N'user_property') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 549, N' user_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 550, N' key1: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 551, N' value: str(2048)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 552, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 553, N' user_property_ui: AK (user_id, key1)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 554, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 555, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 556, N'user_blocks') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 557, N' user_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 558, N' block_type: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 559, N' state: str(2048)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 560, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 561, N' user_blocks_ui: AK (user_id, block_type)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 562, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 563, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 564, N'user_projects_visibility') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 565, N' user_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 566, N' project_int_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 567, N' visible: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 568, N'') | |
| GO | |
| print 'Processed 600 total records' | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 569, N' user_projects_visibility_ui: AK (user_id, project_int_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 570, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 571, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 572, N'user_projects_order') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 573, N' user_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 574, N' project_int_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 575, N' ordernum: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 576, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 577, N' user_projects_order_ui: AK (user_id, project_int_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 578, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 579, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 580, N'user_notification_events') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 581, N' id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 582, N' user_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 583, N' notificator_type: str(20) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 584, N' events_mask: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 585, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 586, N' user_notification_events_pk: PK (id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 587, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 588, N' notification_events_notifier: IE (notificator_type)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 589, N' notification_events_user_id: IE (user_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 590, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 591, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 592, N'user_watch_type') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 593, N' rule_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 594, N' user_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 595, N' notificator_type: str(20) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 596, N' watch_type: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 597, N' watch_value: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 598, N' order_num: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 599, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 600, N' user_watch_type_ui: AK (user_id, notificator_type, watch_type, watch_value)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 601, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 602, N' watch_type_rule_id: IE (rule_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 603, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 604, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 605, N'user_roles') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 606, N' user_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 607, N' role_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 608, N' project_int_id: str(80)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 609, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 610, N' user_roles_ui: AK (user_id, role_id, project_int_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 611, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 612, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 613, N'usergroups') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 614, N' group_id: str(16) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 615, N' name: str(255) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 616, N' description: str(2000)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 617, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 618, N' usergroups_pk: PK (group_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 619, N' usergroups_name: AK (name)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 620, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 621, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 622, N'usergroup_users') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 623, N' group_id: str(16) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 624, N' user_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 625, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 626, N' usergroup_users_ui: AK (group_id, user_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 627, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 628, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 629, N'usergroup_subgroups') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 630, N' hostgroup_id: str(16) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 631, N' subgroup_id: str(16) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 632, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 633, N' usergroup_subgroups_ui: AK (hostgroup_id, subgroup_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 634, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 635, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 636, N'usergroup_roles') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 637, N' group_id: str(16) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 638, N' role_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 639, N' project_int_id: str(80)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 640, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 641, N' usergroup_roles_ui: AK (group_id, role_id, project_int_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 642, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 643, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 644, N'usergroup_notification_events') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 645, N' id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 646, N' group_id: str(16) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 647, N' notificator_type: str(20) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 648, N' events_mask: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 649, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 650, N' usergroup_notific_evnts_pk: PK (id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 651, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 652, N' usergroup_events_notifier: IE (notificator_type)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 653, N' usergroup_events_group_id: IE (group_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 654, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 655, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 656, N'usergroup_watch_type') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 657, N' rule_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 658, N' group_id: str(16) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 659, N' notificator_type: str(20) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 660, N' watch_type: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 661, N' watch_value: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 662, N' order_num: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 663, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 664, N' usergroup_watch_type_ui: AK (group_id, notificator_type, watch_type, watch_value)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 665, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 666, N' group_watch_type_rule_id: IE (rule_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 667, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 668, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 669, N'server_property') | |
| GO | |
| print 'Processed 700 total records' | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 670, N' prop_name: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 671, N' prop_value: str(256) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 672, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 673, N' server_property_ak: AK (prop_name)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 674, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 675, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 676, N'build_revisions') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 677, N' build_state_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 678, N' vcs_root_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 679, N' vcs_revision: str(200)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 680, N' vcs_revision_display_name: str(200)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 681, N' modification_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 682, N' vcs_root_type: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 683, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 684, N' build_revisions_pk: PK (build_state_id, vcs_root_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 685, N' build_revisions_vcs_root_i: IE (vcs_root_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 686, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 687, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 688, N'vcs_root_first_revision') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 689, N' build_type_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 690, N' parent_root_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 691, N' settings_hash: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 692, N' vcs_revision: str(200) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 693, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 694, N' vcs_settings_hash_pk: PK (build_type_id, parent_root_id, settings_hash)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 695, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 696, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 697, N'user_build_parameters') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 698, N' build_state_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 699, N' param_name: str(2000)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 700, N' param_value: long_str(16000)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 701, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 702, N' user_build_params_state_id: IE (build_state_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 703, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 704, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 705, N'default_build_parameters') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 706, N' build_state_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 707, N' param_name: str(2000)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 708, N' param_value: long_str(16000)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 709, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 710, N' def_build_params_state_id: IE (build_state_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 711, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 712, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 713, N'build_labels') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 714, N' build_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 715, N' vcs_root_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 716, N' label: str(80)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 717, N' status: int default 0') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 718, N' error_message: str(256)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 719, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 720, N' build_labels_build: IE (build_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 721, N' build_labels_vcs_root: IE (vcs_root_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 722, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 723, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 724, N'personal_build_relative_path') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 725, N' build_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 726, N' original_path_hash: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 727, N' relative_path: long_str(16000)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 728, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 729, N' personal_build_relative_p_ak: AK (build_id, original_path_hash)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 730, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 731, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 732, N'action_history') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 733, N' object_id: str(80)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 734, N' comment_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 735, N' action: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 736, N' additional_data: str(80)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 737, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 738, N' action_history_comment: IE (comment_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 739, N' action_history_object: IE (object_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 740, N' action_history_action_object_i: IE (action, object_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 741, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 742, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 743, N'audit_additional_object') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 744, N' comment_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 745, N' object_index: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 746, N' object_id: str(80)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 747, N' object_name: long_str(2500) -- is used only for deleted objects') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 748, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 749, N' audit_a_o_comment: IE (comment_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 750, N' audit_a_o_object_index: IE (object_index)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 751, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 752, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 753, N'remember_me') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 754, N' user_key: str(65) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 755, N' secure: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 756, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 757, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 758, N'vcs_root_instance') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 759, N' id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 760, N' parent_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 761, N' settings_hash: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 762, N' body: long_str(16384)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 763, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 764, N' vcs_root_instance_pk: PK (id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 765, N' vcs_root_instance_parent_idx: IE (parent_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 766, N' vcs_root_instance_hash_idx: IE (settings_hash)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 767, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 768, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 769, N'comments') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 770, N' id: long_int M') | |
| GO | |
| print 'Processed 800 total records' | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 771, N' author_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 772, N' when_changed: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 773, N' commentary: long_str(4096)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 774, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 775, N' comments_pk: PK (id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 776, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 777, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 778, N'build_runtime_info') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 779, N' build_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 780, N' rkey: str(64) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 781, N' value: long_str(4000)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 782, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 783, N' build_runtime_info_pk: PK (build_id, rkey)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 784, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 785, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 786, N'agent_pool') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 787, N' agent_pool_id: int M -- 0 means the Default Pool') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 788, N' agent_pool_name: str(30) M -- see jetbrains.buildServer.serverSide.agentPools.AgentPoolConstants.MAX_POOL_NAME_LENGTH') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 789, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 790, N' agent_pool_pk: PK (agent_pool_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 791, N' agent_pool_ak: AK (agent_pool_name)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 792, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 793, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 794, N'agent_pool_project') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 795, N' agent_pool_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 796, N' project_int_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 797, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 798, N' agent_pool_project_pk: PK (agent_pool_id, project_int_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 799, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 800, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 801, N'agent_type') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 802, N' agent_type_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 803, N' agent_pool_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 804, N' cloud_code: str(6) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 805, N' profile_id: str(30) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 806, N' image_id: str(60) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 807, N' policy: int M -- 1: all configurations, 2: selected ones only') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 808, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 809, N' agent_type_pk: PK (agent_type_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 810, N' agent_type_ak: AK (cloud_code, profile_id, image_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 811, N' agent_type_pool_i: IE (agent_pool_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 812, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 813, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 814, N'agent_type_bt_access') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 815, N' agent_type_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 816, N' build_type_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 817, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 818, N' agent_type_bt_access_pk: PK (agent_type_id, build_type_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 819, N' agent_type_bt_access_bt_i: IE (build_type_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 820, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 821, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 822, N'agent_type_info') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 823, N' agent_type_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 824, N' os_name: str(60) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 825, N' cpu_rank: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 826, N' created_timestamp: timestamp') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 827, N' modified_timestamp: timestamp') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 828, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 829, N' agent_type_info_pk: PK (agent_type_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 830, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 831, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 832, N'agent_type_runner') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 833, N' agent_type_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 834, N' runner: str(250) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 835, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 836, N' agent_type_runner_pk: PK (agent_type_id, runner)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 837, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 838, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 839, N'agent_type_vcs') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 840, N' agent_type_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 841, N' vcs: str(250) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 842, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 843, N' agent_type_vcs_pk: PK (agent_type_id, vcs)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 844, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 845, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 846, N'agent_type_param') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 847, N' agent_type_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 848, N' param_kind: char M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 849, N' param_name: str(160) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 850, N' param_value: str(2000)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 851, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 852, N' agent_type_param_pk: PK (agent_type_id, param_kind, param_name)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 853, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 854, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 855, N'responsibilities') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 856, N' problem_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 857, N' state: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 858, N' responsible_user_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 859, N' reporter_user_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 860, N' timestmp: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 861, N' comments: long_str(4096)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 862, N' remove_method: int M default 0') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 863, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 864, N' responsibilities_pk: PK (problem_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 865, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 866, N' responsibilities_reporter: IE (reporter_user_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 867, N' responsibilities_assignee: IE (responsible_user_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 868, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 869, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 870, N'cloud_started_instance') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 871, N' profile_id: str(30) M') | |
| GO | |
| print 'Processed 900 total records' | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 872, N' cloud_code: str(6) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 873, N' image_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 874, N' instance_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 875, N' last_update: timestamp M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 876, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 877, N' cloud_started_instance_pk: PK (profile_id, cloud_code, image_id, instance_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 878, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 879, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 880, N'cloud_image_without_agent') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 881, N' profile_id: str(30) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 882, N' cloud_code: str(6) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 883, N' image_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 884, N' last_update: timestamp M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 885, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 886, N' cloud_image_without_agent_pk: PK (profile_id, cloud_code, image_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 887, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 888, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 889, N'inspection_results') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 890, N' build_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 891, N' hash: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 892, N' line: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 893, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 894, N' inspection_results_hash_index: IE (hash)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 895, N' inspection_results_buildhash_i: IE (build_id, hash)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 896, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 897, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 898, N'inspection_data') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 899, N' hash: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 900, N' result: long_str(4000)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 901, N' severity: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 902, N' type_pattern: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 903, N' fqname: long_str(4000)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 904, N' file_name: str(255)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 905, N' parent_fqnames: long_str(4000)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 906, N' parent_type_patterns: str(20)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 907, N' module_name: str(40)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 908, N' inspection_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 909, N' is_local: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 910, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 911, N' inspection_data_pk: PK (hash)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 912, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 913, N' inspection_data_file_index: IE (file_name)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 914, N' inspection_data_insp_index: IE (inspection_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 915, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 916, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 917, N'inspection_stats') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 918, N' build_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 919, N' total: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 920, N' new_total: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 921, N' old_total: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 922, N' errors: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 923, N' new_errors: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 924, N' old_errors: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 925, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 926, N' inspection_stats_pk: PK (build_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 927, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 928, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 929, N'inspection_info') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 930, N' id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 931, N' inspection_id: str(255)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 932, N' inspection_name: str(255)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 933, N' inspection_desc: long_str(4000)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 934, N' group_name: str(255)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 935, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 936, N' inspection_info_pk: PK (id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 937, N' inspection_info_ak: AK (inspection_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 938, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 939, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 940, N'inspection_fixes') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 941, N' hash: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 942, N' hint: str(255)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 943, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 944, N' inspection_fixes_hash_index: IE (hash)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 945, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 946, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 947, N'inspection_diff') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 948, N' build_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 949, N' hash: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 950, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 951, N' inspection_diff_ak: AK (build_id, hash)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 952, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 953, N' inspection_diff_hash_index: IE (hash)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 954, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 955, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 956, N'duplicate_results') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 957, N' id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 958, N' build_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 959, N' hash: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 960, N' cost: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 961, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 962, N' duplicate_results_pk: PK (id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 963, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 964, N' duplicate_results_build_id: IE (build_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 965, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 966, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 967, N'duplicate_fragments') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 968, N' id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 969, N' file_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 970, N' offset_info: str(100)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 971, N' line: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 972, N'') | |
| GO | |
| print 'Processed 1000 total records' | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 973, N' duplicate_fragments_index: IE (id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 974, N' duplicate_fragments_file_index: IE (file_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 975, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 976, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 977, N'fragments') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 978, N' hash: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 979, N' file_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 980, N' build_type_id: str(80)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 981, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 982, N' duplicate_results_file_index: IE (file_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 983, N' fragments_hash_index: IE (hash)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 984, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 985, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 986, N'project_files') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 987, N' file_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 988, N' file_name: str(255)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 989, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 990, N' project_files_pk: PK (file_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 991, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 992, N' project_files_file_name_index: IE (file_name)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 993, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 994, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 995, N'duplicate_diff') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 996, N' build_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 997, N' hash: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 998, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 999, N' duplicate_diff_pk: PK (build_id, hash)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1000, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1001, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1002, N'duplicate_stats') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1003, N' build_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1004, N' total: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1005, N' new_total: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1006, N' old_total: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1007, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1008, N' duplicate_stats_pk: PK (build_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1009, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1010, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1011, N'tc_build_tags') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1012, N' tag: str(255)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1013, N' build_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1014, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1015, N' tc_tags_id_index: IE (build_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1016, N' tc_tags_id_tag: IE (tag)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1017, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1018, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1019, N'build_set_tmp') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1020, N' build_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1021, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1022, N' build_set_pk: PK (build_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1023, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1024, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1025, N'history') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1026, N' build_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1027, N' agent_name: str(80)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1028, N' build_type_id: str(80)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1029, N' build_start_time_server: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1030, N' build_start_time_agent: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1031, N' build_finish_time_server: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1032, N' status: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1033, N' status_text: str(256)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1034, N' user_status_text: str(256)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1035, N' pin: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1036, N' is_personal: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1037, N' is_canceled: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1038, N' build_number: str(256)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1039, N' requestor: str(1024)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1040, N' queued_time: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1041, N' remove_from_queue_time: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1042, N' build_state_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1043, N' agent_type_id: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1044, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1045, N' history_pk: PK (build_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1046, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1047, N' start_time_index: IE (build_start_time_server)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1048, N' build_type_id_index: IE (build_type_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1049, N' pinned_index: IE (pin)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1050, N' status_index: IE (status)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1051, N' history_state_id: IE (build_state_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1052, N' history_agname_bfintimesrv_i: IE (agent_name, build_finish_time_server)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1053, N' history_finish_time_i: IE (build_finish_time_server)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1054, N' history_build_number: IE (build_number)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1055, N' history_agt_b_i: IE (agent_type_id, build_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1056, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1057, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1058, N'light_history') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1059, N' build_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1060, N' agent_name: str(80)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1061, N' build_type_id: str(80)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1062, N' build_start_time_server: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1063, N' build_start_time_agent: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1064, N' build_finish_time_server: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1065, N' status: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1066, N' status_text: str(256)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1067, N' user_status_text: str(256)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1068, N' pin: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1069, N' is_personal: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1070, N' is_canceled: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1071, N' build_number: str(256)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1072, N' requestor: str(1024)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1073, N' queued_time: long_int') | |
| GO | |
| print 'Processed 1100 total records' | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1074, N' remove_from_queue_time: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1075, N' build_state_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1076, N' agent_type_id: int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1077, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1078, N' light_history_pk: PK (build_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1079, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1080, N' start_time_index_light: IE (build_start_time_server)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1081, N' build_type_id_index_light: IE (build_type_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1082, N' pinned_index_light: IE (pin)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1083, N' status_index_light: IE (status)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1084, N' light_history_agname_bftime_i: IE (agent_name, build_finish_time_server)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1085, N' light_history_finish_time_i: IE (build_finish_time_server)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1086, N' light_history_agt_b_i: IE (agent_type_id, build_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1087, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1088, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1089, N'backup_info') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1090, N' mproc_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1091, N' file_name: str(1000)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1092, N' file_size: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1093, N' started: timestamp M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1094, N' finished: timestamp') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1095, N' status: char') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1096, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1097, N' backup_info_pk: PK (mproc_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1098, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1099, N' backup_info_file_i: IE (file_name)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1100, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1101, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1102, N'backup_builds') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1103, N' build_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1104, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1105, N' backup_builds_ak: AK (build_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1106, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1107, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1108, N'working_server') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1109, N' starting_code: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1110, N' starting_time: timestamp') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1111, N' ip_address: str(15)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1112, N' application_info: str(80)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1113, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1114, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1115, N'build_overriden_roots') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1116, N' build_state_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1117, N' original_vcs_root_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1118, N' substitution_vcs_root_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1119, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1120, N' build_overriden_roots_pk: PK (build_state_id, original_vcs_root_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1121, N' build_subst_root_index: IE (substitution_vcs_root_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1122, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1123, N'data_storage_dict') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1124, N' metric_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1125, N' value_type_key: str(200)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1126, N' metric_id_pk: PK (metric_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1127, N' value_type_key_index: AK (value_type_key)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1128, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1129, N'cleanup_history') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1130, N' proc_id: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1131, N' start_time: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1132, N' finish_time: long_int') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1133, N' interrupt_reason: str(20)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1134, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1135, N' cleanup_history_pk: PK (proc_id)') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1136, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1137, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1138, N'-- TEMPORARY TABLES') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1139, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1140, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1141, N'agent_pool$') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1142, N' agent_pool_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1143, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1144, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1145, N'agent_type$') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1146, N' agent_type_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1147, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1148, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1149, N'project$') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1150, N' int_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1151, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1152, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1153, N'build_type$') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1154, N' build_type_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1155, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1156, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1157, N'build$') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1158, N' build_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1159, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1160, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1161, N'test$') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1162, N' test_name_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1163, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1164, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1165, N'problem$') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1166, N' problem_id: int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1167, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1168, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1169, N'branch$') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1170, N' branch_name: str(255) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1171, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1172, N'audit_object_ids_to_cleanup$') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1173, N' object_id: str(80) M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1174, N'') | |
| GO | |
| print 'Processed 1200 total records' | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1175, N'audit_comment_ids_to_cleanup$') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1176, N' comment_id: long_int M') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1177, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1178, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1179, N'-- THE LAST TABLE') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1180, N'') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1181, N'server') | |
| INSERT [dbo].[meta_file_line] ([file_name], [line_nr], [line_text]) VALUES (N'schema.config', 1182, N' server_id: long_int') | |
| /****** Object: Table [dbo].[light_history] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[light_history]( | |
| [build_id] [bigint] NOT NULL, | |
| [agent_name] [varchar](80) NULL, | |
| [build_type_id] [varchar](80) NULL, | |
| [build_start_time_server] [bigint] NULL, | |
| [build_start_time_agent] [bigint] NULL, | |
| [build_finish_time_server] [bigint] NULL, | |
| [status] [int] NULL, | |
| [status_text] [varchar](256) NULL, | |
| [user_status_text] [varchar](256) NULL, | |
| [pin] [int] NULL, | |
| [is_personal] [int] NULL, | |
| [is_canceled] [int] NULL, | |
| [build_number] [varchar](256) NULL, | |
| [requestor] [varchar](1024) NULL, | |
| [queued_time] [bigint] NULL, | |
| [remove_from_queue_time] [bigint] NULL, | |
| [build_state_id] [bigint] NULL, | |
| [agent_type_id] [int] NULL, | |
| CONSTRAINT [light_history_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [build_type_id_index_light] ON [dbo].[light_history] | |
| ( | |
| [build_type_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [light_history_agname_bftime_i] ON [dbo].[light_history] | |
| ( | |
| [agent_name] ASC, | |
| [build_finish_time_server] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [light_history_agt_b_i] ON [dbo].[light_history] | |
| ( | |
| [agent_type_id] ASC, | |
| [build_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [light_history_finish_time_i] ON [dbo].[light_history] | |
| ( | |
| [build_finish_time_server] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [pinned_index_light] ON [dbo].[light_history] | |
| ( | |
| [pin] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [start_time_index_light] ON [dbo].[light_history] | |
| ( | |
| [build_start_time_server] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [status_index_light] ON [dbo].[light_history] | |
| ( | |
| [status] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[inspection_stats] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE TABLE [dbo].[inspection_stats]( | |
| [build_id] [bigint] NOT NULL, | |
| [total] [int] NULL, | |
| [new_total] [int] NULL, | |
| [old_total] [int] NULL, | |
| [errors] [int] NULL, | |
| [new_errors] [int] NULL, | |
| [old_errors] [int] NULL, | |
| CONSTRAINT [inspection_stats_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| /****** Object: Table [dbo].[inspection_results] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE TABLE [dbo].[inspection_results]( | |
| [build_id] [bigint] NOT NULL, | |
| [hash] [bigint] NOT NULL, | |
| [line] [int] NOT NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [inspection_results_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| CREATE NONCLUSTERED INDEX [inspection_results_buildhash_i] ON [dbo].[inspection_results] | |
| ( | |
| [build_id] ASC, | |
| [hash] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [inspection_results_hash_index] ON [dbo].[inspection_results] | |
| ( | |
| [hash] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[inspection_info] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[inspection_info]( | |
| [id] [bigint] NOT NULL, | |
| [inspection_id] [varchar](255) NULL, | |
| [inspection_name] [varchar](255) NULL, | |
| [inspection_desc] [varchar](max) NULL, | |
| [group_name] [varchar](255) NULL, | |
| CONSTRAINT [inspection_info_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [inspection_info_ak] UNIQUE NONCLUSTERED | |
| ( | |
| [inspection_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[inspection_fixes] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[inspection_fixes]( | |
| [hash] [bigint] NOT NULL, | |
| [hint] [varchar](255) NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [inspection_fixes_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [inspection_fixes_hash_index] ON [dbo].[inspection_fixes] | |
| ( | |
| [hash] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[inspection_diff] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE TABLE [dbo].[inspection_diff]( | |
| [build_id] [bigint] NOT NULL, | |
| [hash] [bigint] NOT NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [inspection_diff_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [inspection_diff_ak] UNIQUE NONCLUSTERED | |
| ( | |
| [build_id] ASC, | |
| [hash] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| CREATE NONCLUSTERED INDEX [inspection_diff_hash_index] ON [dbo].[inspection_diff] | |
| ( | |
| [hash] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[inspection_data] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[inspection_data]( | |
| [hash] [bigint] NOT NULL, | |
| [result] [varchar](max) NULL, | |
| [severity] [int] NULL, | |
| [type_pattern] [int] NULL, | |
| [fqname] [varchar](max) NULL, | |
| [file_name] [varchar](255) NULL, | |
| [parent_fqnames] [varchar](max) NULL, | |
| [parent_type_patterns] [varchar](20) NULL, | |
| [module_name] [varchar](40) NULL, | |
| [inspection_id] [bigint] NULL, | |
| [is_local] [int] NULL, | |
| CONSTRAINT [inspection_data_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [hash] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [inspection_data_file_index] ON [dbo].[inspection_data] | |
| ( | |
| [file_name] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [inspection_data_insp_index] ON [dbo].[inspection_data] | |
| ( | |
| [inspection_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[ignored_tests] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[ignored_tests]( | |
| [build_id] [bigint] NULL, | |
| [test_id] [int] NULL, | |
| [test_name] [varchar](255) NULL, | |
| [reason] [varchar](max) NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [ignored_tests_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [ignored_tests_build_id] ON [dbo].[ignored_tests] | |
| ( | |
| [build_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[history] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[history]( | |
| [build_id] [bigint] NOT NULL, | |
| [agent_name] [varchar](80) NULL, | |
| [build_type_id] [varchar](80) NULL, | |
| [build_start_time_server] [bigint] NULL, | |
| [build_start_time_agent] [bigint] NULL, | |
| [build_finish_time_server] [bigint] NULL, | |
| [status] [int] NULL, | |
| [status_text] [varchar](256) NULL, | |
| [user_status_text] [varchar](256) NULL, | |
| [pin] [int] NULL, | |
| [is_personal] [int] NULL, | |
| [is_canceled] [int] NULL, | |
| [build_number] [varchar](256) NULL, | |
| [requestor] [varchar](1024) NULL, | |
| [queued_time] [bigint] NULL, | |
| [remove_from_queue_time] [bigint] NULL, | |
| [build_state_id] [bigint] NULL, | |
| [agent_type_id] [int] NULL, | |
| CONSTRAINT [history_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [build_type_id_index] ON [dbo].[history] | |
| ( | |
| [build_type_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [history_agname_bfintimesrv_i] ON [dbo].[history] | |
| ( | |
| [agent_name] ASC, | |
| [build_finish_time_server] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [history_agt_b_i] ON [dbo].[history] | |
| ( | |
| [agent_type_id] ASC, | |
| [build_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [history_build_number] ON [dbo].[history] | |
| ( | |
| [build_number] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [history_finish_time_i] ON [dbo].[history] | |
| ( | |
| [build_finish_time_server] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [history_state_id] ON [dbo].[history] | |
| ( | |
| [build_state_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [pinned_index] ON [dbo].[history] | |
| ( | |
| [pin] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [start_time_index] ON [dbo].[history] | |
| ( | |
| [build_start_time_server] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [status_index] ON [dbo].[history] | |
| ( | |
| [status] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[fragments] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[fragments]( | |
| [hash] [int] NULL, | |
| [file_id] [bigint] NULL, | |
| [build_type_id] [varchar](80) NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [fragments_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [duplicate_results_file_index] ON [dbo].[fragments] | |
| ( | |
| [file_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [fragments_hash_index] ON [dbo].[fragments] | |
| ( | |
| [hash] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[final_artifact_dependency] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[final_artifact_dependency]( | |
| [build_state_id] [bigint] NULL, | |
| [source_build_type_id] [varchar](80) NULL, | |
| [src_paths] [varchar](max) NULL, | |
| [revision_rule] [varchar](80) NULL, | |
| [branch] [varchar](255) NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [final_artifact_dependency_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [final_artif_dep_state_id] ON [dbo].[final_artifact_dependency] | |
| ( | |
| [build_state_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[failed_tests_output] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[failed_tests_output]( | |
| [build_id] [bigint] NOT NULL, | |
| [test_id] [int] NOT NULL, | |
| [problem_description] [varchar](max) NULL, | |
| [std_output] [varchar](max) NULL, | |
| [error_output] [varchar](max) NULL, | |
| [stacktrace] [varchar](max) NULL, | |
| [expected] [varchar](max) NULL, | |
| [actual] [varchar](max) NULL, | |
| CONSTRAINT [failed_tests_output_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_id] ASC, | |
| [test_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[duplicate_stats] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE TABLE [dbo].[duplicate_stats]( | |
| [build_id] [bigint] NOT NULL, | |
| [total] [int] NULL, | |
| [new_total] [int] NULL, | |
| [old_total] [int] NULL, | |
| CONSTRAINT [duplicate_stats_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| /****** Object: Table [dbo].[duplicate_results] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE TABLE [dbo].[duplicate_results]( | |
| [id] [bigint] NOT NULL, | |
| [build_id] [bigint] NULL, | |
| [hash] [int] NULL, | |
| [cost] [int] NULL, | |
| CONSTRAINT [duplicate_results_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| CREATE NONCLUSTERED INDEX [duplicate_results_build_id] ON [dbo].[duplicate_results] | |
| ( | |
| [build_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[duplicate_fragments] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[duplicate_fragments]( | |
| [id] [bigint] NULL, | |
| [file_id] [bigint] NULL, | |
| [offset_info] [varchar](100) NULL, | |
| [line] [int] NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [duplicate_fragments_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [duplicate_fragments_file_index] ON [dbo].[duplicate_fragments] | |
| ( | |
| [file_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [duplicate_fragments_index] ON [dbo].[duplicate_fragments] | |
| ( | |
| [id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[duplicate_diff] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE TABLE [dbo].[duplicate_diff]( | |
| [build_id] [bigint] NOT NULL, | |
| [hash] [bigint] NOT NULL, | |
| CONSTRAINT [duplicate_diff_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_id] ASC, | |
| [hash] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| /****** Object: Table [dbo].[downloaded_artifacts] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[downloaded_artifacts]( | |
| [target_build_id] [bigint] NULL, | |
| [source_build_id] [bigint] NULL, | |
| [artifact_path] [varchar](max) NULL, | |
| [download_timestamp] [bigint] NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [downloaded_artifacts_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [downloaded_artifacts_source_id] ON [dbo].[downloaded_artifacts] | |
| ( | |
| [source_build_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [downloaded_artifacts_ts_id] ON [dbo].[downloaded_artifacts] | |
| ( | |
| [target_build_id] ASC, | |
| [source_build_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[deleted_build_types] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[deleted_build_types]( | |
| [build_type_id] [varchar](80) NOT NULL, | |
| [delete_time] [bigint] NULL, | |
| CONSTRAINT [deleted_build_types_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_type_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[default_build_parameters] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[default_build_parameters]( | |
| [build_state_id] [bigint] NULL, | |
| [param_name] [varchar](2000) NULL, | |
| [param_value] [varchar](max) NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [default_build_parameters_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [def_build_params_state_id] ON [dbo].[default_build_parameters] | |
| ( | |
| [build_state_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[db_version] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE TABLE [dbo].[db_version]( | |
| [version_number] [int] NOT NULL, | |
| [version_time] [datetime] NOT NULL, | |
| CONSTRAINT [db_version_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [version_number] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| INSERT [dbo].[db_version] ([version_number], [version_time]) VALUES (628, CAST(0x0000A23F00A72FCD AS DateTime)) | |
| /****** Object: Table [dbo].[data_storage_dict] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[data_storage_dict]( | |
| [metric_id] [bigint] NOT NULL, | |
| [value_type_key] [varchar](200) NULL, | |
| CONSTRAINT [metric_id_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [metric_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [value_type_key_index] UNIQUE NONCLUSTERED | |
| ( | |
| [value_type_key] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[compiler_output] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[compiler_output]( | |
| [build_id] [bigint] NULL, | |
| [message_order] [int] NULL, | |
| [message] [varchar](max) NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [compiler_output_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [co_build_id_index] ON [dbo].[compiler_output] | |
| ( | |
| [build_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[comments] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[comments]( | |
| [id] [bigint] NOT NULL, | |
| [author_id] [bigint] NULL, | |
| [when_changed] [bigint] NOT NULL, | |
| [commentary] [varchar](max) NULL, | |
| CONSTRAINT [comments_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[cloud_started_instance] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[cloud_started_instance]( | |
| [profile_id] [varchar](30) NOT NULL, | |
| [cloud_code] [varchar](6) NOT NULL, | |
| [image_id] [varchar](80) NOT NULL, | |
| [instance_id] [varchar](80) NOT NULL, | |
| [last_update] [datetime] NOT NULL, | |
| CONSTRAINT [cloud_started_instance_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [profile_id] ASC, | |
| [cloud_code] ASC, | |
| [image_id] ASC, | |
| [instance_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[cloud_image_without_agent] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[cloud_image_without_agent]( | |
| [profile_id] [varchar](30) NOT NULL, | |
| [cloud_code] [varchar](6) NOT NULL, | |
| [image_id] [varchar](80) NOT NULL, | |
| [last_update] [datetime] NOT NULL, | |
| CONSTRAINT [cloud_image_without_agent_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [profile_id] ASC, | |
| [cloud_code] ASC, | |
| [image_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[cleanup_history] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[cleanup_history]( | |
| [proc_id] [bigint] NOT NULL, | |
| [start_time] [bigint] NOT NULL, | |
| [finish_time] [bigint] NULL, | |
| [interrupt_reason] [varchar](20) NULL, | |
| CONSTRAINT [cleanup_history_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [proc_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[canceled_info] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[canceled_info]( | |
| [build_id] [bigint] NOT NULL, | |
| [user_id] [bigint] NULL, | |
| [description] [varchar](256) NULL, | |
| CONSTRAINT [canceled_info_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[build_type_vcs_change] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[build_type_vcs_change]( | |
| [modification_id] [bigint] NOT NULL, | |
| [build_type_id] [varchar](80) NOT NULL, | |
| [change_type] [int] NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [build_type_vcs_change_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [build_type_vcs_change_ui] UNIQUE NONCLUSTERED | |
| ( | |
| [modification_id] ASC, | |
| [build_type_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [build_type_vcs_change_btid] ON [dbo].[build_type_vcs_change] | |
| ( | |
| [build_type_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[build_type] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[build_type]( | |
| [int_id] [varchar](80) NOT NULL, | |
| [ext_id] [varchar](80) NOT NULL, | |
| CONSTRAINT [build_type_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [int_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [build_type_ak] UNIQUE NONCLUSTERED | |
| ( | |
| [ext_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[build_state] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[build_state]( | |
| [id] [bigint] NOT NULL, | |
| [build_type_id] [varchar](80) NULL, | |
| [modification_id] [bigint] NULL, | |
| [is_personal] [int] NOT NULL, | |
| [is_canceled] [int] NOT NULL, | |
| [is_changes_detached] [int] NOT NULL, | |
| [is_deleted] [bit] NOT NULL, | |
| [branch_name] [varchar](255) NULL, | |
| [build_id] [bigint] NULL, | |
| CONSTRAINT [build_state_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [build_state_build_id] ON [dbo].[build_state] | |
| ( | |
| [build_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [build_state_build_type_id] ON [dbo].[build_state] | |
| ( | |
| [build_type_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [build_state_mod_id] ON [dbo].[build_state] | |
| ( | |
| [modification_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[build_set_tmp] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE TABLE [dbo].[build_set_tmp]( | |
| [build_id] [bigint] NOT NULL, | |
| CONSTRAINT [build_set_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| /****** Object: Table [dbo].[build_runtime_info] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[build_runtime_info]( | |
| [build_id] [bigint] NOT NULL, | |
| [rkey] [varchar](64) NOT NULL, | |
| [value] [varchar](max) NULL, | |
| CONSTRAINT [build_runtime_info_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_id] ASC, | |
| [rkey] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[build_revisions] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[build_revisions]( | |
| [build_state_id] [bigint] NOT NULL, | |
| [vcs_root_id] [bigint] NOT NULL, | |
| [vcs_revision] [varchar](200) NULL, | |
| [vcs_revision_display_name] [varchar](200) NULL, | |
| [modification_id] [bigint] NULL, | |
| [vcs_root_type] [int] NULL, | |
| CONSTRAINT [build_revisions_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_state_id] ASC, | |
| [vcs_root_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [build_revisions_vcs_root_i] ON [dbo].[build_revisions] | |
| ( | |
| [vcs_root_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[build_queue] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[build_queue]( | |
| [build_type_id] [varchar](80) NULL, | |
| [agent_restrictor_type_id] [int] NULL, | |
| [agent_restrictor_id] [int] NULL, | |
| [requestor] [varchar](1024) NULL, | |
| [when_queued] [bigint] NULL, | |
| [pos] [int] NULL, | |
| [build_state_id] [bigint] NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [build_queue_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [build_queue_build_state_id] ON [dbo].[build_queue] | |
| ( | |
| [build_state_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[build_problem_muted] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE TABLE [dbo].[build_problem_muted]( | |
| [build_state_id] [bigint] NOT NULL, | |
| [problem_id] [int] NOT NULL, | |
| [mute_id] [int] NULL, | |
| CONSTRAINT [build_problem_muted_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_state_id] ASC, | |
| [problem_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| /****** Object: Table [dbo].[build_problem_attribute] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[build_problem_attribute]( | |
| [build_state_id] [bigint] NOT NULL, | |
| [problem_id] [int] NOT NULL, | |
| [attr_name] [varchar](60) NOT NULL, | |
| [attr_value] [varchar](2000) NOT NULL, | |
| CONSTRAINT [build_problem_attribute_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_state_id] ASC, | |
| [problem_id] ASC, | |
| [attr_name] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[build_problem] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[build_problem]( | |
| [build_state_id] [bigint] NOT NULL, | |
| [problem_id] [int] NOT NULL, | |
| [problem_description] [varchar](max) NULL, | |
| CONSTRAINT [build_problem_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_state_id] ASC, | |
| [problem_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[build_overriden_roots] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE TABLE [dbo].[build_overriden_roots]( | |
| [build_state_id] [bigint] NOT NULL, | |
| [original_vcs_root_id] [int] NOT NULL, | |
| [substitution_vcs_root_id] [int] NOT NULL, | |
| CONSTRAINT [build_overriden_roots_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_state_id] ASC, | |
| [original_vcs_root_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| CREATE NONCLUSTERED INDEX [build_subst_root_index] ON [dbo].[build_overriden_roots] | |
| ( | |
| [substitution_vcs_root_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[build_labels] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[build_labels]( | |
| [build_id] [bigint] NULL, | |
| [vcs_root_id] [bigint] NULL, | |
| [label] [varchar](80) NULL, | |
| [status] [int] NULL, | |
| [error_message] [varchar](256) NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [build_labels_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [build_labels_build] ON [dbo].[build_labels] | |
| ( | |
| [build_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [build_labels_vcs_root] ON [dbo].[build_labels] | |
| ( | |
| [vcs_root_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[build_dependency] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE TABLE [dbo].[build_dependency]( | |
| [build_state_id] [bigint] NOT NULL, | |
| [depends_on] [bigint] NOT NULL, | |
| [dependency_options] [int] NULL, | |
| CONSTRAINT [build_dependency_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_state_id] ASC, | |
| [depends_on] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| /****** Object: Table [dbo].[build_data_storage] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE TABLE [dbo].[build_data_storage]( | |
| [build_id] [bigint] NOT NULL, | |
| [metric_id] [bigint] NOT NULL, | |
| [metric_value] [decimal](19, 0) NOT NULL, | |
| CONSTRAINT [build_data_storage_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_id] ASC, | |
| [metric_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| /****** Object: Table [dbo].[build_checkout_rules] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[build_checkout_rules]( | |
| [build_state_id] [bigint] NOT NULL, | |
| [build_type_id] [varchar](80) NOT NULL, | |
| [vcs_root_id] [int] NOT NULL, | |
| [checkout_rules] [varchar](max) NULL, | |
| CONSTRAINT [build_checkout_rules_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_state_id] ASC, | |
| [build_type_id] ASC, | |
| [vcs_root_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[build_attrs] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[build_attrs]( | |
| [build_state_id] [bigint] NOT NULL, | |
| [attr_name] [varchar](70) NOT NULL, | |
| [attr_value] [varchar](1000) NULL, | |
| CONSTRAINT [build_attrs_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_state_id] ASC, | |
| [attr_name] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[build_artifact_dependency] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[build_artifact_dependency]( | |
| [build_state_id] [bigint] NULL, | |
| [source_build_type_id] [varchar](80) NULL, | |
| [src_paths] [varchar](max) NULL, | |
| [revision_rule] [varchar](80) NULL, | |
| [branch] [varchar](255) NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [build_artifact_dependency_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [build_artif_dep_state_id] ON [dbo].[build_artifact_dependency] | |
| ( | |
| [build_state_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[backup_info] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[backup_info]( | |
| [mproc_id] [int] NOT NULL, | |
| [file_name] [varchar](1000) NULL, | |
| [file_size] [bigint] NULL, | |
| [started] [datetime] NOT NULL, | |
| [finished] [datetime] NULL, | |
| [status] [char](1) NULL, | |
| CONSTRAINT [backup_info_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [mproc_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [backup_info_file_i] ON [dbo].[backup_info] | |
| ( | |
| [file_name] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[backup_builds] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE TABLE [dbo].[backup_builds]( | |
| [build_id] [bigint] NOT NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [backup_builds_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [backup_builds_ak] UNIQUE NONCLUSTERED | |
| ( | |
| [build_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| /****** Object: Table [dbo].[audit_additional_object] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[audit_additional_object]( | |
| [comment_id] [bigint] NULL, | |
| [object_index] [int] NULL, | |
| [object_id] [varchar](80) NULL, | |
| [object_name] [varchar](max) NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [audit_additional_object_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [audit_a_o_comment] ON [dbo].[audit_additional_object] | |
| ( | |
| [comment_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [audit_a_o_object_index] ON [dbo].[audit_additional_object] | |
| ( | |
| [object_index] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[agent_type_vcs] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[agent_type_vcs]( | |
| [agent_type_id] [int] NOT NULL, | |
| [vcs] [varchar](250) NOT NULL, | |
| CONSTRAINT [agent_type_vcs_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [agent_type_id] ASC, | |
| [vcs] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[agent_type_runner] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[agent_type_runner]( | |
| [agent_type_id] [int] NOT NULL, | |
| [runner] [varchar](250) NOT NULL, | |
| CONSTRAINT [agent_type_runner_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [agent_type_id] ASC, | |
| [runner] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[agent_type_param] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[agent_type_param]( | |
| [agent_type_id] [int] NOT NULL, | |
| [param_kind] [char](1) NOT NULL, | |
| [param_name] [varchar](160) NOT NULL, | |
| [param_value] [varchar](2000) NULL, | |
| CONSTRAINT [agent_type_param_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [agent_type_id] ASC, | |
| [param_kind] ASC, | |
| [param_name] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[agent_type_info] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[agent_type_info]( | |
| [agent_type_id] [int] NOT NULL, | |
| [os_name] [varchar](60) NOT NULL, | |
| [cpu_rank] [int] NULL, | |
| [created_timestamp] [datetime] NULL, | |
| [modified_timestamp] [datetime] NULL, | |
| CONSTRAINT [agent_type_info_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [agent_type_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| /****** Object: Table [dbo].[agent_type_bt_access] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[agent_type_bt_access]( | |
| [agent_type_id] [int] NOT NULL, | |
| [build_type_id] [varchar](80) NOT NULL, | |
| CONSTRAINT [agent_type_bt_access_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [agent_type_id] ASC, | |
| [build_type_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [agent_type_bt_access_bt_i] ON [dbo].[agent_type_bt_access] | |
| ( | |
| [build_type_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[agent_type] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[agent_type]( | |
| [agent_type_id] [int] NOT NULL, | |
| [agent_pool_id] [int] NOT NULL, | |
| [cloud_code] [varchar](6) NOT NULL, | |
| [profile_id] [varchar](30) NOT NULL, | |
| [image_id] [varchar](60) NOT NULL, | |
| [policy] [int] NOT NULL, | |
| CONSTRAINT [agent_type_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [agent_type_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [agent_type_ak] UNIQUE NONCLUSTERED | |
| ( | |
| [cloud_code] ASC, | |
| [profile_id] ASC, | |
| [image_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [agent_type_pool_i] ON [dbo].[agent_type] | |
| ( | |
| [agent_pool_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[agent_sources_version] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[agent_sources_version]( | |
| [build_type_id] [varchar](80) NOT NULL, | |
| [vcs_root_id] [int] NOT NULL, | |
| [agent_id] [int] NOT NULL, | |
| [vcs_settings_hash] [varchar](16) NOT NULL, | |
| [checkout_dir] [varchar](2048) NULL, | |
| [current_version] [varchar](80) NULL, | |
| CONSTRAINT [agent_sources_version_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [build_type_id] ASC, | |
| [vcs_settings_hash] ASC, | |
| [vcs_root_id] ASC, | |
| [agent_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [agent_sources_version_hidx] ON [dbo].[agent_sources_version] | |
| ( | |
| [vcs_settings_hash] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[agent_pool_project] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[agent_pool_project]( | |
| [agent_pool_id] [int] NOT NULL, | |
| [project_int_id] [varchar](80) NOT NULL, | |
| CONSTRAINT [agent_pool_project_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [agent_pool_id] ASC, | |
| [project_int_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| INSERT [dbo].[agent_pool_project] ([agent_pool_id], [project_int_id]) VALUES (0, N'_Root') | |
| /****** Object: Table [dbo].[agent_pool] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[agent_pool]( | |
| [agent_pool_id] [int] NOT NULL, | |
| [agent_pool_name] [varchar](30) NOT NULL, | |
| CONSTRAINT [agent_pool_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [agent_pool_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [agent_pool_ak] UNIQUE NONCLUSTERED | |
| ( | |
| [agent_pool_name] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| INSERT [dbo].[agent_pool] ([agent_pool_id], [agent_pool_name]) VALUES (0, N'Default') | |
| /****** Object: Table [dbo].[agent] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[agent]( | |
| [id] [int] NOT NULL, | |
| [name] [varchar](80) NOT NULL, | |
| [host_addr] [varchar](80) NOT NULL, | |
| [port] [int] NOT NULL, | |
| [agent_type_id] [int] NOT NULL, | |
| [status] [int] NULL, | |
| [authorized] [int] NULL, | |
| [registered] [int] NULL, | |
| [registration_timestamp] [bigint] NULL, | |
| [last_binding_timestamp] [bigint] NULL, | |
| [unregistered_reason] [varchar](256) NULL, | |
| [authorization_token] [varchar](32) NULL, | |
| [status_to_restore] [int] NULL, | |
| [status_restoring_timestamp] [bigint] NULL, | |
| CONSTRAINT [agent_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) , | |
| CONSTRAINT [agent_name_ui] UNIQUE NONCLUSTERED | |
| ( | |
| [name] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [agent_agent_type_id] ON [dbo].[agent] | |
| ( | |
| [agent_type_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [agent_authorization_token] ON [dbo].[agent] | |
| ( | |
| [authorization_token] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [agent_host_address] ON [dbo].[agent] | |
| ( | |
| [host_addr] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Table [dbo].[action_history] Script Date: 09/28/2013 17:34:01 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| SET ANSI_PADDING ON | |
| GO | |
| CREATE TABLE [dbo].[action_history]( | |
| [object_id] [varchar](80) NULL, | |
| [comment_id] [bigint] NULL, | |
| [action] [int] NULL, | |
| [additional_data] [varchar](80) NULL, | |
| [pkid] [bigint] IDENTITY(1,1) NOT NULL, | |
| CONSTRAINT [action_history_pk] PRIMARY KEY CLUSTERED | |
| ( | |
| [pkid] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| ) | |
| GO | |
| SET ANSI_PADDING OFF | |
| GO | |
| CREATE NONCLUSTERED INDEX [action_history_action_object_i] ON [dbo].[action_history] | |
| ( | |
| [action] ASC, | |
| [object_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [action_history_comment] ON [dbo].[action_history] | |
| ( | |
| [comment_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| CREATE NONCLUSTERED INDEX [action_history_object] ON [dbo].[action_history] | |
| ( | |
| [object_id] ASC | |
| )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) | |
| GO | |
| /****** Object: Default [DF__test_info__durat__4E88ABD4] Script Date: 09/28/2013 17:34:01 ******/ | |
| ALTER TABLE [dbo].[test_info] ADD DEFAULT ((0)) FOR [duration] | |
| GO | |
| /****** Object: Default [DF__responsib__remov__208CD6FA] Script Date: 09/28/2013 17:34:01 ******/ | |
| ALTER TABLE [dbo].[responsibilities] ADD DEFAULT ((0)) FOR [remove_method] | |
| GO | |
| /****** Object: Default [DF__build_sta__is_pe__1920BF5C] Script Date: 09/28/2013 17:34:01 ******/ | |
| ALTER TABLE [dbo].[build_state] ADD DEFAULT ((0)) FOR [is_personal] | |
| GO | |
| /****** Object: Default [DF__build_sta__is_ca__1A14E395] Script Date: 09/28/2013 17:34:01 ******/ | |
| ALTER TABLE [dbo].[build_state] ADD DEFAULT ((0)) FOR [is_canceled] | |
| GO | |
| /****** Object: Default [DF__build_sta__is_ch__1B0907CE] Script Date: 09/28/2013 17:34:01 ******/ | |
| ALTER TABLE [dbo].[build_state] ADD DEFAULT ((0)) FOR [is_changes_detached] | |
| GO | |
| /****** Object: Default [DF__build_sta__is_de__1BFD2C07] Script Date: 09/28/2013 17:34:01 ******/ | |
| ALTER TABLE [dbo].[build_state] ADD DEFAULT ((0)) FOR [is_deleted] | |
| GO | |
| /****** Object: Default [DF__build_lab__statu__02084FDA] Script Date: 09/28/2013 17:34:01 ******/ | |
| ALTER TABLE [dbo].[build_labels] ADD DEFAULT ((0)) FOR [status] | |
| GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment