Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does unused database hurt MySQL server performance in any way?

If there are some unused databases on MySQL server is it better to remove those from server?

like image 270
f13o Avatar asked Nov 14 '25 15:11

f13o


1 Answers

If they're unused then by all means remove them.

However, leaving them around shouldn't hurt day-to-day performance as they aren't referenced by any application.

They will have an impact on the server performance in areas such as backups etc. as they are more data that has to be checked and copied etc.

like image 184
ChrisF Avatar answered Nov 17 '25 08:11

ChrisF