Tables [dbo].[usp_lrel_false_bhv_false]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count2
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_b__1229A90A: ididint4
No
Indexes usp_lrel_false_bhv_false_X0: bhvtplIndexes usp_lrel_false_bhv_false_X3: bhvtpl\macrobhvtplint4
Yes
Indexes usp_lrel_false_bhv_false_X3: bhvtpl\macroIndexes usp_lrel_false_bhv_false_X1: macromacronvarchar(30)60
Yes
last_mod_dtint4
Yes
last_mod_bybinary(16)16
Yes
Indexes usp_lrel_false_bhv_false_X2: tenanttenantbinary(16)16
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK__usp_lrel_false_b__1229A90A: idPK__usp_lrel_false_b__1229A90Aid
Yes
usp_lrel_false_bhv_false_X3bhvtpl, macro
Yes
usp_lrel_false_bhv_false_X0bhvtpl
usp_lrel_false_bhv_false_X1macro
usp_lrel_false_bhv_false_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_bhv_false]
(
[id] [int] NOT NULL,
[bhvtpl] [int] 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_bhv_false] ADD CONSTRAINT [PK__usp_lrel_false_b__1229A90A] PRIMARY KEY CLUSTERED ([id]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [usp_lrel_false_bhv_false_X0] ON [dbo].[usp_lrel_false_bhv_false] ([bhvtpl]) ON [PRIMARY]
GO
CREATE UNIQUE NONCLUSTERED INDEX [usp_lrel_false_bhv_false_X3] ON [dbo].[usp_lrel_false_bhv_false] ([bhvtpl], [macro]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [usp_lrel_false_bhv_false_X1] ON [dbo].[usp_lrel_false_bhv_false] ([macro]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [usp_lrel_false_bhv_false_X2] ON [dbo].[usp_lrel_false_bhv_false] ([tenant]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[usp_lrel_false_bhv_false] TO [service_desk_admin_group]
GRANT INSERT ON  [dbo].[usp_lrel_false_bhv_false] TO [service_desk_admin_group]
GRANT DELETE ON  [dbo].[usp_lrel_false_bhv_false] TO [service_desk_admin_group]
GRANT UPDATE ON  [dbo].[usp_lrel_false_bhv_false] TO [service_desk_admin_group]
GRANT SELECT ON  [dbo].[usp_lrel_false_bhv_false] TO [service_desk_ro_group]
GO
EXEC sp_addextendedproperty N'Comment', N'Added r12.5', 'SCHEMA', N'dbo', 'TABLE', N'usp_lrel_false_bhv_false', NULL, NULL
GO
Uses