From SQL Mgmt Studio query analyzer do the following to bulk delete records from tables:
If you want to remove ALL the records from a table:
Truncate "tablename"
If you want to delete records that meet a certain condition:
Delete * from "table" where "some condition"