Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
95aca450
Commit
95aca450
authored
Dec 07, 2005
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clarify vacuum lazy can shrink a file under certain circumstances.
parent
887a7c61
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
doc/src/sgml/maintenance.sgml
doc/src/sgml/maintenance.sgml
+7
-6
No files found.
doc/src/sgml/maintenance.sgml
View file @
95aca450
<!--
$PostgreSQL: pgsql/doc/src/sgml/maintenance.sgml,v 1.5
1 2005/11/04 23:14:00 petere
Exp $
$PostgreSQL: pgsql/doc/src/sgml/maintenance.sgml,v 1.5
2 2005/12/07 05:35:53 momjian
Exp $
-->
<chapter id="maintenance">
...
...
@@ -141,11 +141,12 @@ $PostgreSQL: pgsql/doc/src/sgml/maintenance.sgml,v 1.51 2005/11/04 23:14:00 pete
command. The first form, known as <quote>lazy vacuum</quote> or
just <command>VACUUM</command>, marks expired data in tables and
indexes for future reuse; it does <emphasis>not</emphasis> attempt
to reclaim the space used by this expired data
immediately. Therefore, the table file is not shortened, and any
unused space in the file is not returned to the operating
system. This variant of <command>VACUUM</command> can be run
concurrently with normal database operations.
to reclaim the space used by this expired data unless the space is
at the end of the table and an exclusive lock can be obtained easily
on the table. Unused space at the start or middle of the file does
not result in the file being shortened and space returned to the
operating system. This variant of <command>VACUUM</command> can be
run concurrently with normal database operations.
</para>
<para>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment