reindexdb
reindexdb
重建数据库中的索引。
概要
reindexdb [connection-option ...] [--table | -t table ] [--index | -i index ] [dbname] reindexdb [connection-option ...] [--all | -a] reindexdb [connection-option ...] [--system | -s] [dbname] reindexdb --help reindexdb --version
描述
reindexdb是一个重建Greenplum数据库中索引的工具,并且是SQL命令REINDEX的包装程序。
选项
- -a | --all
- 重新索引所有数据库。
- [-d] dbname | [--dbname] dbname
- 指定要被重新索引的数据库名。如果没有指定并且也没有使用-all,会从环境变量PGDATABASE中读取数据库名。如果环境变量也没有被设置,会把为该连接指定的用户名用作数据库名。
- -e | --echo
- 回显reindexdb生成并且发送给服务器的命令。
- -i index | --index index
- 仅重建索引。
- -q | --quiet
- 不要显示响应信息。
- -s | --system
- 重新索引系统目录。
- -t table | --table table
- 仅重新索引表。
连接选项
- -h host | --host host
- 指定Greenplum的Master数据库服务器在其上运行的机器的主机名。如果没有指定,会从环境变量PGHOST读取或者默认为localhost。
- -p port | --port port
- 指定Greenplum的Master数据库服务器在其上监听连接的TCP端口。如果没有指定,会从环境变量PGPORT读取或者默认为5432。
- -U username | --username username
- 要用其进行连接的数据库角色名。如果没有指定,会从环境变量PGUSER读取或者默认为当前系统用户名。
- -w | --no-password
- 从不发出口令提示。如果服务器要求口令认证并且不能通过其他方式(例如.pgpass文件)提供口令,则连接尝试将会失败。这个选项对于批作业和脚本很有用,因为这些情况下不会有用户输入口令。
- -W | --password
- 强制口令提示。
注解
reindexdb可能需要多次连接到Master服务器,每次都要求口令。在这类情况下,使用~/.pgpass文件会很方便。
示例
重新索引数据库mydb:
reindexdb mydb
重新索引数据库abcd中的表foo以及索引bar:
reindexdb --table foo --index bar abcd