-- This script will create the PasswordHistory table required by Pentana Audit's -- 'prevent password reuse' feature CREATE TABLE PasswordHistory(UserId char(50),Password nvarchar(128),Changed datetime) GO