[PrestaShopDatabaseException]

User 'motobelfqtmtbpre' has exceeded the 'max_questions' resource (current value: 40000)

			SELECT l.`id_lang`, c.`link_rewrite`
			FROM `ps_category_lang` AS c
			LEFT JOIN  `ps_lang` AS l ON c.`id_lang` = l.`id_lang`
			WHERE c.`id_category` = 600
			AND l.`active` = 1

at line 604 in file classes/db/Db.php

598. 		if ($webservice_call && $errno)
599. 			WebserviceRequest::getInstance()->setError(500, '[SQL Error] '.$this->getMsgError().'. Query was : '.$sql, 97);
600. 		else if (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS'))
601. 		{
602. 			if ($sql)
603. 				throw new PrestaShopDatabaseException($this->getMsgError().'<br /><br /><pre>'.$sql.'</pre>');
604. 			throw new PrestaShopDatabaseException($this->getMsgError());
605. 		}
606. 	}
607. 
608. 	/**