Doctrine_Query::create()
->select('rec.*')
->from('Records rec')
->limit(5000)
->execute();
Try this.. Its will work fine but increase the limit then u will face problems.Retrieving so many records will cause problems..try to change the logic you are using.Indexing etc may solve your problem but i dont have any idea about that..May be some1 here can help you.