Reputation: 35
i have 67508 data row, and i have error like this, how to solve this?
the error like this :
A Database Error Occurred
Error Number: IMSSP/-59
Memory limit of 10240 KB exceeded for buffered query
Upvotes: 2
Views: 5746
Reputation: 157
Add the following lines to your php.ini.
extension=php_pdo_sqlsrv_55_ts.dll
extension=php_sqlsrv_55_ts.dll
client_buffer_max_kb_size = '50240'
sqlsrv.ClientBufferMaxKBSize = 50240
Upvotes: 3