/* DB Stress Tool - Remove Stress Tool DB Author: Michael Thomas - michael@michael-thomas.com Original: 06/26/07 Modified: 06/26/07 Description.: Remove the DB Stress Tool DB (setup environment). Windows Task Manager: sqlservr.exe - should be taking up the CPU time. Prerequisite: None. */ use master IF EXISTS (SELECT name FROM master.dbo.sysdatabases WHERE name = N'MyTempDB_StressTool') begin DROP DATABASE [MyTempDB_StressTool] end go