About the SQL commands I said, it's basically like that: (free SQL lesson everyone!)
DELETE FROM SIGNATURES - will delete every row from a table called signatures, asuming the signatures are stored in a table called that
COMMIT - will confirm the operation and effectively delete those rows
DROP TABLE SIGNATURES - will remove that table from the database
(Always perform a delete before the drop, so you can be sure it won't have any impact on stored procedures or something like that)