Tables [dbo].[usp_mailbox_rule]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count20
Created4:36:15 PM Wednesday, March 24, 2010
Last Modified4:36:15 PM Wednesday, March 24, 2010
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK__usp_mailbox_rule__4B622666: ididint4
No
delint4
No
last_mod_dtint4
Yes
last_mod_bybinary(16)16
Yes
Indexes usp_mailbox_rule_X0: mailbox\sequencemailboxint4
No
action_objectnvarchar(30)60
Yes
action_operationint4
Yes
action_write_to_logint4
Yes
action_log_prefixnvarchar(30)60
Yes
action_subject_handlingint4
Yes
descriptionntextmax
Yes
filter_ignore_caseint4
Yes
filter_stringnvarchar(255)510
Yes
filter_typeint4
Yes
filter_min_artifact_typeint4
Yes
reply_methodint4
Yes
reply_subjectnvarchar(200)400
Yes
Indexes usp_mailbox_rule_X0: mailbox\sequencesequenceint4
Yes
text_api_defaultsntextmax
Yes
text_api_ignore_incomingntextmax
Yes
reply_failure_htmlntextmax
Yes
reply_failure_textntextmax
Yes
reply_success_htmlntextmax
Yes
reply_success_textntextmax
Yes
tenantbinary(16)16
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK__usp_mailbox_rule__4B622666: idPK__usp_mailbox_rule__4B622666id
Yes
usp_mailbox_rule_X0mailbox, sequence
Yes
Permissions
TypeActionOwning Principal
GrantDeleteservice_desk_admin_group
GrantInsertservice_desk_admin_group
GrantSelectservice_desk_admin_group
GrantUpdateservice_desk_admin_group
GrantSelectservice_desk_ro_group
Extended Properties
NameValue
CommentAdded r12.5
SQL Script
CREATE TABLE [dbo].[usp_mailbox_rule]
(
[id] [int] NOT NULL,
[del] [int] NOT NULL,
[last_mod_dt] [int] NULL,
[last_mod_by] [binary] (16) NULL,
[mailbox] [int] NOT NULL,
[action_object] [nvarchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[action_operation] [int] NULL,
[action_write_to_log] [int] NULL,
[action_log_prefix] [nvarchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[action_subject_handling] [int] NULL,
[description] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[filter_ignore_case] [int] NULL,
[filter_string] [nvarchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[filter_type] [int] NULL,
[filter_min_artifact_type] [int] NULL,
[reply_method] [int] NULL,
[reply_subject] [nvarchar] (200) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[sequence] [int] NULL,
[text_api_defaults] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[text_api_ignore_incoming] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[reply_failure_html] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[reply_failure_text] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[reply_success_html] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[reply_success_text] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[tenant] [binary] (16) NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
ALTER TABLE [dbo].[usp_mailbox_rule] ADD CONSTRAINT [PK__usp_mailbox_rule__4B622666] PRIMARY KEY CLUSTERED ([id]) ON [PRIMARY]
GO
CREATE UNIQUE NONCLUSTERED INDEX [usp_mailbox_rule_X0] ON [dbo].[usp_mailbox_rule] ([mailbox], [sequence]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[usp_mailbox_rule] TO [service_desk_admin_group]
GRANT INSERT ON  [dbo].[usp_mailbox_rule] TO [service_desk_admin_group]
GRANT DELETE ON  [dbo].[usp_mailbox_rule] TO [service_desk_admin_group]
GRANT UPDATE ON  [dbo].[usp_mailbox_rule] TO [service_desk_admin_group]
GRANT SELECT ON  [dbo].[usp_mailbox_rule] TO [service_desk_ro_group]
GO
EXEC sp_addextendedproperty N'Comment', N'Added r12.5', 'SCHEMA', N'dbo', 'TABLE', N'usp_mailbox_rule', NULL, NULL
GO
Uses