From 2d8844fa31711711d50400186f58c33f333113c1 Mon Sep 17 00:00:00 2001 From: Alessandro Chitarrini <140112899+chitvs@users.noreply.github.com> Date: Tue, 14 Oct 2025 03:28:08 +0200 Subject: [PATCH] pg_checksums: add page (#18670) --- pages/common/pg_checksums.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/pg_checksums.md diff --git a/pages/common/pg_checksums.md b/pages/common/pg_checksums.md new file mode 100644 index 0000000000..01854ddf51 --- /dev/null +++ b/pages/common/pg_checksums.md @@ -0,0 +1,28 @@ +# pg_checksums + +> Enable, disable, or check data checksums in a PostgreSQL database cluster. +> More information: . + +- Check data checksums in a database cluster: + +`pg_checksums {{[-D|--pgdata]}} {{path/to/data}}` + +- Enable data checksums in a database cluster: + +`pg_checksums {{[-e|--enable]}} {{[-D|--pgdata]}} {{path/to/data}}` + +- Disable data checksums in a database cluster: + +`pg_checksums {{[-d|--disable]}} {{[-D|--pgdata]}} {{path/to/data}}` + +- Check data checksums with verbose output: + +`pg_checksums {{[-v|--verbose]}} {{[-D|--pgdata]}} {{path/to/data}}` + +- Check data checksums showing progress: + +`pg_checksums {{[-P|--progress]}} {{[-D|--pgdata]}} {{path/to/data}}` + +- Display help: + +`pg_checksums {{[-?|--help]}}`