
January 30th, 2008, 05:59 PM
|
|
Contributing User
|
|
Join Date: Jun 2006
Posts: 33
  
Time spent in forums: 12 h 5 m
Reputation Power: 8
|
|
|
Yes, I do realize that. I want to clear out a huge table and I'm trying to find a quick way to do it.
DELETE FROM would take too long and so if DROPing the table and then re-creating it is faster, that's fine with me. I just want to get rid of the data.
TRUNCATE TABLE is a quick way to delete rows from a table, but it doesn't actually remove the data. I need to way to REMOVE all that data the quickest way possible.
|