You can do it with the following DANGEROUS commands:
PRAGMA writable_schema = 1;
delete from sqlite_master where type = 'table';
PRAGMA writable_schema = 0;
you then want to recover the deleted space withVACUUM
and a good test to make sure everything is okPRAGMA INTEGRITY_CHECK;
Found this on the Internet but haven't ran across it elsewhere.
No comments:
Post a Comment