question about "vacuum full" command

Started by yanliang leiover 1 year ago2 messagesdocs
Jump to latest
#1yanliang lei
msdnchina@163.com

"vacuum full" command is : vacumm full command in the psql, for example:
postgres=# vacuum full;
VACUUM
postgres=#

in my question,vacumm full command is not "vacuum full <table_name>" command

I want to know :vacumm full command ( not "vacuum full <table_name>" command) will influence which table?----all tables in current database?

but in the docs(https://www.postgresql.org/docs/current/routine-vacuuming.html ), there is no description about vacumm full command ( not "vacuum full <table_name>" command) will influence which table?

I think the following is perfect in the document : adding the description about vacumm full command ( not "vacuum full <table_name>" command) will influence which table.

#2David G. Johnston
david.g.johnston@gmail.com
In reply to: yanliang lei (#1)
Re: question about "vacuum full" command

On Friday, August 16, 2024, yanliang lei <msdnchina@163.com> wrote:

I think the following is perfect in the document : adding the
description about vacumm full command ( not "vacuum full <table_name>"
command) will influence which table.

Every command has a reference page in the docs where details like this are
noted.

https://www.postgresql.org/docs/current/sql-vacuum.html

David J.