views:

290

answers:

1

I would like to change variable bdb cache size (bdb_cache_size) on my mysql database to be able to import bigger SQL files (yes, i've set all other variables for example in php.ini to higher values and it does not work) in phpmyadmin.

How can I do that?

+2  A: 

If you're really using BDB in your MySQL database, check you don't have skip-bdb in your my.cnf. Most installations disable it (and disable it this way) by default.

Berkeley DB is going away very soon in MySQL, so if you're using it, I'd recommend you shift to InnoDB (or at the very least MyISAM).

staticsan