
[dbo].[e2e_adm_performance]
CREATE TABLE [dbo].[e2e_adm_performance]
(
[client_id] [int] NULL,
[server_id] [int] NULL,
[server_port] [int] NOT NULL,
[packet_count] [int] NULL,
[packets_per_second] [float] NULL,
[average_bytes_per_packet] [float] NULL,
[bytes_per_second] [float] NULL,
[connection_count] [int] NULL,
[average_connect_time] [float] NULL,
[average_transfer_time] [float] NULL,
[number_of_resends] [int] NULL,
[gmt_start_time] [float] NULL,
[gmt_date_time] [datetime] NULL,
[gmt_time_of_day] [datetime] NULL,
[gmt_date] [datetime] NULL,
[hourly_aggregation_done] [tinyint] NULL,
[daily_aggregation_done] [tinyint] NULL
) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [xif1e2e_adm_performance] ON [dbo].[e2e_adm_performance] ([client_id]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [xif2e2e_adm_performance] ON [dbo].[e2e_adm_performance] ([server_id]) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[e2e_adm_performance] TO [apmadmin]
GRANT INSERT ON [dbo].[e2e_adm_performance] TO [apmadmin]
GRANT DELETE ON [dbo].[e2e_adm_performance] TO [apmadmin]
GRANT UPDATE ON [dbo].[e2e_adm_performance] TO [apmadmin]
GO