I have created a new postgres server and when I trying to execute this sql command:
DROP TABLE IF EXISTS table_3;
CREATE TABLE table_3 AS
SELECT
t1.id,
t1.fild_2,
t1.fild_3,
t1.fild_4,
t1.fild_5,
t2.fild_6,
t2.fild_7,
t2.fild_8
FROM table1 t1
RIGHT JOIN table2 t2
ON t1.id = t2.id
table1 and table2 contains around 300 000 records I got an error like this:
ERROR: could not extend file "base/367684/370837.16": wrote only 4096 of 8192 bytes at block 2182494
HINT: Check free disk space.
SQL state: 53100
Any ideas ?
Regards, Arrmlet