I am deploying a client application on several thousand window machines. Each machine will use the sqlite database as a local data store, eventually writing data to a remote server. Thus, sqlite db will not actually grow by several MB over time, as the data will be added and then deleted. It is assumed that SQLite has zero administration, but are there any tasks that I need to run, for example, analyze / update statistics / check consistency, etc.? Or can I assume that after the sqlite database exists, it can be used for several years without any problems and without corruption?
If there are such tasks, I will create processes in my application to start them from time to time, but at present I am not sure if this is necessary / recommended.
source
share