Imran Omar Bukhsh
Imran Omar Bukhsh

Reputation: 8071

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

Upvotes: 5

Views: 4166

Answers (1)

Book Of Zeus
Book Of Zeus

Reputation: 49885

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

Upvotes: 10

Related Questions