Tables [dbo].[rmonhostcontrol]
Properties
PropertyValue
HeapYes
Row Count0
Created11:07:27 AM Wednesday, March 07, 2007
Last Modified11:09:42 AM Wednesday, March 07, 2007
Columns
NameData TypeMax Length (Bytes)Allow Nulls
server_addrint4
Yes
Indexes baseidx_rmonhostcontrol: probe_addr\intervaldatetime\hostcontrolindexprobe_addrint4
Yes
Indexes baseidx_rmonhostcontrol: probe_addr\intervaldatetime\hostcontrolindexintervaldatetimedatetime8
Yes
Indexes baseidx_rmonhostcontrol: probe_addr\intervaldatetime\hostcontrolindexhostcontrolindexint4
Yes
hostcontroldatasourceint4
Yes
hostcontrolstatustinyint1
Yes
hosttopngrantedsize0tinyint1
Yes
hosttopngrantedsize1tinyint1
Yes
hosttopngrantedsize2tinyint1
Yes
hosttopngrantedsize3tinyint1
Yes
hosttopngrantedsize4tinyint1
Yes
hosttopngrantedsize5tinyint1
Yes
hosttopngrantedsize6tinyint1
Yes
Indexes Indexes
NameColumns
baseidx_rmonhostcontrolprobe_addr, intervaldatetime, hostcontrolindex
Permissions
TypeActionOwning Principal
GrantDeleteuniadmin
GrantInsertuniadmin
GrantSelectuniadmin
GrantUpdateuniadmin
GrantSelectuniuser
SQL Script
CREATE TABLE [dbo].[rmonhostcontrol]
(
[server_addr] [int] NULL,
[probe_addr] [int] NULL,
[intervaldatetime] [datetime] NULL,
[hostcontrolindex] [int] NULL,
[hostcontroldatasource] [int] NULL,
[hostcontrolstatus] [tinyint] NULL,
[hosttopngrantedsize0] [tinyint] NULL,
[hosttopngrantedsize1] [tinyint] NULL,
[hosttopngrantedsize2] [tinyint] NULL,
[hosttopngrantedsize3] [tinyint] NULL,
[hosttopngrantedsize4] [tinyint] NULL,
[hosttopngrantedsize5] [tinyint] NULL,
[hosttopngrantedsize6] [tinyint] NULL
) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [baseidx_rmonhostcontrol] ON [dbo].[rmonhostcontrol] ([probe_addr], [intervaldatetime], [hostcontrolindex]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[rmonhostcontrol] TO [uniadmin]
GRANT INSERT ON  [dbo].[rmonhostcontrol] TO [uniadmin]
GRANT DELETE ON  [dbo].[rmonhostcontrol] TO [uniadmin]
GRANT UPDATE ON  [dbo].[rmonhostcontrol] TO [uniadmin]
GRANT SELECT ON  [dbo].[rmonhostcontrol] TO [uniuser]
GO
Uses