Server Wipe

pajodex

New member
Messages
42
Points
0
How can I wipe all of the data in database without re-doing the database. I mean A total server wipeout.

 
If you dont mind, how do I do it? I mean the code in Sql. Sorry i have no idea

 
TRUNCATE TABLE `table_name1`;TRUNCATE TABLE `table_name2`;
And so on.

If you don't have permissions to truncate tables, I'd reccommend you to use: DELETE FROM `table_name`

But what I should truly reccommend is dropping all tables for the database then loading them again, which can even be faster than that.

 
Back
Top