Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what if I delete information_schema database from mySQL?

Tags:

sql

mysql

I'm curious to know, "what if I delete information_schema database from mySQL?"

like image 912
PPShein Avatar asked Oct 20 '10 05:10

PPShein


1 Answers

Nothing. It is a bunch of views, not a real tables.

http://dev.mysql.com/doc/refman/5.1/en/information-schema.html

So you cannot use data modification queries on it.

like image 151
zerkms Avatar answered Oct 13 '22 14:10

zerkms