QUERY: select a.*, ad.articles_name, ad.articles_head_desc_tag, ad.articles_description, ad.articles_viewed, au.authors_id, au.authors_image, au.authors_name, au.authors_image, td.topics_id, td.topics_name from articles a left join authors au on a.authors_id = au.authors_id, articles_to_topics a2t left join topics_description td on a2t.topics_id = td.topics_id, articles_description ad where (a.articles_date_available IS NULL or to_days(a.articles_date_available) <= to_days(now())) and a.articles_id = a2t.articles_id and a.articles_status = '1' and a.articles_id = ad.articles_id and ad.language_id = '1' and td.language_id = '1' GROUP BY a.articles_id ORDER BY a.sort_order, a.articles_date_added DESC LIMIT 0, 13
ERROR: Disk full (/tmp/#sql_2bc_8.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")