Hi all, I tried to dump out a single table and just for a verification I counted the number of 'INERT INTO' rows. I found that count(*) results less rows than grep. *******************
[EMAIL PROTECTED] ~ $ pg_dump -d -t t_stockchanges alumil6 > sc.dump ******************* alumil6=# select count(*) from t_stockchanges ; count ------- 9816 (1 row) ******************* [EMAIL PROTECTED] ~ $ cat sc.dump | grep 'INSERT INTO' | wc -l 4908 ******************* What can be the reason of it? Thx, -- Csaba ---------------------------(end of broadcast)--------------------------- TIP 9: the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match