Tables [dbo].[usp_notification_phrase]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count10
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_notification__54EB90A0: ididint4
No
delint4
Yes
last_mod_dtint4
Yes
last_mod_bybinary(16)16
Yes
Indexes usp_notification_phrase_X0: codecodenvarchar(30)60
No
Indexes usp_notification_phrase_X1: symsymnvarchar(60)120
Yes
descriptionntextmax
Yes
phrasentextmax
Yes
tenantbinary(16)16
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK__usp_notification__54EB90A0: idPK__usp_notification__54EB90A0id
Yes
usp_notification_phrase_X0code
Yes
usp_notification_phrase_X1sym
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_notification_phrase]
(
[id] [int] NOT NULL,
[del] [int] NULL,
[last_mod_dt] [int] NULL,
[last_mod_by] [binary] (16) NULL,
[code] [nvarchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[sym] [nvarchar] (60) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[description] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[phrase] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[tenant] [binary] (16) NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
ALTER TABLE [dbo].[usp_notification_phrase] ADD CONSTRAINT [PK__usp_notification__54EB90A0] PRIMARY KEY CLUSTERED ([id]) ON [PRIMARY]
GO
CREATE UNIQUE NONCLUSTERED INDEX [usp_notification_phrase_X0] ON [dbo].[usp_notification_phrase] ([code]) ON [PRIMARY]
GO
CREATE UNIQUE NONCLUSTERED INDEX [usp_notification_phrase_X1] ON [dbo].[usp_notification_phrase] ([sym]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[usp_notification_phrase] TO [service_desk_admin_group]
GRANT INSERT ON  [dbo].[usp_notification_phrase] TO [service_desk_admin_group]
GRANT DELETE ON  [dbo].[usp_notification_phrase] TO [service_desk_admin_group]
GRANT UPDATE ON  [dbo].[usp_notification_phrase] TO [service_desk_admin_group]
GRANT SELECT ON  [dbo].[usp_notification_phrase] TO [service_desk_ro_group]
GO
EXEC sp_addextendedproperty N'Comment', N'Added r12.5', 'SCHEMA', N'dbo', 'TABLE', N'usp_notification_phrase', NULL, NULL
GO
Uses