Tables [dbo].[SessionLock]
Properties
PropertyValue
CollationLatin1_General_CI_AS_KS_WS
Row Count0
Created12:33:27 PM Tuesday, March 06, 2007
Last Modified12:33:27 PM Tuesday, March 06, 2007
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Key IDX_SessionLock: SessionIDSessionIDvarchar(32)32
No
Indexes Indexes
NameColumnsUnique
Cluster Key IDX_SessionLock: SessionIDIDX_SessionLockSessionID
Yes
Permissions
TypeActionOwning Principal
GrantDeleteRSExecRole
GrantInsertRSExecRole
GrantReferencesRSExecRole
GrantSelectRSExecRole
GrantUpdateRSExecRole
SQL Script
CREATE TABLE [dbo].[SessionLock]
(
[SessionID] [varchar] (32) COLLATE Latin1_General_CI_AS_KS_WS NOT NULL
) ON [PRIMARY]
GO
CREATE UNIQUE CLUSTERED INDEX [IDX_SessionLock] ON [dbo].[SessionLock] ([SessionID]) ON [PRIMARY]
GO
GRANT REFERENCES ON  [dbo].[SessionLock] TO [RSExecRole]
GRANT SELECT ON  [dbo].[SessionLock] TO [RSExecRole]
GRANT INSERT ON  [dbo].[SessionLock] TO [RSExecRole]
GRANT DELETE ON  [dbo].[SessionLock] TO [RSExecRole]
GRANT UPDATE ON  [dbo].[SessionLock] TO [RSExecRole]
GO
Uses
Used By