Navicat for SQLite is a software that is often contacted by people who do database management, and it is a powerful and comprehensive SQLite graphical user interface tool that provides complete server management capabilities. It is equipped with data editing, SQL query and data Model tools, and supports all SQLite object types. With a well-designed user interface, you can easily and quickly create, organize, access, and share information in a safe and easy way, optimizing sqlite workflows and improving productivity. This tutorial will explain Navicat how to maintain SQLite.
Navicat for SQLite
maintaining databases and tables
Analyze databases and Analysis tables: Collect statistics about the index and save the results to a database special table to help with better index selection, followed by the query optimizer to use these statistics to select a better index.
Vacuum database: Rebuilds the entire database. Vacuum can only run on the primary database and cannot be evacuated with an attached database file.
Rebuild the index database and rebuild the index table: Delete and rebuild all indexes on the database or attached tables. When the definition of a collation sequence has changed, it highlights its effect.
Maintain indexes
Rebuild indexes: Delete and re-create indexes. Useful when the definition of a collation sequence has changed.
For more related tutorials on Navicat for SQLite, refer to Navicat Chinese website .
The above is reproduced content, the original is: http://www.formysql.com/wenti/weihu-SQLite.html
How to maintain SQLite