Tables [dbo].[por_wsrp_reg_data]
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_data: wsrp_reg_data_idwsrp_reg_data_idnvarchar(64)SQL_Latin1_General_CP1_CS_AS128
No
cons_agentnvarchar(128)SQL_Latin1_General_CP1_CS_AS256
Yes
method_get_supportedint4
Yes
cons_modesntextSQL_Latin1_General_CP1_CI_ASmax
Yes
cons_window_statesntextSQL_Latin1_General_CP1_CI_ASmax
Yes
cons_user_scopesntextSQL_Latin1_General_CP1_CI_ASmax
Yes
cons_user_profile_datantextSQL_Latin1_General_CP1_CI_ASmax
Yes
reg_propsntextSQL_Latin1_General_CP1_CI_ASmax
Yes
cons_namentextSQL_Latin1_General_CP1_CI_ASmax
Yes
Indexes Indexes
NameColumnsUnique
Primary Key xpkwsrp_registration_data: wsrp_reg_data_idxpkwsrp_registration_datawsrp_reg_data_id
Yes
Permissions
TypeActionOwning Principal
GrantDeleteportaldba_group
GrantInsertportaldba_group
GrantSelectportaldba_group
GrantUpdateportaldba_group
SQL Script
CREATE TABLE [dbo].[por_wsrp_reg_data]
(
[wsrp_reg_data_id] [nvarchar] (64) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL,
[cons_agent] [nvarchar] (128) COLLATE SQL_Latin1_General_CP1_CS_AS NULL,
[method_get_supported] [int] NULL,
[cons_modes] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[cons_window_states] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[cons_user_scopes] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[cons_user_profile_data] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[reg_props] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[cons_name] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
ALTER TABLE [dbo].[por_wsrp_reg_data] ADD CONSTRAINT [xpkwsrp_registration_data] PRIMARY KEY NONCLUSTERED ([wsrp_reg_data_id]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[por_wsrp_reg_data] TO [portaldba_group]
GRANT INSERT ON  [dbo].[por_wsrp_reg_data] TO [portaldba_group]
GRANT DELETE ON  [dbo].[por_wsrp_reg_data] TO [portaldba_group]
GRANT UPDATE ON  [dbo].[por_wsrp_reg_data] TO [portaldba_group]
GO
Uses
Used By