Tables [dbo].[HARPASSWORDHISTORY]
Properties
PropertyValue
Row Count0
Created5:00:01 AM Monday, March 02, 2009
Last Modified5:00:27 AM Monday, March 02, 2009
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key HARPASSWORDHISTORY_PK: USROBJIDForeign Keys HARPASSWORDHISTORY_FK: [dbo].[HARUSER].USROBJIDUSROBJIDint4
No
PREVPSSWDSimagemax
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key HARPASSWORDHISTORY_PK: USROBJIDHARPASSWORDHISTORY_PKUSROBJID
Yes
Foreign Keys Foreign Keys
NameDeleteColumns
HARPASSWORDHISTORY_FKCascadeUSROBJID->[dbo].[HARUSER].[USROBJID]
Extended Properties
NameLevel 2 TypeLevel 2 NameValue
CaptionThe HARPASSWORDHISTORY table stores the previously used passwords for the given UserObjId.
CaptionCOLUMNPREVPSSWDSPrevious password
CaptionCOLUMNUSROBJIDObject ID of user
SQL Script
CREATE TABLE [dbo].[HARPASSWORDHISTORY]
(
[USROBJID] [int] NOT NULL,
[PREVPSSWDS] [image] NOT NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
ALTER TABLE [dbo].[HARPASSWORDHISTORY] ADD CONSTRAINT [HARPASSWORDHISTORY_PK] PRIMARY KEY CLUSTERED ([USROBJID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[HARPASSWORDHISTORY] ADD CONSTRAINT [HARPASSWORDHISTORY_FK] FOREIGN KEY ([USROBJID]) REFERENCES [dbo].[HARUSER] ([USROBJID]) ON DELETE CASCADE
GO
EXEC sp_addextendedproperty N'Caption', N'The HARPASSWORDHISTORY table stores the previously used passwords for the given UserObjId. ', 'SCHEMA', N'dbo', 'TABLE', N'HARPASSWORDHISTORY', NULL, NULL
GO
EXEC sp_addextendedproperty N'Caption', N'Previous password', 'SCHEMA', N'dbo', 'TABLE', N'HARPASSWORDHISTORY', 'COLUMN', N'PREVPSSWDS'
GO
EXEC sp_addextendedproperty N'Caption', N'Object ID of user', 'SCHEMA', N'dbo', 'TABLE', N'HARPASSWORDHISTORY', 'COLUMN', N'USROBJID'
GO
Uses