Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. mysql> DROP INDEX `post_text` ON phpbb_posts;
  2. Query OK, 251171 rows affected (7 min 35.04 sec)
  3. Records: 251171 Duplicates: 0 Warnings: 0
  4.  
  5. mysql> ALTER TABLE phpbb_posts DROP INDEX `post_content`;
  6. Query OK, 251182 rows affected (1 min 45.06 sec)
  7. Records: 251182 Duplicates: 0 Warnings: 0
  8.  
  9. mysql> ALTER TABLE phpbb_posts DROP INDEX `post_subject`;
  10. Query OK, 251188 rows affected (1 min 32.55 sec)
  11. Records: 251188 Duplicates: 0 Warnings: 0
  12.  
  13. CREATE TABLE phpbb_posts_new LIKE phpbb_posts;
  14. ALTER TABLE phpbb_posts_new DROP INDEX post_text;
  15. ALTER TABLE phpbb_posts_new DISABLE KEYS;
  16. INSERT INTO phpbb_posts_new SELECT * FROM phpbb_posts;
  17. ALTER TABLE phpbb_posts_new ENABLE KEYS;
  18. ALTER TABLE phpbb_posts RENAME phpbb_posts_old;
  19. ALTER TABLE phpbb_posts_new RENAME phpbb_posts;
  20. DROP TABLE phpbb_posts_old;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement