Tables [dbo].[usp_lrel_false_action_act_f]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count1
Created10:24:24 AM Sunday, December 05, 2010
Last Modified10:24:24 AM Sunday, December 05, 2010
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK__usp_lrel_false_a__10416098: ididint4
No
Indexes usp_lrel_false_action_act_f_X0: evtIndexes usp_lrel_false_action_act_f_X3: evt\macroevtnvarchar(30)60
Yes
Indexes usp_lrel_false_action_act_f_X3: evt\macroIndexes usp_lrel_false_action_act_f_X1: macromacronvarchar(30)60
Yes
last_mod_dtint4
Yes
last_mod_bybinary(16)16
Yes
Indexes usp_lrel_false_action_act_f_X2: tenanttenantbinary(16)16
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK__usp_lrel_false_a__10416098: idPK__usp_lrel_false_a__10416098id
Yes
usp_lrel_false_action_act_f_X3evt, macro
Yes
usp_lrel_false_action_act_f_X0evt
usp_lrel_false_action_act_f_X1macro
usp_lrel_false_action_act_f_X2tenant
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_lrel_false_action_act_f]
(
[id] [int] NOT NULL,
[evt] [nvarchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[macro] [nvarchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[last_mod_dt] [int] NULL,
[last_mod_by] [binary] (16) NULL,
[tenant] [binary] (16) NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[usp_lrel_false_action_act_f] ADD CONSTRAINT [PK__usp_lrel_false_a__10416098] PRIMARY KEY CLUSTERED ([id]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [usp_lrel_false_action_act_f_X0] ON [dbo].[usp_lrel_false_action_act_f] ([evt]) ON [PRIMARY]
GO
CREATE UNIQUE NONCLUSTERED INDEX [usp_lrel_false_action_act_f_X3] ON [dbo].[usp_lrel_false_action_act_f] ([evt], [macro]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [usp_lrel_false_action_act_f_X1] ON [dbo].[usp_lrel_false_action_act_f] ([macro]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [usp_lrel_false_action_act_f_X2] ON [dbo].[usp_lrel_false_action_act_f] ([tenant]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[usp_lrel_false_action_act_f] TO [service_desk_admin_group]
GRANT INSERT ON  [dbo].[usp_lrel_false_action_act_f] TO [service_desk_admin_group]
GRANT DELETE ON  [dbo].[usp_lrel_false_action_act_f] TO [service_desk_admin_group]
GRANT UPDATE ON  [dbo].[usp_lrel_false_action_act_f] TO [service_desk_admin_group]
GRANT SELECT ON  [dbo].[usp_lrel_false_action_act_f] TO [service_desk_ro_group]
GO
EXEC sp_addextendedproperty N'Comment', N'Added r12.5', 'SCHEMA', N'dbo', 'TABLE', N'usp_lrel_false_action_act_f', NULL, NULL
GO
Uses