Tables [dbo].[usp_contact_handling]
Properties
PropertyValue
Row Count1
Created4:36:13 PM Wednesday, March 24, 2010
Last Modified4:36:13 PM Wednesday, March 24, 2010
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK__usp_contact_hand__6A1BB7B0: ididint4
No
contactbinary(16)16
No
special_handlingint4
No
tenantbinary(16)16
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK__usp_contact_hand__6A1BB7B0: idPK__usp_contact_hand__6A1BB7B0id
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_contact_handling]
(
[id] [int] NOT NULL,
[contact] [binary] (16) NOT NULL,
[special_handling] [int] NOT NULL,
[tenant] [binary] (16) NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[usp_contact_handling] ADD CONSTRAINT [PK__usp_contact_hand__6A1BB7B0] PRIMARY KEY CLUSTERED ([id]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[usp_contact_handling] TO [service_desk_admin_group]
GRANT INSERT ON  [dbo].[usp_contact_handling] TO [service_desk_admin_group]
GRANT DELETE ON  [dbo].[usp_contact_handling] TO [service_desk_admin_group]
GRANT UPDATE ON  [dbo].[usp_contact_handling] TO [service_desk_admin_group]
GRANT SELECT ON  [dbo].[usp_contact_handling] TO [service_desk_ro_group]
GO
EXEC sp_addextendedproperty N'Comment', N'Added r12.5', 'SCHEMA', N'dbo', 'TABLE', N'usp_contact_handling', NULL, NULL
GO
Uses