/* this script works on a database that is a copy of pubs. I created this database easily with DTS This works on SQL Server 7 databases */ /* NOTE: This script will truly corrupt a database. It should not be run on ANY real database. It is only for simulating corruption for training purposes. */ sp_configure allow, 1 go reconfigure with override go update sysindexes set FirstIAM = 1234 where id = OBJECT_ID('roysched') go sp_configure allow, 0 go reconfigure with override go