Christopher Kings-Lynne <[EMAIL PROTECTED]> writes: > Also, I need to be sure that pg_dumpall is enough, and I don't need to make > sure I issue a checkpoint before the pg_dumpall or anything.
I think if you're using PITR you don't use pg_dump you just tar up the PGDATA directory. Of course you can still use pg_dump to save logical exports for use in other purposes. They're useful for loading into test databases for poking around in the data for example. But the transaction logs aren't going to be applicable to a database restored from a logical pg_dump. That's effectively a completely fresh database even if it has functionally equivalent data in it. The transaction logs are physical; they store "replace this block with the following raw data". That can't be applied to a logically equivalent but physically dissimilar database. -- greg ---------------------------(end of broadcast)--------------------------- TIP 2: you can get off all lists at once with the unregister command (send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])