What is the maximum number of tables that MySQL can handle?
Thanks in advance.
John
What is the maximum number of tables that MySQL can handle?
Thanks in advance.
John
The fact that you are asking this question is probably an indicator that you are not taking a best practice approach to your problem.
You may want to explain why you need to create many tables, in order to see if you will receive better suggestions on how to tackle this issue.
However, there are no server limits on the number of tables in a MySQL database, but since each MyISAM table has associated files, then any OS limits on the number of files allowed will have an effect. InnoDB tables, indexes, etc, are stored in a single tablespace, with a maximum of two billion tables. (Source)