pg_rman icon indicating copy to clipboard operation
pg_rman copied to clipboard

Backup and restore management tool for PostgreSQL

Results 39 pg_rman issues
Sort by recently updated
recently updated
newest added

It also fix some broken url links.

To support PostgreSQL15

When pg_rman backup with --keep-data-generations 0, all backup that contain current backup is deleted. The cause of this behavior is that pg_rman allow for KEEP_DATA_GENERATIONS to 0. ``` $ psql...

Make sure that the string parsing is limited by the size of the destination buffer.

When pg_rman backup with --keep-data-generations 0, All backup files will be deleted, including the current backup file. It is the correct behavior, but we need to careful, so we add...

If you set keep_data_generations = 0, the backup you got will be deleted immediately, I think the setting like keep_data_generations = 0 is meaningless. So, In this PR, the minimum...

I want to Restore the archivelog only from a full backup, just like oracle database rman command (restore archivelog from logseq 19670 until logseq 19672;),how can I do it

How to compile Windows version programs?

The commit fd0625c7a9 of PG had improved code where were already using a boolean or used an expression that led to zero or one, making the extra bits unnecessary. This...