Tables [dbo].[por_wsrp_reg_context]
Properties
PropertyValue
HeapYes
Row Count0
Created11:07:26 AM Wednesday, March 07, 2007
Last Modified11:09:56 AM Wednesday, March 07, 2007
Columns
NameData TypeCollationMax Length (Bytes)Allow Nulls
Primary Key xpkwsrp_registration_context: wsrp_reg_context_idwsrp_reg_context_idnvarchar(64)SQL_Latin1_General_CP1_CS_AS128
No
reg_statentextSQL_Latin1_General_CP1_CI_ASmax
Yes
reg_handlenvarchar(256)SQL_Latin1_General_CP1_CS_AS512
Yes
Indexes Indexes
NameColumnsUnique
Primary Key xpkwsrp_registration_context: wsrp_reg_context_idxpkwsrp_registration_contextwsrp_reg_context_id
Yes
Permissions
TypeActionOwning Principal
GrantDeleteportaldba_group
GrantInsertportaldba_group
GrantSelectportaldba_group
GrantUpdateportaldba_group
SQL Script
CREATE TABLE [dbo].[por_wsrp_reg_context]
(
[wsrp_reg_context_id] [nvarchar] (64) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL,
[reg_state] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[reg_handle] [nvarchar] (256) COLLATE SQL_Latin1_General_CP1_CS_AS NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
ALTER TABLE [dbo].[por_wsrp_reg_context] ADD CONSTRAINT [xpkwsrp_registration_context] PRIMARY KEY NONCLUSTERED ([wsrp_reg_context_id]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[por_wsrp_reg_context] TO [portaldba_group]
GRANT INSERT ON  [dbo].[por_wsrp_reg_context] TO [portaldba_group]
GRANT DELETE ON  [dbo].[por_wsrp_reg_context] TO [portaldba_group]
GRANT UPDATE ON  [dbo].[por_wsrp_reg_context] TO [portaldba_group]
GO
Uses
Used By