Tables [dbo].[e2e_apm_temp_data]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CS_AS
HeapYes
Row Count0
Created11:07:13 AM Wednesday, March 07, 2007
Last Modified11:07:13 AM Wednesday, March 07, 2007
Columns
NameData TypeMax Length (Bytes)Allow Nulls
trans_idint4
Yes
app_idint4
Yes
op_idint4
Yes
host_idint4
Yes
client_idint4
Yes
user_idint4
Yes
server_idint4
Yes
start_datetimedatetime8
Yes
gmt_datetimedatetime8
Yes
local_timeint4
Yes
local_dateint4
Yes
gmt_timeint4
Yes
gmt_dateint4
Yes
durationfloat8
Yes
local_durfloat8
Yes
wire_durfloat8
Yes
server_durfloat8
Yes
num_completeint4
Yes
num_cancelledint4
Yes
num_exceptionint4
Yes
delta_thresholdfloat8
Yes
cpu_utilint4
Yes
mem_utilint4
Yes
net_globalint4
Yes
net_totalint4
Yes
packet_lossint4
Yes
source_idsmallint2
Yes
old_datatinyint1
Yes
trans_cachedtinyint1
Yes
trans_wellnesstinyint1
Yes
exception_thresholdint4
Yes
trans_detailvarchar(255)255
Yes
trans_titlevarchar(255)255
Yes
old_hourlytinyint1
Yes
old_dailytinyint1
Yes
Permissions
TypeActionOwning Principal
GrantDeleteapmadmin
GrantInsertapmadmin
GrantSelectapmadmin
GrantUpdateapmadmin
SQL Script
CREATE TABLE [dbo].[e2e_apm_temp_data]
(
[trans_id] [int] NULL,
[app_id] [int] NULL,
[op_id] [int] NULL,
[host_id] [int] NULL,
[client_id] [int] NULL,
[user_id] [int] NULL,
[server_id] [int] NULL,
[start_datetime] [datetime] NULL,
[gmt_datetime] [datetime] NULL,
[local_time] [int] NULL,
[local_date] [int] NULL,
[gmt_time] [int] NULL,
[gmt_date] [int] NULL,
[duration] [float] NULL,
[local_dur] [float] NULL,
[wire_dur] [float] NULL,
[server_dur] [float] NULL,
[num_complete] [int] NULL,
[num_cancelled] [int] NULL,
[num_exception] [int] NULL,
[delta_threshold] [float] NULL,
[cpu_util] [int] NULL,
[mem_util] [int] NULL,
[net_global] [int] NULL,
[net_total] [int] NULL,
[packet_loss] [int] NULL,
[source_id] [smallint] NULL,
[old_data] [tinyint] NULL,
[trans_cached] [tinyint] NULL,
[trans_wellness] [tinyint] NULL,
[exception_threshold] [int] NULL,
[trans_detail] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CS_AS NULL,
[trans_title] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CS_AS NULL,
[old_hourly] [tinyint] NULL,
[old_daily] [tinyint] NULL
) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[e2e_apm_temp_data] TO [apmadmin]
GRANT INSERT ON  [dbo].[e2e_apm_temp_data] TO [apmadmin]
GRANT DELETE ON  [dbo].[e2e_apm_temp_data] TO [apmadmin]
GRANT UPDATE ON  [dbo].[e2e_apm_temp_data] TO [apmadmin]
GO
Uses