Tables [dbo].[sa_localization]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count9
Created4:36:08 PM Wednesday, March 24, 2010
Last Modified4:36:08 PM Wednesday, March 24, 2010
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK__sa_localization__3118447E: ididint4
No
localizationIDint4
No
last_mod_bybinary(16)16
Yes
last_mod_dtint4
Yes
enabledint4
Yes
namenvarchar(100)200
Yes
is_defaultint4
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK__sa_localization__3118447E: idPK__sa_localization__3118447Eid
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_localization]
(
[id] [int] NOT NULL,
[localizationID] [int] NOT NULL,
[last_mod_by] [binary] (16) NULL,
[last_mod_dt] [int] NULL,
[enabled] [int] NULL,
[name] [nvarchar] (100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[is_default] [int] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[sa_localization] ADD CONSTRAINT [PK__sa_localization__3118447E] PRIMARY KEY CLUSTERED ([id]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[sa_localization] TO [service_desk_admin_group]
GRANT INSERT ON  [dbo].[sa_localization] TO [service_desk_admin_group]
GRANT DELETE ON  [dbo].[sa_localization] TO [service_desk_admin_group]
GRANT UPDATE ON  [dbo].[sa_localization] TO [service_desk_admin_group]
GRANT SELECT ON  [dbo].[sa_localization] TO [service_desk_ro_group]
GO
EXEC sp_addextendedproperty N'Comment', N'Added r12.5', 'SCHEMA', N'dbo', 'TABLE', N'sa_localization', NULL, NULL
GO
Uses