diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-06-23 20:09:23 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-06-23 20:09:23 +0000 |
commit | 8bd0bedb62ed940d1be58466d19382414165b0e1 (patch) | |
tree | e435080ec0c2ef5defe47615744f67d58e4ec162 | |
parent | eb3901ec0d70d8e728f22686f7c00141d7d908f1 (diff) | |
download | postgresql-8bd0bedb62ed940d1be58466d19382414165b0e1.tar.gz postgresql-8bd0bedb62ed940d1be58466d19382414165b0e1.zip |
Update dbsize documentation with:
Copy this directory to contrib/dbsize in your PostgreSQL source tree.
Then just run make; make install. Finally, load the functions into any
database using dbsize.sql.
When computing the size of a table, it does not include TOAST or index
disk space.
-rw-r--r-- | contrib/dbsize/README.dbsize | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/contrib/dbsize/README.dbsize b/contrib/dbsize/README.dbsize index 879341cd02e..63a9b9e567d 100644 --- a/contrib/dbsize/README.dbsize +++ b/contrib/dbsize/README.dbsize @@ -8,4 +8,8 @@ These functions report the actual file system space. Thus, users can avoid digging through the details of the database directories. Copy this directory to contrib/dbsize in your PostgreSQL source tree. -Then just run make; make install. +Then just run make; make install. Finally, load the functions into any +database using dbsize.sql. + +When computing the size of a table, it does not include TOAST or index +disk space. |