Home > OS >  can database integrity check be run per table?
can database integrity check be run per table?

Time:08-05

As above, PRAGMA INTEGRITY_CHECK works on the entire database, can it, under any condition work on table basis?

(in reference to SQLite3)

CodePudding user response:

Yes. PRAGMA integrity_check(\<TABLENAME\>).

  • Related