Tables [dbo].[sa_display_template_loc]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count1168
Created4:36:07 PM Wednesday, March 24, 2010
Last Modified4:36:07 PM Wednesday, March 24, 2010
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK__sa_display_templ__79C80F94: ididint4
No
last_mod_bybinary(16)16
Yes
last_mod_dtint4
Yes
localizationIDint4
No
eventTypeint4
No
displayTemplatentextmax
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK__sa_display_templ__79C80F94: idPK__sa_display_templ__79C80F94id
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].[sa_display_template_loc]
(
[id] [int] NOT NULL,
[last_mod_by] [binary] (16) NULL,
[last_mod_dt] [int] NULL,
[localizationID] [int] NOT NULL,
[eventType] [int] NOT NULL,
[displayTemplate] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
ALTER TABLE [dbo].[sa_display_template_loc] ADD CONSTRAINT [PK__sa_display_templ__79C80F94] PRIMARY KEY CLUSTERED ([id]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[sa_display_template_loc] TO [service_desk_admin_group]
GRANT INSERT ON  [dbo].[sa_display_template_loc] TO [service_desk_admin_group]
GRANT DELETE ON  [dbo].[sa_display_template_loc] TO [service_desk_admin_group]
GRANT UPDATE ON  [dbo].[sa_display_template_loc] TO [service_desk_admin_group]
GRANT SELECT ON  [dbo].[sa_display_template_loc] TO [service_desk_ro_group]
GO
EXEC sp_addextendedproperty N'Comment', N'Added r12.5', 'SCHEMA', N'dbo', 'TABLE', N'sa_display_template_loc', NULL, NULL
GO
Uses