Harald Fuchs <[EMAIL PROTECTED]> writes: > In article <[EMAIL PROTECTED]>, > "Jim C. Nasby" <[EMAIL PROTECTED]> writes: >> Does that mean that this fast copy would end up not re-using space on >> pages that have space available? ISTM that's something users would want >> to be able to over-ride. In fact, it seems like it shouldn't be a >> default behavior...
> Why not? If you later do INSERT/UPDATE/DELETE, space will get reused > anyway, and if you don't (i.e. one-time bulk load on a constant > table), you should afterwards do a VACUUM FULL ANALYZE anyway. You lost me at the "FULL" part. In general, any "optimization" proposal that requires VACUUM FULL as part of normal operation is a lost cause. You should instead be thinking about procedures that won't require a VACUUM FULL, ever. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 9: In versions below 8.0, the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match