I am trying to run a graph simply to extarct three columns from a table in MySql. The table has little over 4 million rows. I am getting this error. If I limit in 100000
Error writing file ‘/tmp/MYfS3dok’ (Errcode: 28).
Thanks,
Kasturi
I am trying to run a graph simply to extarct three columns from a table in MySql. The table has little over 4 million rows. I am getting this error. If I limit in 100000
Error writing file ‘/tmp/MYfS3dok’ (Errcode: 28).
Thanks,
Kasturi
Hello Kasturi,
MySQL can create large temporary files, when reading data from the database. This error points to a lack of disk space to be able to store the query results (see http://lists.mysql.com/mysql/214982).
Following is the extract from the MySQL thread:
[mysqld]
tmpdir=/path/to/space
[/*3q5n92go]
Agata,
As always, thank you for your response. I really appreciate it.
Regards,
Kasturi