Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MYSQL Flush Tables

I typed 'flush tables' on my shared hosting account at my phpmyadmin. The reason I did this is to see how fast my queries executed when they were not cached. Now when I try to execute any query after typing in the query box, it gives a strange error as such:

import.php: Missing parameter: import_type
import.php: Missing parameter: format

Also using the MYSQL Administrator, i connected to my hosted database. Trying to execute a query gives me

Got error 28 from storage engine

Thanking you

like image 653
Imran Omar Bukhsh Avatar asked Sep 18 '11 07:09

Imran Omar Bukhsh


1 Answers

How do you call your import.php script? Where is this script called from?

This "Got error 28 from storage engine" translates into "Error code 28: No space left on device" – meaning a disk partition on your server's hard disk ran out of free disk space or mysql is running out of space for it's db file

like image 168
Book Of Zeus Avatar answered Nov 20 '22 21:11

Book Of Zeus