-
-
Notifications
You must be signed in to change notification settings - Fork 313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
db.vacuum: Add module to manage SQL vaccum #2462
base: main
Are you sure you want to change the base?
Conversation
wenzeslaus
commented
Jun 24, 2022
- Can perform SQL VACUUM.
- Can enable auto-vacuum for SQLite.
* Can perform SQL VACUUM. * Can enable auto-vacuum for SQLite.
Is this still something planned or can be closed? |
This was created in context of:
Not a high priority for me, but the code is in a good shape and can be merged. Some feedback would be helpful to see if this useful for people. |
<a href="db.login.html">db.login</a>, | ||
<a href="db.connect.html">db.connect</a>, | ||
<a href="db.tables.html">db.tables</a>, | ||
<a href="db.describe.html">db.describe</a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<a href="db.describe.html">db.describe</a> | |
<a href="db.describe.html">db.describe</a>, |
Markus Neteler<br> | ||
Driver and database options added by Martin Landa, Czech Technical University in Prague, Czech Republic |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Markus Neteler<br> | |
Driver and database options added by Martin Landa, Czech Technical University in Prague, Czech Republic | |
Vaclav Petras, <a href="https://geospatial.ncsu.edu/geoforall/">NCSU GeoForAll Lab</a> |
(affiliation taken from other HTML file under scripts/
)
############################################################################# | ||
|
||
# %module | ||
# % description: Vacuums (cleans) database from dropped (deleted) data |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# % description: Vacuums (cleans) database from dropped (deleted) data | |
# % description: Vacuums (cleans) database from dropped (deleted) data. |
@@ -35,6 +35,7 @@ <h2>EXAMPLES</h2> | |||
<h2>SEE ALSO</h2> | |||
|
|||
<em> | |||
<a href="db.vacuum.html">db.vacuum</a>, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also add this to
- db.dropcolumn.html
- db.dropdb.html
- db.droptable.html
?
@neteler What about the big picture here? Do you think this is useful? |