Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I Use Mysql 5.5.. + INNODB and windows server.

The case(make it simple then real case):

I have 2 tables 1GB with name new_car and car table 1GB.

I to replace car table with new_car table every 10 hours not manually(auto by code) - important to do it fast(real website data).

I read(say that drop its problem in innodb) :http://www.mysqlperformanceblog.com/2011/02/03/performance-problem-with-innodb-and-drop-table/

solution1:

DROP TABLE car;
RENAME TABLE new_car TO car;

Solution2(making drop in the end -maybe it not block the table to access that happen during drop):

RENAME TABLE car TO temp_car;
RENAME TABLE new_car TO car;
DROP TABLE temp_car;

Solution3(Truncate delete fast the table and create empty table then maybe drop action after should be very fast):

TRUNCATE TABLE car;
DROP TABLE car;
RENAME TABLE new_car TO car; 

Solution4:

RENAME TABLE car TO temp_car;
RENAME TABLE new_car TO car;
TRUNCATE TABLE temp_car;
DROP TABLE temp_car;

Which solution is the best and why or please write other better solution?

Thanks

share|improve this question
2  
Set up a development and test environment and test it. – Dems Oct 12 '12 at 10:08
See in this link we could alter the table name seems. Have a backup copy before doing any. – The Unlucky Oct 12 '12 at 10:24
i read the link above before i ask the question, thanks – Yosef Oct 12 '12 at 10:57
Solution 2 looks good. Go for it. Even better, leave temp_car for a while in case you need to go back. – Ben Oct 12 '12 at 11:36
Ben, what about solution4?(the process done auto by code every 10 hours and not manually) – Yosef Oct 12 '12 at 11:44

1 Answer

up vote 1 down vote accepted

I don't understand why you would DROP the table. You always want those 2 tables and you'd (I'd assume be refilling up the New_Car table...

RENAME TABLE car TO temp_car;
RENAME TABLE new_car TO car;
TRUNCATE TABLE temp_car;
RENAME TABLE temp_car TO new_car;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.