|
REINDEXNameREINDEX — Recover corrupted system indexes under standalone PostgresREINDEX { TABLE | DATABASE | INDEX } name [ FORCE ] Inputs
Outputs
DescriptionREINDEX is used to recover corrupted system indexes. In order to run REINDEX command,Postmaster must be shutdown and standalone Postgres should be started instead with options -O and -P(an option to ignore system indexes). Note that we couldn't rely on system indexes for the recovery of system indexes. UsageRecreate the table mytable: REINDEX TABLE mytable; Some more examples: REINDEX DATABASE my_database FORCE; REINDEX INDEX my_index; CompatibilitySQL92There is no REINDEX in SQL92. |
|||||||||||||||||
With any suggestions or questions please feel free to contact us |