diff --git a/doc/pg_reorg-ja.html b/doc/pg_reorg-ja.html index d6c7bb1..8ad5b01 100755 --- a/doc/pg_reorg-ja.html +++ b/doc/pg_reorg-ja.html @@ -1,9 +1,9 @@ - +
pg_reorg では、下記のコマンドライン引数を指定できます。
-pg_reorg を実行する対象と並び替えの基準を指定するパラメータです。 @@ -100,16 +99,15 @@ pg_reorg [OPTIONS]
-Portions Copyright (c) 2008-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
+Portions Copyright (c) 2008-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
Portions Copyright (c) 2011, Itagaki Takahiro
Execute the following command to do online CLUSTER to all tables in test database.
+Execute the following command to perform an online CLUSTER of all tables in test database.
$ pg_reorg test-
Execute the following command to do online VACUUM FULL to foo table in test database.
+Execute the following command to perform an online VACUUM FULL to foo table in test database.
$ pg_reorg --no-order --table foo -d test
pg_reorg has the following command line options:
-Options to order rows. -If not specified, pg_reorg do online CLUSTER using cluster indexes. +If not specified, pg_reorg performs an online CLUSTER using cluster indexes. Only one option can be specified. -Options to specify target tables or databases. +You may also specify target tables or databases.
Error messages are reported when pg_reorg fails. The following list shows the cause of errors.
-You need to cleanup by hand after fatal erros. +
You need to cleanup by hand after fatal errors. To cleanup, execute $PGHOME/share/contrib/uninstall_pg_reorg.sql to the database where the error occured and then execute $PGHOME/share/contrib/pg_reorg.sql. (Do uninstall and reinstall.)
You cannot do DDL commands except VACUUM and ANALYZE during pg_reorg. -In many case pg_reorg would fail and rollback collectly, but there are some cases ending with data-corruption .
+In many cases pg_reorg will fail and rollback collectly, but there are some cases which may result in data-corruption .pg_reorg creates a work table in reorg schema and sorts rows in it. -Then, it updates system catalog directly to swap the work table and the original one.
+pg_reorg creates a work table in the reorg schema and sorts the rows in this table. +Then, it updates the system catalogs directly to swap the work table and the original one.
pg_reorg can be built with "make" on UNIX or Linux.
pgxs build framework is used automatically.
-Before build, you might need to install postgres packages for developper (postgresql-devel, etc.)
+Before building, you might need to install postgres packages for developer (postgresql-devel, etc.)
and add pg_config
to your $PATH.
$ cd pg_reorg @@ -303,10 +298,13 @@ $ psql -f $PGSHARE/contrib/pg_reorg.sql -d your_database
-Portions Copyright (c) 2008-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
+Portions Copyright (c) 2008-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
Portions Copyright (c) 2011, Itagaki Takahiro