0

Hey i am Getting this error

Out of resources when opening file '#sql_d1c_152.MYD' (Errcode: 24)

in mysql when running a stored procedure

Shauzab Ali Rawjani
  • 256
  • 1
  • 4
  • 16

1 Answers1

1

There is a limit on the number of files you can open simultaneously (1024 I think). You may want to increase the open_files_limit in your MySQL configuration file.

More here: MySQL: Errcode: 24 and here MySQL Bugs: Errcode 24

Some more Information about ideal open_files_limit size: mysql: How do you determine the ideal 'open_files_limit' setting value?

Community
  • 1
  • 1
Joshua Kissoon
  • 3,269
  • 6
  • 32
  • 58