
[dbo].[usm_metric_resultxxxxx]
CREATE TABLE [dbo].[usm_metric_resultxxxxx]
(
[sm_start_time] [datetime] NULL,
[sm_end_time] [datetime] NULL,
[sm_result] [float] NULL,
[sm_result_status] [int] NULL,
[sm_exclude] [int] NULL,
[grouped_by] [varchar] (20) COLLATE SQL_Latin1_General_CP1_CS_AS NULL,
[group_by_type] [int] NULL,
[metric_instance_id] [int] NULL,
[maximum] [float] NULL,
[minimum] [float] NULL,
[no_of_samples] [int] NULL,
[reduction_level] [int] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[usm_metric_resultxxxxx] ADD CONSTRAINT [$usm_m_r0000272500000000] FOREIGN KEY ([metric_instance_id]) REFERENCES [dbo].[usm_metric_instance] ([metric_instance_id])
GO
GRANT SELECT ON [dbo].[usm_metric_resultxxxxx] TO [usmgroup]
GRANT INSERT ON [dbo].[usm_metric_resultxxxxx] TO [usmgroup]
GRANT DELETE ON [dbo].[usm_metric_resultxxxxx] TO [usmgroup]
GRANT UPDATE ON [dbo].[usm_metric_resultxxxxx] TO [usmgroup]
GO