合 PG中的reindexdb和reindex命令
Tags: PGPostgreSQLreindexreindexdb
reindexdb
reindexdb — 重索引一个PostgreSQL数据库
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | postgres@lhrpg13:~$ reindexdb --help reindexdb reindexes a PostgreSQL database. Usage: reindexdb [OPTION]... [DBNAME] Options: -a, --all reindex all databases --concurrently reindex concurrently -d, --dbname=DBNAME database to reindex -e, --echo show the commands being sent to the server -i, --index=INDEX recreate specific index(es) only -j, --jobs=NUM use this many concurrent connections to reindex -q, --quiet don't write any messages -s, --system reindex system catalogs only -S, --schema=SCHEMA reindex specific schema(s) only -t, --table=TABLE reindex specific table(s) only -v, --verbose write a lot of output -V, --version output version information, then exit -?, --help show this help, then exit Connection options: -h, --host=HOSTNAME database server host or socket directory -p, --port=PORT database server port -U, --username=USERNAME user name to connect as -w, --no-password never prompt for password -W, --password force password prompt --maintenance-db=DBNAME alternate maintenance database Read the description of the SQL command REINDEX for details. Report bugs to <pgsql-bugs@lists.postgresql.org>. PostgreSQL home page: <https://www.postgresql.org/> |
大纲
1 2 3 4 5 | reindexdb [connection-option...] [option...] [ --schema | -S schema ] ... [ --table | -t table ] ... [ --index | -i index ] ... [dbname] reindexdb [connection-option...] [option...] --all | -a reindexdb [connection-option...] [option...] --system | -s [dbname] |
描述
reindexdb是用于重建一个PostgreSQL数据库中索引的工具。
reindexdb是 SQL 命令REINDEX的一个包装器。在通过这个工具和其他方法访问服务器来重索引数据库之间没有实质性的区别。
选项
reindexdb接受下列命令行参数:
-a
--all
重索引所有数据库。
--concurrently
使用
CONCURRENTLY
选项。 请参阅 REINDEX,其中详细解释了此选项的所有注意事项。[-d] *
dbname*
[--dbname=]*
dbname*
当
-a
/--all
未使用时,指定要重新索引的数据库的名称。 如果未指定,则从环境变量PGDATABASE
中读取数据库名称。 如果未设置,则使用为连接指定的用户名。dbname
可以是 连接字符串。 如果是这样,连接字符串参数将覆盖任何冲突的命令行选项。-e
--echo
回显reindexdb生成并发送到服务器的命令。
-i *
index*
--index=*
index*
只是重建
index
。可以通过写多个-i
开关来重建多个索引。-j *
njobs*
--jobs=*
njobs*
通过同时运行
njobs
命令并行执行 reindex 命令。 此选项可能会减少处理时间,但也会增加数据库服务器上的负载。reindexdb将打开到数据库的njobs
连接,因此请确保max_connections设置足够高,可以容纳所有连接。请注意,此选项与--index
和--system
选项不兼容。-q
--quiet
不显示进度消息。
-s
--system
索引数据库的系统目录。
-S *
schema*
--schema=*
schema*
只对
schema
重建索引。 通过写多个-S
开关可以指定多个要重建索引的模式。-t *
table*
--table=*
table*
只索引
table
。可以通过写多个-t
开关来重索引多个表。-v
--verbose
在处理时打印详细信息。
-V
--version
打印reindexdb版本并退出。
-?
--help
显示有关reindexdb命令行参数的帮助并退出。
reindexdb也接受下列命令行参数用于连接参数:
-h *
host*
--host=*
host*
指定运行服务器的机器的主机名。如果该值以一个斜线开始,它被用作 Unix 域套接字的目录。
-p *
port*
--port=*
port*
指定服务器正在监听连接的 TCP 端口或本地 Unix 域套接字文件扩展。
-U *
username*
--username=*
username*
要作为哪个用户连接。
-w
--no-password
从不发出一个口令提示。如果服务器要求口令认证并且没有其他方式提供口令(例如一个
.pgpass
文件),那儿连接尝试将失败。这个选项对于批处理任务和脚本有用,因为在其中没有一个用户来输入口令。-W
--password
强制reindexdb在连接到一个数据库之前提示要求一个口令。这个选项不是必不可少的,因为如果服务器要求口令认证,reindexdb将自动提示要求一个口令。但是,reindexdb将浪费一次连接尝试来发现服务器想要一个口令。在某些情况下值得用
-W
来避免额外的连接尝试。--maintenance-db=*
dbname*
当使用
-a
/--all
时,指定要连接到的数据库名称以发现应重新索引哪些数据库。 如果未指定,将使用postgres
数据库, 如果不存在,将使用template1
。 这可以是连接字符串。 如果是这样,连接字符串参数将覆盖任何冲突的命令行选项。 此外,在连接到其他数据库时,将重新使用除数据库名称本身之外的连接字符串参数。
环境
PGDATABASE
PGHOST
PGPORT
PGUSER
默认连接参数
PG_COLOR
规定在诊断消息中是否使用颜色。可能的值为
always
、auto
、never
。
和大部分其他PostgreSQL工具相似,这个工具也使用libpq(见第 33.14 节)支持的环境变量。
诊断
在有困难时,可以在REINDEX和psql中找潜在问题和错误消息的讨论。数据库服务器必须运行在目标主机上。同样,任何libpq前端库使用的默认连接设置和环境变量都将适用于此。