db_vacuum | R Documentation |
The PostgreSQL statement uses VACUUM (VERBOSE)
, the MySQL statement
uses OPTIMIZE
, and the SQLite statement uses VACUUM
and the
table
argument is not used.
db_vacuum(con, table = NA, verbose = FALSE)
db_optimise(con, table = NA, verbose = FALSE)
con |
Database connection. |
table |
Database table. |
verbose |
Should the function give messages? |
Invisible tibble.
Stuart K. Grange
## Not run:
db_vacuum(con, "model_data")
db_optimise(con, "air_quality_data")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.