CREATE TABLE [dbo].[e2e_wrm_wrm]
(
[sourceid] [int] NOT NULL,
[identifierid] [int] NOT NULL,
[transactionid] [int] NOT NULL,
[typeid] [int] NOT NULL,
[newsumstatid] [int] NULL,
[urlid] [int] NULL,
[urldescription] [varchar] (256) COLLATE SQL_Latin1_General_CP1_CS_AS NULL,
[warnthres] [int] NULL,
[critthres] [int] NULL,
[resptime] [int] NULL,
[firstbytems] [int] NULL,
[groupid] [int] NULL,
[newrespstatid] [int] NULL,
[newaccuracystatid] [int] NULL,
[statuscode] [int] NULL,
[statusmessageid] [int] NULL,
[bytesrec] [int] NULL,
[activedetailid] [int] NULL,
[timestart] [datetime] NOT NULL,
[timeend] [datetime] NOT NULL,
[contentcheckid] [int] NULL,
[retrycount] [int] NULL,
[connecttimems] [int] NULL,
[pingtimems] [int] NULL,
[issent] [int] NULL CONSTRAINT [DF__e2e_wrm_w__issen__3469B275] DEFAULT ((0)),
[requestnameid] [int] NULL,
[agedate] [int] NULL
) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[e2e_wrm_wrm] TO [apmadmin]
GRANT INSERT ON [dbo].[e2e_wrm_wrm] TO [apmadmin]
GRANT DELETE ON [dbo].[e2e_wrm_wrm] TO [apmadmin]
GRANT UPDATE ON [dbo].[e2e_wrm_wrm] TO [apmadmin]
GO