Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Merge 3.10.2 changes. Add the SQLITE_EXTRA_DURABLE=1 compile-time option. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d39c6c7cfcee0ac6332f69fc60a02401 |
User & Date: | drh 2016-01-25 13:55:07.215 |
Context
2016-01-26
| ||
15:04 | Update the file format document to indicate that the number of rows in an index in sqlite_stat1 can be less than the number of table rows in the case of a partial index. (check-in: 42f14ae85f user: drh tags: trunk) | |
2016-01-25
| ||
13:55 | Merge 3.10.2 changes. Add the SQLITE_EXTRA_DURABLE=1 compile-time option. (check-in: d39c6c7cfc user: drh tags: trunk) | |
2016-01-21
| ||
13:33 | Do not suppress links to Windows DLLs on the download page. (check-in: 70ec942b27 user: drh tags: branch-3.10) | |
2016-01-15
| ||
08:33 | Update fts5.html to node that the unicode61 tokenizer is compatible with the fts3 tokenizer of the same name. (check-in: 3cc1ff72a4 user: dan tags: trunk) | |
Changes
Changes to pages/changes.in.
︙ | ︙ | |||
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | } chng {2016-03-00 (3.11.0)} { <p><b>General improvements:</b> <li>Enhanced [WAL mode] so that it works efficiently with transactions that are larger than the [cache_size]. <li>Added the [FTS5 detail option]. <li>Various performance optimizations. <p><b>Enhancements to the [command-line shell]:</b> <li>Added the ".vfslist" [dot-commands|dot-command]. } chng {2016-01-14 (3.10.1)} { <p><b>New feature:</b> <li>Add the [SQLITE_FCNTL_JOURNAL_POINTER] file control. <p><b>Bug fix:</b> <li>Fix a 16-month-old bug in the query planner that could generate incorrect results when a scalar subquery attempts to use the [block sorting] optimization. Ticket [https://www.sqlite.org/src/info/cb3aa0641d9a4|cb3aa0641d9a4]. | > > > > > > > > > > > > > > > > | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | } chng {2016-03-00 (3.11.0)} { <p><b>General improvements:</b> <li>Enhanced [WAL mode] so that it works efficiently with transactions that are larger than the [cache_size]. <li>Added the [FTS5 detail option]. <li>Added the [SQLITE_EXTRA_DURABLE] compile-time option. <li>Various performance optimizations. <p><b>Enhancements to the [command-line shell]:</b> <li>Added the ".vfslist" [dot-commands|dot-command]. } chng {2016-01-20 (3.10.2)} { <p><b>Critical bug fix:</b> <li>Version 3.10.0 introduced a case-folding bug in the [LIKE] operator which is fixed by this patch release. Ticket [https://www.sqlite.org/src/info/80369eddd5c94 | 80369eddd5c94]. <p><b>Other miscellaneous bug fixes:</b> <li>Fix a use-after-free that can occur when SQLite is compiled with -DSQLITE_HAS_CODEC. <li>Fix the build so that it works with -DSQLITE_OMIT_WAL. <li>Fix the configure script for the amalgamation so that the --readline option works again on Raspberry PIs. <p><b>Hashes:</b> <li>SQLITE_SOURCE_ID: "2016-01-20 15:27:19 17efb4209f97fb4971656086b138599a91a75ff9" <li>SHA1 for sqlite3.c: f7088b19d97cd7a1c805ee95c696abd54f01de4f } {patchagainst 1 patchagainst 2} chng {2016-01-14 (3.10.1)} { <p><b>New feature:</b> <li>Add the [SQLITE_FCNTL_JOURNAL_POINTER] file control. <p><b>Bug fix:</b> <li>Fix a 16-month-old bug in the query planner that could generate incorrect results when a scalar subquery attempts to use the [block sorting] optimization. Ticket [https://www.sqlite.org/src/info/cb3aa0641d9a4|cb3aa0641d9a4]. |
︙ | ︙ |
Changes to pages/compile.in.
︙ | ︙ | |||
240 241 242 243 244 245 246 247 248 249 250 251 252 253 | This macro sets the default value for the [SQLITE_LIMIT_WORKER_THREADS] parameter. The [SQLITE_LIMIT_WORKER_THREADS] parameter sets the maximum number of auxiliary threads that a single [prepared statement] will launch to assist it with a query. If not specified, the default maximum is 0. The value set here cannot be more than [SQLITE_MAX_WORKER_THREADS]. } COMPILE_OPTION {SQLITE_FTS3_MAX_EXPR_DEPTH=<i>N</i>} { This macro sets the maximum depth of the search tree that corresponds to the right-hand side of the MATCH operator in an [FTS3] or [FTS4] full-text index. The full-text search uses a recursive algorithm, so the depth of the tree is limited to prevent using too much stack space. The default limit is 12. This limit is sufficient for up to 4095 search terms on the | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 | This macro sets the default value for the [SQLITE_LIMIT_WORKER_THREADS] parameter. The [SQLITE_LIMIT_WORKER_THREADS] parameter sets the maximum number of auxiliary threads that a single [prepared statement] will launch to assist it with a query. If not specified, the default maximum is 0. The value set here cannot be more than [SQLITE_MAX_WORKER_THREADS]. } COMPILE_OPTION {SQLITE_EXTRA_DURABLE=<i><0 or 1></i>} { If the SQLITE_EXTRA_DURABLE=1 compile-time option is used then SQLite works harder to make transactions durable across power failures. The default behavior (SQLITE_EXTRA_DURABLE=0) is that the a committed transaction might rollback following recovery from a power loss. The default behavior is faster and since most applications prefer extra performance and are happy to endure an occasional rollback following a power-loss recovery. Applications for which transaction durability is more important can set this compile-time option for extra protection. <p> In the current implementation ([version 3.11.0]), this option only makes a difference when committing a transaction in [PRAGMA journal_mode=DELETE] and [PRAGMA synchronous=FULL]. In that scenario, the directory containing the rollback journal is synced after the rollback journal is deleted, to ensure that the rollback journal stays deleted after recovery from power loss. <p> Additional notes: <ol> <li><p> This option only affects transaction durability following power loss. The default configuration always ensures consistency, including after a power loss, and ensures durable in the absence of a power loss, regardless of this setting. <li><p> [PRAGMA synchronous=FULL] must be set at run time, in addition to this compile-time option, for power-loss durability. FULL synchronous is the default when using a [rollback journal] but NORMAL synchronous is the default for [WAL mode]. <li><p> Transactions are consistent and durable across power-loss with [PRAGMA journal_mode=TRUNCATE] and [PRAGMA journal_mode=PERSIST] and [PRAGMA journal_mode=WAL] even without this compile-time option, as long as [PRAGMA synchronous=FULL] is set. </ol> } COMPILE_OPTION {SQLITE_FTS3_MAX_EXPR_DEPTH=<i>N</i>} { This macro sets the maximum depth of the search tree that corresponds to the right-hand side of the MATCH operator in an [FTS3] or [FTS4] full-text index. The full-text search uses a recursive algorithm, so the depth of the tree is limited to prevent using too much stack space. The default limit is 12. This limit is sufficient for up to 4095 search terms on the |
︙ | ︙ |
Changes to pages/download.in.
1 2 3 4 5 6 7 8 9 10 11 12 | <title>SQLite Download Page</title> <h2>SQLite Download Page</h2> <table width="100%" cellpadding="5" cellspacing="0"> <tcl> hd_keywords {download page} set nDownload 0 set BG {} unset -nocomplain href unset -nocomplain href_cnt set href_cnt 0 | > | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <title>SQLite Download Page</title> <h2>SQLite Download Page</h2> <table width="100%" cellpadding="5" cellspacing="0"> <tcl> hd_keywords {download page} set nDownload 0 set BG {} unset -nocomplain href unset -nocomplain href_cnt set href_cnt 0 set disable_more 0 proc Product {pattern desc {frag {}} {disable_flag 0}} { if {$::disable_more} return regsub VVV $pattern {*} p3 regsub DATE $p3 {20*} p3 regsub YEAR $p3 {20[134][0-9]} p3 regsub VVV $pattern {(3\d{6})} pattern regsub DATE $pattern {(\d{12})} pattern regsub YEAR $pattern {\d{4}} pattern set p2 [string map {* .*} $pattern] |
︙ | ︙ | |||
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | hd_puts "<a id='a$href_cnt' href='hp1.html'>[file tail $file]</a><br>($size $units)</td>\n" hd_puts "<td width=\"5\"></td>" regsub -all VERSION $desc $version d2 hd_puts "\n<td valign=\"top\">" hd_resolve [string trim $d2] hd_puts "<br>(sha1: $sha1sum)</td></tr>\n" incr ::nDownload } if {$frag!=""} { eval hd_keywords [lrange $frag 1 end] } } cd $::DEST proc Heading {title {tag {}} {bgcolor {}}} { set ::pending_heading $title set ::pending_tag $tag set ::BG $bgcolor # hd_puts "<tr><td colspan=4><big><b>$title</b></big></td></tr>" } set Caution #fff1c8 Heading {Pre-release Snapshots} {} $Caution | > > > > | 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | hd_puts "<a id='a$href_cnt' href='hp1.html'>[file tail $file]</a><br>($size $units)</td>\n" hd_puts "<td width=\"5\"></td>" regsub -all VERSION $desc $version d2 hd_puts "\n<td valign=\"top\">" hd_resolve [string trim $d2] hd_puts "<br>(sha1: $sha1sum)</td></tr>\n" incr ::nDownload if {$disable_flag} { set ::disable_more 1 } } if {$frag!=""} { eval hd_keywords [lrange $frag 1 end] } } cd $::DEST proc Heading {title {tag {}} {bgcolor {}}} { set ::pending_heading $title set ::pending_tag $tag set ::BG $bgcolor set ::disable_more 0 # hd_puts "<tr><td colspan=4><big><b>$title</b></big></td></tr>" } set Caution #fff1c8 Heading {Pre-release Snapshots} {} $Caution |
︙ | ︙ | |||
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 | Product {YEAR/sqlite-doc-VVV.zip} { Documentation as a bundle of static HTML files. } Heading {Precompiled Binaries for Linux} linux Product YEAR/sqlite-shell-linux-x86-VVV.zip { The [command-line shell] program (version VERSION). } Product YEAR/sqlite-analyzer-linux-x86-VVV.zip { A program to analyze how space is allocated inside an SQLite database file (version VERSION). } Product YEAR/sqldiff-linux-x86-VVV.zip { A program to display differences between two SQLite database files. (version VERSION). } Heading {Precompiled Binaries for Mac OS X (x86)} mac Product YEAR/sqlite-shell-osx-x86-VVV.zip { The [command-line shell] program (version VERSION). } Product YEAR/sqlite-analyzer-osx-x86-VVV.zip { A program to analyze how space is allocated inside an SQLite database file (version VERSION). } Product YEAR/sqldiff-osx-x86-VVV.zip { A program to display differences between two SQLite database files. (version VERSION). } Heading {Precompiled Binaries for Windows} win32 set start $nDownload | > > > > > > > > > > > > > < < < > > > > > > > > > > | 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 | Product {YEAR/sqlite-doc-VVV.zip} { Documentation as a bundle of static HTML files. } Heading {Precompiled Binaries for Linux} linux Product YEAR/sqlite-tools-linux-x86-VVV.zip { A bundle of command-line tools for managing SQLite database files, including the [command-line shell] program, the [sqldiff] program, and the [sqlite3_analyzer] program. } {} 1 Product YEAR/sqlite-shell-linux-x86-VVV.zip { The [command-line shell] program (version VERSION). } Product YEAR/sqlite-analyzer-linux-x86-VVV.zip { A program to analyze how space is allocated inside an SQLite database file (version VERSION). } Product YEAR/sqldiff-linux-x86-VVV.zip { A program to display differences between two SQLite database files. (version VERSION). } Heading {Precompiled Binaries for Mac OS X (x86)} mac Product YEAR/sqlite-tools-osx-x86-VVV.zip { A bundle of command-line tools for managing SQLite database files, including the [command-line shell] program, the [sqldiff] program, and the [sqlite3_analyzer] program. } {} 1 Product YEAR/sqlite-shell-osx-x86-VVV.zip { The [command-line shell] program (version VERSION). } Product YEAR/sqlite-analyzer-osx-x86-VVV.zip { A program to analyze how space is allocated inside an SQLite database file (version VERSION). } Product YEAR/sqldiff-osx-x86-VVV.zip { A program to display differences between two SQLite database files. (version VERSION). } Heading {Precompiled Binaries for Windows} win32 set start $nDownload Product YEAR/sqlite-dll-win32-x86-VVV.zip { 32-bit DLL (x86) for SQLite verison VERSION. } Product YEAR/sqlite-dll-win64-x64-VVV.zip { 64-bit DLL (x64) for SQLite version VERSION. } Product YEAR/sqlite-tools-win32-x86-VVV.zip { A bundle of command-line tools for managing SQLite database files, including the [command-line shell] program, the [sqldiff.exe] program, and the [sqlite3_analyzer.exe] program. } {} 1 Product YEAR/sqlite-shell-win32-x86-VVV.zip { The [command-line shell] program (version VERSION). } Product YEAR/sqlite-analyzer-win32-x86-VVV.zip { A program to analyze how space is allocated inside an SQLite database file (version VERSION). } Product YEAR/sqldiff-win32-x86-VVV.zip { |
︙ | ︙ |
Changes to pages/news.in.
︙ | ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | hd_puts "<h3>$date - $title</h3>" regsub -all "\n( *\n)+" $text "</p>\n\n<p>" txt regsub -all {[Tt]icket #(\d+)} $txt \ {<a href="http://www.sqlite.org/cvstrac/tktview?tn=\1">\0</a>} txt hd_resolve "<blockquote>$txt</blockquote>" hd_puts "<hr width=\"50%\">" } newsitem {2016-01-14} {Release 3.10.1} { <p>SQLite [version 3.10.1] is a bug-fix release primarily targeting the fix for the query planner bug [https://www.sqlite.org/src/info/cb3aa0641d9a4|cb3aa0641d9a4] discovered by Mapscape. Also included is a minor API enhancement requested by the Firefox developers at Mozilla. The differences from version | > > > > > > > | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | hd_puts "<h3>$date - $title</h3>" regsub -all "\n( *\n)+" $text "</p>\n\n<p>" txt regsub -all {[Tt]icket #(\d+)} $txt \ {<a href="http://www.sqlite.org/cvstrac/tktview?tn=\1">\0</a>} txt hd_resolve "<blockquote>$txt</blockquote>" hd_puts "<hr width=\"50%\">" } newsitem {2016-01-20} {Release 3.10.2} { <p>Yikes! An optimization attempt gone bad resulted in a [https://www.sqlite.org/src/info/80369eddd5c94 | bug in the LIKE operator] which is fixed by this patch release. Three other minor but low-risk fixes are also included in the patch. } newsitem {2016-01-14} {Release 3.10.1} { <p>SQLite [version 3.10.1] is a bug-fix release primarily targeting the fix for the query planner bug [https://www.sqlite.org/src/info/cb3aa0641d9a4|cb3aa0641d9a4] discovered by Mapscape. Also included is a minor API enhancement requested by the Firefox developers at Mozilla. The differences from version |
︙ | ︙ |
Changes to pages/pragma.in.
︙ | ︙ | |||
1006 1007 1008 1009 1010 1011 1012 | sync operation of the WAL file happens after each transaction commit. The extra WAL sync following each transaction help ensure that transactions are durable across a power loss, but they do not aid in preserving consistency. If durability is not a concern, then synchronous=NORMAL is normally all one needs in WAL mode.</p> | | > | 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 | sync operation of the WAL file happens after each transaction commit. The extra WAL sync following each transaction help ensure that transactions are durable across a power loss, but they do not aid in preserving consistency. If durability is not a concern, then synchronous=NORMAL is normally all one needs in WAL mode.</p> <p>^The default setting is synchronous=FULL, except in [WAL mode] when the default is synchronous=NORMAL.</p> <p>See also the [fullfsync] and [checkpoint_fullfsync] pragmas.</p> } Pragma temp_store { <p>^(<b>PRAGMA temp_store; <br>PRAGMA temp_store = </b> |
︙ | ︙ |
Added pages/sqlanalyze.in.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 | <title>sqlite3_analyzer.exe: Database Size Measurement Utility</title> <tcl>hd_keywords sqlite3_analyzer sqlite3_analyzer.exe</tcl> <h1>The sqllite3_analyzer.exe Utility Program</h1> <p> The <tt>sqlite3_analyzer.exe</tt> binary is a command-line utility program that measures and displays how much and how efficiently space is used by individual tables and indexes with an SQLite database file. Example usage: <blockquote><pre> sqlite3_analyzer database.sqlite </pre></blockquote> <p> The output is a human-readable ASCII text report that provides information on the space utilization of the database file. The report is intended to be self-explanatory, though there is some <a href='#defs'>additional explanation</a> of the various parameters reported toward the end of the report. <p> The output is also valid SQL. Most of the report text is contained within a header comment, with various SQL statements that create and initialize a database at the <a href="#sqlx">end of the report</a>. The constructed database contains the raw data from which the report was extracted. Hence the original report can be read into an instance of the [command-line shell] and then the raw data can be queried to dig deeper into the space utilization of a particular database file. <h2>Example Output</h2> <p>The following is sqlite3_analyzer output for an example places.sqlite database used by Firefox. <pre> /** Disk-Space Utilization Report For ██████████████████/places.sqlite Page size in bytes................................ 32768 Pages in the whole file (measured)................ 221 Pages in the whole file (calculated).............. 221 Pages that store data............................. 221 100.0% Pages on the freelist (per header)................ 0 0.0% Pages on the freelist (calculated)................ 0 0.0% Pages of auto-vacuum overhead..................... 0 0.0% Number of tables in the database.................. 14 Number of indices................................. 23 Number of defined indices......................... 17 Number of implied indices......................... 6 Size of the file in bytes......................... 7241728 Bytes of user payload stored...................... 2503069 34.6% *** Page counts for all tables with their indices ***************************** MOZ_PLACES........................................ 142 64.3% MOZ_HISTORYVISITS................................. 41 18.6% MOZ_FAVICONS...................................... 15 6.8% MOZ_BOOKMARKS..................................... 5 2.3% MOZ_KEYWORDS...................................... 3 1.4% MOZ_ANNO_ATTRIBUTES............................... 2 0.90% MOZ_ANNOS......................................... 2 0.90% MOZ_BOOKMARKS_ROOTS............................... 2 0.90% MOZ_HOSTS......................................... 2 0.90% MOZ_INPUTHISTORY.................................. 2 0.90% MOZ_ITEMS_ANNOS................................... 2 0.90% SQLITE_MASTER..................................... 1 0.45% SQLITE_SEQUENCE................................... 1 0.45% SQLITE_STAT1...................................... 1 0.45% *** Page counts for all tables and indices separately ************************* MOZ_PLACES........................................ 63 28.5% MOZ_PLACES_URL_UNIQUEINDEX........................ 37 16.7% MOZ_HISTORYVISITS................................. 13 5.9% MOZ_FAVICONS...................................... 12 5.4% MOZ_HISTORYVISITS_PLACEDATEINDEX.................. 12 5.4% MOZ_PLACES_HOSTINDEX.............................. 11 5.0% MOZ_HISTORYVISITS_DATEINDEX....................... 10 4.5% MOZ_PLACES_GUID_UNIQUEINDEX....................... 9 4.1% MOZ_PLACES_LASTVISITDATEINDEX..................... 7 3.2% MOZ_HISTORYVISITS_FROMINDEX....................... 6 2.7% MOZ_PLACES_FAVICONINDEX........................... 5 2.3% MOZ_PLACES_FRECENCYINDEX.......................... 5 2.3% MOZ_PLACES_VISITCOUNT............................. 5 2.3% SQLITE_AUTOINDEX_MOZ_FAVICONS_1................... 3 1.4% MOZ_ANNO_ATTRIBUTES............................... 1 0.45% MOZ_ANNOS......................................... 1 0.45% MOZ_ANNOS_PLACEATTRIBUTEINDEX..................... 1 0.45% MOZ_BOOKMARKS..................................... 1 0.45% MOZ_BOOKMARKS_GUID_UNIQUEINDEX.................... 1 0.45% MOZ_BOOKMARKS_ITEMINDEX........................... 1 0.45% MOZ_BOOKMARKS_ITEMLASTMODIFIEDINDEX............... 1 0.45% MOZ_BOOKMARKS_PARENTINDEX......................... 1 0.45% MOZ_BOOKMARKS_ROOTS............................... 1 0.45% MOZ_HOSTS......................................... 1 0.45% MOZ_INPUTHISTORY.................................. 1 0.45% MOZ_ITEMS_ANNOS................................... 1 0.45% MOZ_ITEMS_ANNOS_ITEMATTRIBUTEINDEX................ 1 0.45% MOZ_KEYWORDS...................................... 1 0.45% MOZ_KEYWORDS_PLACEPOSTDATA_UNIQUEINDEX............ 1 0.45% SQLITE_AUTOINDEX_MOZ_ANNO_ATTRIBUTES_1............ 1 0.45% SQLITE_AUTOINDEX_MOZ_BOOKMARKS_ROOTS_1............ 1 0.45% SQLITE_AUTOINDEX_MOZ_HOSTS_1...................... 1 0.45% SQLITE_AUTOINDEX_MOZ_INPUTHISTORY_1............... 1 0.45% SQLITE_AUTOINDEX_MOZ_KEYWORDS_1................... 1 0.45% SQLITE_MASTER..................................... 1 0.45% SQLITE_SEQUENCE................................... 1 0.45% SQLITE_STAT1...................................... 1 0.45% *** All tables and indices **************************************************** Percentage of total database...................... 100.0% Number of entries................................. 154969 Bytes of storage consumed......................... 7241728 Bytes of payload.................................. 4969404 68.6% Average payload per entry......................... 32.07 Average unused bytes per entry.................... 11.15 Average fanout.................................... 14.00 Maximum payload per entry......................... 7640 Entries that use overflow......................... 0 0.0% Index pages used.................................. 14 Primary pages used................................ 207 Overflow pages used............................... 0 Total pages used.................................. 221 Unused bytes on index pages....................... 448010 97.7% Unused bytes on primary pages..................... 1280642 18.9% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 1728652 23.9% *** All tables **************************************************************** Percentage of total database...................... 44.8% Number of entries................................. 28530 Bytes of storage consumed......................... 3244032 Bytes of payload.................................. 2508257 77.3% Average payload per entry......................... 87.92 Average unused bytes per entry.................... 20.13 Average fanout.................................... 28.00 Maximum payload per entry......................... 7640 Entries that use overflow......................... 0 0.0% Index pages used.................................. 3 Primary pages used................................ 96 Overflow pages used............................... 0 Total pages used.................................. 99 Unused bytes on index pages....................... 97551 99.23% Unused bytes on primary pages..................... 476741 15.2% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 574292 17.7% *** All indices *************************************************************** Percentage of total database...................... 55.2% Number of entries................................. 126439 Bytes of storage consumed......................... 3997696 Bytes of payload.................................. 2461147 61.6% Average payload per entry......................... 19.47 Average unused bytes per entry.................... 9.13 Average fanout.................................... 11.00 Maximum payload per entry......................... 7259 Entries that use overflow......................... 0 0.0% Index pages used.................................. 11 Primary pages used................................ 111 Overflow pages used............................... 0 Total pages used.................................. 122 Unused bytes on index pages....................... 350459 97.2% Unused bytes on primary pages..................... 803901 22.1% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 1154360 28.9% *** Table MOZ_ANNO_ATTRIBUTES and all its indices ***************************** Percentage of total database...................... 0.90% Number of entries................................. 24 Bytes of storage consumed......................... 65536 Bytes of payload.................................. 721 1.1% Average payload per entry......................... 30.04 Average unused bytes per entry.................... 2696.46 Maximum payload per entry......................... 43 Entries that use overflow......................... 0 0.0% Primary pages used................................ 2 Overflow pages used............................... 0 Total pages used.................................. 2 Unused bytes on primary pages..................... 64715 98.7% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 64715 98.7% *** Table MOZ_ANNO_ATTRIBUTES w/o any indices ********************************* Percentage of total database...................... 0.45% Number of entries................................. 12 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 355 1.1% B-tree depth...................................... 1 Average payload per entry......................... 29.58 Average unused bytes per entry.................... 2696.42 Maximum payload per entry......................... 42 Entries that use overflow......................... 0 0.0% Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 32357 98.7% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 32357 98.7% *** Index SQLITE_AUTOINDEX_MOZ_ANNO_ATTRIBUTES_1 of table MOZ_ANNO_ATTRIBUTES * Percentage of total database...................... 0.45% Number of entries................................. 12 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 366 1.1% B-tree depth...................................... 1 Average payload per entry......................... 30.50 Average unused bytes per entry.................... 2696.50 Maximum payload per entry......................... 43 Entries that use overflow......................... 0 0.0% Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 32358 98.7% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 32358 98.7% *** Table MOZ_ANNOS and all its indices *************************************** Percentage of total database...................... 0.90% Number of entries................................. 390 Bytes of storage consumed......................... 65536 Bytes of payload.................................. 13986 21.3% Average payload per entry......................... 35.86 Average unused bytes per entry.................... 128.22 Maximum payload per entry......................... 127 Entries that use overflow......................... 0 0.0% Primary pages used................................ 2 Overflow pages used............................... 0 Total pages used.................................. 2 Unused bytes on primary pages..................... 50006 76.3% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 50006 76.3% *** Table MOZ_ANNOS w/o any indices ******************************************* Percentage of total database...................... 0.45% Number of entries................................. 195 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 12115 37.0% B-tree depth...................................... 1 Average payload per entry......................... 62.13 Average unused bytes per entry.................... 101.04 Maximum payload per entry......................... 127 Entries that use overflow......................... 0 0.0% Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 19702 60.1% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 19702 60.1% *** Index MOZ_ANNOS_PLACEATTRIBUTEINDEX of table MOZ_ANNOS ******************** Percentage of total database...................... 0.45% Number of entries................................. 195 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 1871 5.7% B-tree depth...................................... 1 Average payload per entry......................... 9.59 Average unused bytes per entry.................... 155.41 Maximum payload per entry......................... 10 Entries that use overflow......................... 0 0.0% Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 30304 92.5% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 30304 92.5% *** Table MOZ_BOOKMARKS and all its indices *********************************** Percentage of total database...................... 2.3% Number of entries................................. 1565 Bytes of storage consumed......................... 163840 Bytes of payload.................................. 37104 22.6% Average payload per entry......................... 23.71 Average unused bytes per entry.................... 77.62 Maximum payload per entry......................... 518 Entries that use overflow......................... 0 0.0% Primary pages used................................ 5 Overflow pages used............................... 0 Total pages used.................................. 5 Unused bytes on primary pages..................... 121475 74.1% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 121475 74.1% *** Table MOZ_BOOKMARKS w/o any indices *************************************** Percentage of total database...................... 0.45% Number of entries................................. 313 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 21937 66.9% B-tree depth...................................... 1 Average payload per entry......................... 70.09 Average unused bytes per entry.................... 29.90 Maximum payload per entry......................... 518 Entries that use overflow......................... 0 0.0% Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 9358 28.6% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 9358 28.6% *** Indices of table MOZ_BOOKMARKS ******************************************** Percentage of total database...................... 1.8% Number of entries................................. 1252 Bytes of storage consumed......................... 131072 Bytes of payload.................................. 15167 11.6% Average payload per entry......................... 12.11 Average unused bytes per entry.................... 89.55 Maximum payload per entry......................... 17 Entries that use overflow......................... 0 0.0% Primary pages used................................ 4 Overflow pages used............................... 0 Total pages used.................................. 4 Unused bytes on primary pages..................... 112117 85.5% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 112117 85.5% *** Index MOZ_BOOKMARKS_GUID_UNIQUEINDEX of table MOZ_BOOKMARKS *************** Percentage of total database...................... 0.45% Number of entries................................. 313 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 5207 15.9% B-tree depth...................................... 1 Average payload per entry......................... 16.64 Average unused bytes per entry.................... 85.03 Maximum payload per entry......................... 17 Entries that use overflow......................... 0 0.0% Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 26614 81.2% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 26614 81.2% *** Index MOZ_BOOKMARKS_ITEMINDEX of table MOZ_BOOKMARKS ********************** Percentage of total database...................... 0.45% Number of entries................................. 313 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 2547 7.8% B-tree depth...................................... 1 Average payload per entry......................... 8.14 Average unused bytes per entry.................... 93.53 Maximum payload per entry......................... 9 Entries that use overflow......................... 0 0.0% Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 29274 89.3% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 29274 89.3% *** Index MOZ_BOOKMARKS_ITEMLASTMODIFIEDINDEX of table MOZ_BOOKMARKS ********** Percentage of total database...................... 0.45% Number of entries................................. 313 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 5020 15.3% B-tree depth...................................... 1 Average payload per entry......................... 16.04 Average unused bytes per entry.................... 85.63 Maximum payload per entry......................... 17 Entries that use overflow......................... 0 0.0% Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 26801 81.8% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 26801 81.8% *** Index MOZ_BOOKMARKS_PARENTINDEX of table MOZ_BOOKMARKS ******************** Percentage of total database...................... 0.45% Number of entries................................. 313 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 2393 7.3% B-tree depth...................................... 1 Average payload per entry......................... 7.65 Average unused bytes per entry.................... 94.02 Maximum payload per entry......................... 9 Entries that use overflow......................... 0 0.0% Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 29428 89.8% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 29428 89.8% *** Table MOZ_BOOKMARKS_ROOTS and all its indices ***************************** Percentage of total database...................... 0.90% Number of entries................................. 10 Bytes of storage consumed......................... 65536 Bytes of payload.................................. 94 0.14% Average payload per entry......................... 9.40 Average unused bytes per entry.................... 6539.10 Maximum payload per entry......................... 11 Entries that use overflow......................... 0 0.0% Primary pages used................................ 2 Overflow pages used............................... 0 Total pages used.................................. 2 Unused bytes on primary pages..................... 65391 99.78% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 65391 99.78% *** Table MOZ_BOOKMARKS_ROOTS w/o any indices ********************************* Percentage of total database...................... 0.45% Number of entries................................. 5 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 47 0.14% B-tree depth...................................... 1 Average payload per entry......................... 9.40 Average unused bytes per entry.................... 6538.60 Maximum payload per entry......................... 11 Entries that use overflow......................... 0 0.0% Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 32693 99.77% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 32693 99.77% *** Index SQLITE_AUTOINDEX_MOZ_BOOKMARKS_ROOTS_1 of table MOZ_BOOKMARKS_ROOTS * Percentage of total database...................... 0.45% Number of entries................................. 5 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 47 0.14% B-tree depth...................................... 1 Average payload per entry......................... 9.40 Average unused bytes per entry.................... 6539.60 Maximum payload per entry......................... 11 Entries that use overflow......................... 0 0.0% Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 32698 99.79% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 32698 99.79% *** Table MOZ_FAVICONS and all its indices ************************************ Percentage of total database...................... 6.8% Number of entries................................. 941 Bytes of storage consumed......................... 491520 Bytes of payload.................................. 332765 67.7% Average payload per entry......................... 353.63 Average unused bytes per entry.................... 164.00 Average fanout.................................... 7.00 Maximum payload per entry......................... 7640 Entries that use overflow......................... 0 0.0% Index pages used.................................. 2 Primary pages used................................ 13 Overflow pages used............................... 0 Total pages used.................................. 15 Unused bytes on index pages....................... 65340 99.70% Unused bytes on primary pages..................... 88980 20.9% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 154320 31.4% *** Table MOZ_FAVICONS w/o any indices **************************************** Percentage of total database...................... 5.4% Number of entries................................. 471 Bytes of storage consumed......................... 393216 Bytes of payload.................................. 297630 75.7% B-tree depth...................................... 2 Average payload per entry......................... 631.91 Average unused bytes per entry.................... 196.60 Average fanout.................................... 11.00 Non-sequential pages.............................. 6 54.5% Maximum payload per entry......................... 7640 Entries that use overflow......................... 0 0.0% Index pages used.................................. 1 Primary pages used................................ 11 Overflow pages used............................... 0 Total pages used.................................. 12 Unused bytes on index pages....................... 32676 99.72% Unused bytes on primary pages..................... 59923 16.6% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 92599 23.5% *** Index SQLITE_AUTOINDEX_MOZ_FAVICONS_1 of table MOZ_FAVICONS *************** Percentage of total database...................... 1.4% Number of entries................................. 470 Bytes of storage consumed......................... 98304 Bytes of payload.................................. 35135 35.7% B-tree depth...................................... 2 Average payload per entry......................... 74.76 Average unused bytes per entry.................... 131.32 Average fanout.................................... 3.00 Non-sequential pages.............................. 1 50.0% Maximum payload per entry......................... 7259 Entries that use overflow......................... 0 0.0% Index pages used.................................. 1 Primary pages used................................ 2 Overflow pages used............................... 0 Total pages used.................................. 3 Unused bytes on index pages....................... 32664 99.68% Unused bytes on primary pages..................... 29057 44.3% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 61721 62.8% *** Table MOZ_HISTORYVISITS and all its indices ******************************* Percentage of total database...................... 18.6% Number of entries................................. 63470 Bytes of storage consumed......................... 1343488 Bytes of payload.................................. 882233 65.7% Average payload per entry......................... 13.90 Average unused bytes per entry.................... 3.76 Average fanout.................................... 10.00 Maximum payload per entry......................... 21 Entries that use overflow......................... 0 0.0% Index pages used.................................. 4 Primary pages used................................ 37 Overflow pages used............................... 0 Total pages used.................................. 41 Unused bytes on index pages....................... 130482 99.55% Unused bytes on primary pages..................... 108158 8.9% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 238640 17.8% *** Table MOZ_HISTORYVISITS w/o any indices *********************************** Percentage of total database...................... 5.9% Number of entries................................. 15873 Bytes of storage consumed......................... 425984 Bytes of payload.................................. 308447 72.4% B-tree depth...................................... 2 Average payload per entry......................... 19.43 Average unused bytes per entry.................... 2.40 Average fanout.................................... 12.00 Non-sequential pages.............................. 8 66.7% Maximum payload per entry......................... 21 Entries that use overflow......................... 0 0.0% Index pages used.................................. 1 Primary pages used................................ 12 Overflow pages used............................... 0 Total pages used.................................. 13 Unused bytes on index pages....................... 32668 99.69% Unused bytes on primary pages..................... 5435 1.4% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 38103 8.9% *** Indices of table MOZ_HISTORYVISITS **************************************** Percentage of total database...................... 12.7% Number of entries................................. 47597 Bytes of storage consumed......................... 917504 Bytes of payload.................................. 573786 62.5% Average payload per entry......................... 12.06 Average unused bytes per entry.................... 4.21 Average fanout.................................... 9.00 Maximum payload per entry......................... 17 Entries that use overflow......................... 0 0.0% Index pages used.................................. 3 Primary pages used................................ 25 Overflow pages used............................... 0 Total pages used.................................. 28 Unused bytes on index pages....................... 97814 99.50% Unused bytes on primary pages..................... 102723 12.5% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 200537 21.9% *** Index MOZ_HISTORYVISITS_DATEINDEX of table MOZ_HISTORYVISITS ************** Percentage of total database...................... 4.5% Number of entries................................. 15865 Bytes of storage consumed......................... 327680 Bytes of payload.................................. 206221 62.9% B-tree depth...................................... 2 Average payload per entry......................... 13.00 Average unused bytes per entry.................... 4.65 Average fanout.................................... 10.00 Non-sequential pages.............................. 6 66.7% Maximum payload per entry......................... 13 Entries that use overflow......................... 0 0.0% Index pages used.................................. 1 Primary pages used................................ 9 Overflow pages used............................... 0 Total pages used.................................. 10 Unused bytes on index pages....................... 32596 99.48% Unused bytes on primary pages..................... 41128 13.9% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 73724 22.5% *** Index MOZ_HISTORYVISITS_FROMINDEX of table MOZ_HISTORYVISITS ************** Percentage of total database...................... 2.7% Number of entries................................. 15869 Bytes of storage consumed......................... 196608 Bytes of payload.................................. 100292 51.0% B-tree depth...................................... 2 Average payload per entry......................... 6.32 Average unused bytes per entry.................... 3.06 Average fanout.................................... 6.00 Non-sequential pages.............................. 4 80.0% Maximum payload per entry......................... 7 Entries that use overflow......................... 0 0.0% Index pages used.................................. 1 Primary pages used................................ 5 Overflow pages used............................... 0 Total pages used.................................. 6 Unused bytes on index pages....................... 32702 99.80% Unused bytes on primary pages..................... 15927 9.7% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 48629 24.7% *** Index MOZ_HISTORYVISITS_PLACEDATEINDEX of table MOZ_HISTORYVISITS ********* Percentage of total database...................... 5.4% Number of entries................................. 15863 Bytes of storage consumed......................... 393216 Bytes of payload.................................. 267273 68.0% B-tree depth...................................... 2 Average payload per entry......................... 16.85 Average unused bytes per entry.................... 4.93 Average fanout.................................... 12.00 Non-sequential pages.............................. 8 72.7% Maximum payload per entry......................... 17 Entries that use overflow......................... 0 0.0% Index pages used.................................. 1 Primary pages used................................ 11 Overflow pages used............................... 0 Total pages used.................................. 12 Unused bytes on index pages....................... 32516 99.23% Unused bytes on primary pages..................... 45668 12.7% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 78184 19.9% *** Table MOZ_HOSTS and all its indices *************************************** Percentage of total database...................... 0.90% Number of entries................................. 1256 Bytes of storage consumed......................... 65536 Bytes of payload.................................. 27640 42.2% Average payload per entry......................... 22.01 Average unused bytes per entry.................... 26.18 Maximum payload per entry......................... 49 Entries that use overflow......................... 0 0.0% Primary pages used................................ 2 Overflow pages used............................... 0 Total pages used.................................. 2 Unused bytes on primary pages..................... 32888 50.2% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 32888 50.2% *** Table MOZ_HOSTS w/o any indices ******************************************* Percentage of total database...................... 0.45% Number of entries................................. 628 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 14640 44.7% B-tree depth...................................... 1 Average payload per entry......................... 23.31 Average unused bytes per entry.................... 23.90 Maximum payload per entry......................... 49 Entries that use overflow......................... 0 0.0% Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 15012 45.8% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 15012 45.8% *** Index SQLITE_AUTOINDEX_MOZ_HOSTS_1 of table MOZ_HOSTS ********************* Percentage of total database...................... 0.45% Number of entries................................. 628 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 13000 39.7% B-tree depth...................................... 1 Average payload per entry......................... 20.70 Average unused bytes per entry.................... 28.46 Maximum payload per entry......................... 47 Entries that use overflow......................... 0 0.0% Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 17876 54.6% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 17876 54.6% *** Table MOZ_INPUTHISTORY and all its indices ******************************** Percentage of total database...................... 0.90% Number of entries................................. 16 Bytes of storage consumed......................... 65536 Bytes of payload.................................. 642 0.98% Average payload per entry......................... 40.12 Average unused bytes per entry.................... 4050.88 Maximum payload per entry......................... 71 Entries that use overflow......................... 0 0.0% Primary pages used................................ 2 Overflow pages used............................... 0 Total pages used.................................. 2 Unused bytes on primary pages..................... 64814 98.9% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 64814 98.9% *** Table MOZ_INPUTHISTORY w/o any indices ************************************ Percentage of total database...................... 0.45% Number of entries................................. 8 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 341 1.0% B-tree depth...................................... 1 Average payload per entry......................... 42.62 Average unused bytes per entry.................... 4047.38 Maximum payload per entry......................... 71 Entries that use overflow......................... 0 0.0% Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 32379 98.8% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 32379 98.8% *** Index SQLITE_AUTOINDEX_MOZ_INPUTHISTORY_1 of table MOZ_INPUTHISTORY ******* Percentage of total database...................... 0.45% Number of entries................................. 8 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 301 0.92% B-tree depth...................................... 1 Average payload per entry......................... 37.62 Average unused bytes per entry.................... 4054.38 Maximum payload per entry......................... 65 Entries that use overflow......................... 0 0.0% Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 32435 99.0% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 32435 99.0% *** Table MOZ_ITEMS_ANNOS and all its indices ********************************* Percentage of total database...................... 0.90% Number of entries................................. 158 Bytes of storage consumed......................... 65536 Bytes of payload.................................. 9211 14.1% Average payload per entry......................... 58.30 Average unused bytes per entry.................... 352.56 Maximum payload per entry......................... 384 Entries that use overflow......................... 0 0.0% Primary pages used................................ 2 Overflow pages used............................... 0 Total pages used.................................. 2 Unused bytes on primary pages..................... 55704 85.0% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 55704 85.0% *** Table MOZ_ITEMS_ANNOS w/o any indices ************************************* Percentage of total database...................... 0.45% Number of entries................................. 79 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 8649 26.4% B-tree depth...................................... 1 Average payload per entry......................... 109.48 Average unused bytes per entry.................... 300.54 Maximum payload per entry......................... 384 Entries that use overflow......................... 0 0.0% Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 23743 72.5% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 23743 72.5% *** Index MOZ_ITEMS_ANNOS_ITEMATTRIBUTEINDEX of table MOZ_ITEMS_ANNOS ********* Percentage of total database...................... 0.45% Number of entries................................. 79 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 562 1.7% B-tree depth...................................... 1 Average payload per entry......................... 7.11 Average unused bytes per entry.................... 404.57 Maximum payload per entry......................... 9 Entries that use overflow......................... 0 0.0% Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 31961 97.5% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 31961 97.5% *** Table MOZ_KEYWORDS and all its indices ************************************ Percentage of total database...................... 1.4% Number of entries................................. 0 Bytes of storage consumed......................... 98304 Bytes of payload.................................. 0 0.0% Average payload per entry......................... 0.0 Average unused bytes per entry.................... 0.0 Maximum payload per entry......................... 0 Entries that use overflow......................... 0 Primary pages used................................ 3 Overflow pages used............................... 0 Total pages used.................................. 3 Unused bytes on primary pages..................... 98280 99.976% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 98280 99.976% *** Table MOZ_KEYWORDS w/o any indices **************************************** Percentage of total database...................... 0.45% Number of entries................................. 0 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 0 0.0% B-tree depth...................................... 1 Average payload per entry......................... 0.0 Average unused bytes per entry.................... 0.0 Maximum payload per entry......................... 0 Entries that use overflow......................... 0 Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 32760 99.976% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 32760 99.976% *** Indices of table MOZ_KEYWORDS ********************************************* Percentage of total database...................... 0.90% Number of entries................................. 0 Bytes of storage consumed......................... 65536 Bytes of payload.................................. 0 0.0% Average payload per entry......................... 0.0 Average unused bytes per entry.................... 0.0 Maximum payload per entry......................... 0 Entries that use overflow......................... 0 Primary pages used................................ 2 Overflow pages used............................... 0 Total pages used.................................. 2 Unused bytes on primary pages..................... 65520 99.976% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 65520 99.976% *** Index MOZ_KEYWORDS_PLACEPOSTDATA_UNIQUEINDEX of table MOZ_KEYWORDS ******** Percentage of total database...................... 0.45% Number of entries................................. 0 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 0 0.0% B-tree depth...................................... 1 Average payload per entry......................... 0.0 Average unused bytes per entry.................... 0.0 Maximum payload per entry......................... 0 Entries that use overflow......................... 0 Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 32760 99.976% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 32760 99.976% *** Index SQLITE_AUTOINDEX_MOZ_KEYWORDS_1 of table MOZ_KEYWORDS *************** Percentage of total database...................... 0.45% Number of entries................................. 0 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 0 0.0% B-tree depth...................................... 1 Average payload per entry......................... 0.0 Average unused bytes per entry.................... 0.0 Maximum payload per entry......................... 0 Entries that use overflow......................... 0 Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 32760 99.976% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 32760 99.976% *** Table MOZ_PLACES and all its indices ************************************** Percentage of total database...................... 64.3% Number of entries................................. 87087 Bytes of storage consumed......................... 4653056 Bytes of payload.................................. 3659043 78.6% Average payload per entry......................... 42.02 Average unused bytes per entry.................... 7.93 Average fanout.................................... 17.00 Maximum payload per entry......................... 1867 Entries that use overflow......................... 0 0.0% Index pages used.................................. 8 Primary pages used................................ 134 Overflow pages used............................... 0 Total pages used.................................. 142 Unused bytes on index pages....................... 252188 96.2% Unused bytes on primary pages..................... 438258 10.0% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 690446 14.8% *** Table MOZ_PLACES w/o any indices ****************************************** Percentage of total database...................... 28.5% Number of entries................................. 10894 Bytes of storage consumed......................... 2064384 Bytes of payload.................................. 1838131 89.0% B-tree depth...................................... 2 Average payload per entry......................... 168.73 Average unused bytes per entry.................... 14.10 Average fanout.................................... 62.00 Non-sequential pages.............................. 30 48.4% Maximum payload per entry......................... 1867 Entries that use overflow......................... 0 0.0% Index pages used.................................. 1 Primary pages used................................ 62 Overflow pages used............................... 0 Total pages used.................................. 63 Unused bytes on index pages....................... 32207 98.3% Unused bytes on primary pages..................... 121406 6.0% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 153613 7.4% *** Indices of table MOZ_PLACES *********************************************** Percentage of total database...................... 35.7% Number of entries................................. 76193 Bytes of storage consumed......................... 2588672 Bytes of payload.................................. 1820912 70.3% Average payload per entry......................... 23.90 Average unused bytes per entry.................... 7.05 Average fanout.................................... 11.00 Maximum payload per entry......................... 1823 Entries that use overflow......................... 0 0.0% Index pages used.................................. 7 Primary pages used................................ 72 Overflow pages used............................... 0 Total pages used.................................. 79 Unused bytes on index pages....................... 219981 95.9% Unused bytes on primary pages..................... 316852 13.4% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 536833 20.7% *** Index MOZ_PLACES_FAVICONINDEX of table MOZ_PLACES ************************* Percentage of total database...................... 2.3% Number of entries................................. 10891 Bytes of storage consumed......................... 163840 Bytes of payload.................................. 83178 50.8% B-tree depth...................................... 2 Average payload per entry......................... 7.64 Average unused bytes per entry.................... 4.40 Average fanout.................................... 5.00 Non-sequential pages.............................. 3 75.0% Maximum payload per entry......................... 8 Entries that use overflow......................... 0 0.0% Index pages used.................................. 1 Primary pages used................................ 4 Overflow pages used............................... 0 Total pages used.................................. 5 Unused bytes on index pages....................... 32711 99.83% Unused bytes on primary pages..................... 15213 11.6% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 47924 29.3% *** Index MOZ_PLACES_FRECENCYINDEX of table MOZ_PLACES ************************ Percentage of total database...................... 2.3% Number of entries................................. 10891 Bytes of storage consumed......................... 163840 Bytes of payload.................................. 76772 46.9% B-tree depth...................................... 2 Average payload per entry......................... 7.05 Average unused bytes per entry.................... 4.99 Average fanout.................................... 5.00 Non-sequential pages.............................. 3 75.0% Maximum payload per entry......................... 9 Entries that use overflow......................... 0 0.0% Index pages used.................................. 1 Primary pages used................................ 4 Overflow pages used............................... 0 Total pages used.................................. 5 Unused bytes on index pages....................... 32714 99.84% Unused bytes on primary pages..................... 21616 16.5% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 54330 33.2% *** Index MOZ_PLACES_GUID_UNIQUEINDEX of table MOZ_PLACES ********************* Percentage of total database...................... 4.1% Number of entries................................. 10887 Bytes of storage consumed......................... 294912 Bytes of payload.................................. 196000 66.5% B-tree depth...................................... 2 Average payload per entry......................... 18.00 Average unused bytes per entry.................... 6.07 Average fanout.................................... 9.00 Non-sequential pages.............................. 5 62.5% Maximum payload per entry......................... 18 Entries that use overflow......................... 0 0.0% Index pages used.................................. 1 Primary pages used................................ 8 Overflow pages used............................... 0 Total pages used.................................. 9 Unused bytes on index pages....................... 32581 99.43% Unused bytes on primary pages..................... 33545 12.8% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 66126 22.4% *** Index MOZ_PLACES_HOSTINDEX of table MOZ_PLACES **************************** Percentage of total database...................... 5.0% Number of entries................................. 10885 Bytes of storage consumed......................... 360448 Bytes of payload.................................. 237383 65.9% B-tree depth...................................... 2 Average payload per entry......................... 21.81 Average unused bytes per entry.................... 8.29 Average fanout.................................... 11.00 Non-sequential pages.............................. 7 70.0% Maximum payload per entry......................... 49 Entries that use overflow......................... 0 0.0% Index pages used.................................. 1 Primary pages used................................ 10 Overflow pages used............................... 0 Total pages used.................................. 11 Unused bytes on index pages....................... 32473 99.10% Unused bytes on primary pages..................... 57782 17.6% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 90255 25.0% *** Index MOZ_PLACES_LASTVISITDATEINDEX of table MOZ_PLACES ******************* Percentage of total database...................... 3.2% Number of entries................................. 10889 Bytes of storage consumed......................... 229376 Bytes of payload.................................. 150784 65.7% B-tree depth...................................... 2 Average payload per entry......................... 13.85 Average unused bytes per entry.................... 4.21 Average fanout.................................... 7.00 Non-sequential pages.............................. 4 66.7% Maximum payload per entry......................... 14 Entries that use overflow......................... 0 0.0% Index pages used.................................. 1 Primary pages used................................ 6 Overflow pages used............................... 0 Total pages used.................................. 7 Unused bytes on index pages....................... 32651 99.64% Unused bytes on primary pages..................... 13179 6.7% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 45830 20.0% *** Index MOZ_PLACES_URL_UNIQUEINDEX of table MOZ_PLACES ********************** Percentage of total database...................... 16.7% Number of entries................................. 10859 Bytes of storage consumed......................... 1212416 Bytes of payload.................................. 1010666 83.4% B-tree depth...................................... 2 Average payload per entry......................... 93.07 Average unused bytes per entry.................... 15.42 Average fanout.................................... 37.00 Non-sequential pages.............................. 16 44.4% Maximum payload per entry......................... 1823 Entries that use overflow......................... 0 0.0% Index pages used.................................. 1 Primary pages used................................ 36 Overflow pages used............................... 0 Total pages used.................................. 37 Unused bytes on index pages....................... 24134 73.7% Unused bytes on primary pages..................... 143261 12.1% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 167395 13.8% *** Index MOZ_PLACES_VISITCOUNT of table MOZ_PLACES *************************** Percentage of total database...................... 2.3% Number of entries................................. 10891 Bytes of storage consumed......................... 163840 Bytes of payload.................................. 66129 40.4% B-tree depth...................................... 2 Average payload per entry......................... 6.07 Average unused bytes per entry.................... 5.97 Average fanout.................................... 5.00 Non-sequential pages.............................. 3 75.0% Maximum payload per entry......................... 8 Entries that use overflow......................... 0 0.0% Index pages used.................................. 1 Primary pages used................................ 4 Overflow pages used............................... 0 Total pages used.................................. 5 Unused bytes on index pages....................... 32717 99.84% Unused bytes on primary pages..................... 32256 24.6% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 64973 39.7% *** Table SQLITE_MASTER ******************************************************* Percentage of total database...................... 0.45% Number of entries................................. 36 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 5188 15.8% B-tree depth...................................... 1 Average payload per entry......................... 144.11 Average unused bytes per entry.................... 758.58 Maximum payload per entry......................... 379 Entries that use overflow......................... 0 0.0% Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 27309 83.3% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 27309 83.3% *** Table SQLITE_SEQUENCE ***************************************************** Percentage of total database...................... 0.45% Number of entries................................. 1 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 15 0.046% B-tree depth...................................... 1 Average payload per entry......................... 15.00 Average unused bytes per entry.................... 32741.00 Maximum payload per entry......................... 15 Entries that use overflow......................... 0 0.0% Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 32741 99.918% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 32741 99.918% *** Table SQLITE_STAT1 ******************************************************** Percentage of total database...................... 0.45% Number of entries................................. 15 Bytes of storage consumed......................... 32768 Bytes of payload.................................. 762 2.3% B-tree depth...................................... 1 Average payload per entry......................... 50.80 Average unused bytes per entry.................... 2128.20 Maximum payload per entry......................... 62 Entries that use overflow......................... 0 0.0% Primary pages used................................ 1 Overflow pages used............................... 0 Total pages used.................................. 1 Unused bytes on primary pages..................... 31923 97.4% Unused bytes on overflow pages.................... 0 Unused bytes on all pages......................... 31923 97.4% <a name="defs"></a>*** Definitions *************************************************************** Page size in bytes The number of bytes in a single page of the database file. Usually 1024. Number of pages in the whole file The number of 32768-byte pages that go into forming the complete database Pages that store data The number of pages that store data, either as primary B*Tree pages or as overflow pages. The number at the right is the data pages divided by the total number of pages in the file. Pages on the freelist The number of pages that are not currently in use but are reserved for future use. The percentage at the right is the number of freelist pages divided by the total number of pages in the file. Pages of auto-vacuum overhead The number of pages that store data used by the database to facilitate auto-vacuum. This is zero for databases that do not support auto-vacuum. Number of tables in the database The number of tables in the database, including the SQLITE_MASTER table used to store schema information. Number of indices The total number of indices in the database. Number of defined indices The number of indices created using an explicit CREATE INDEX statement. Number of implied indices The number of indices used to implement PRIMARY KEY or UNIQUE constraints on tables. Size of the file in bytes The total amount of disk space used by the entire database files. Bytes of user payload stored The total number of bytes of user payload stored in the database. The schema information in the SQLITE_MASTER table is not counted when computing this number. The percentage at the right shows the payload divided by the total file size. Percentage of total database The amount of the complete database file that is devoted to storing information described by this category. Number of entries The total number of B-Tree key/value pairs stored under this category. Bytes of storage consumed The total amount of disk space required to store all B-Tree entries under this category. The is the total number of pages used times the pages size. Bytes of payload The amount of payload stored under this category. Payload is the data part of table entries and the key part of index entries. The percentage at the right is the bytes of payload divided by the bytes of storage consumed. Average payload per entry The average amount of payload on each entry. This is just the bytes of payload divided by the number of entries. Average unused bytes per entry The average amount of free space remaining on all pages under this category on a per-entry basis. This is the number of unused bytes on all pages divided by the number of entries. Non-sequential pages The number of pages in the table or index that are out of sequence. Many filesystems are optimized for sequential file access so a small number of non-sequential pages might result in faster queries, especially for larger database files that do not fit in the disk cache. Note that after running VACUUM, the root page of each table or index is at the beginning of the database file and all other pages are in a separate part of the database file, resulting in a single non- sequential page. Maximum payload per entry The largest payload size of any entry. Entries that use overflow The number of entries that user one or more overflow pages. Total pages used This is the number of pages used to hold all information in the current category. This is the sum of index, primary, and overflow pages. Index pages used This is the number of pages in a table B-tree that hold only key (rowid) information and no data. Primary pages used This is the number of B-tree pages that hold both key and data. Overflow pages used The total number of overflow pages used for this category. Unused bytes on index pages The total number of bytes of unused space on all index pages. The percentage at the right is the number of unused bytes divided by the total number of bytes on index pages. Unused bytes on primary pages The total number of bytes of unused space on all primary pages. The percentage at the right is the number of unused bytes divided by the total number of bytes on primary pages. Unused bytes on overflow pages The total number of bytes of unused space on all overflow pages. The percentage at the right is the number of unused bytes divided by the total number of bytes on overflow pages. Unused bytes on all pages The total number of bytes of unused space on all primary and overflow pages. The percentage at the right is the number of unused bytes divided by the total number of bytes. <a name="sqlx"></a>******************************************************************************* The entire text of this report can be sourced into any SQL database engine for further analysis. All of the text above is an SQL comment. The data used to generate this report follows: */ BEGIN; CREATE TABLE space_used( name clob, -- Name of a table or index in the database file tblname clob, -- Name of associated table is_index boolean, -- TRUE if it is an index, false for a table nentry int, -- Number of entries in the BTree leaf_entries int, -- Number of leaf entries depth int, -- Depth of the b-tree payload int, -- Total amount of data stored in this table or index ovfl_payload int, -- Total amount of data stored on overflow pages ovfl_cnt int, -- Number of entries that use overflow mx_payload int, -- Maximum payload size int_pages int, -- Number of interior pages used leaf_pages int, -- Number of leaf pages used ovfl_pages int, -- Number of overflow pages used int_unused int, -- Number of unused bytes on interior pages leaf_unused int, -- Number of unused bytes on primary pages ovfl_unused int, -- Number of unused bytes on overflow pages gap_cnt int, -- Number of gaps in the page layout compressed_size int -- Total bytes stored on disk ); INSERT INTO space_used VALUES('sqlite_master','sqlite_master',0,36,36,1,5188,0,0,379,0,1,0,0,27309,0,0,32768); INSERT INTO space_used VALUES('moz_places','moz_places',0,10955,10894,2,1838131,0,0,1867,1,62,0,32207,121406,0,30,2064384); INSERT INTO space_used VALUES('moz_historyvisits','moz_historyvisits',0,15884,15873,2,308447,0,0,21,1,12,0,32668,5435,0,8,425984); INSERT INTO space_used VALUES('moz_inputhistory','moz_inputhistory',0,8,8,1,341,0,0,71,0,1,0,0,32379,0,0,32768); INSERT INTO space_used VALUES('sqlite_autoindex_moz_inputhistory_1','moz_inputhistory',1,8,8,1,301,0,0,65,0,1,0,0,32435,0,0,32768); INSERT INTO space_used VALUES('moz_hosts','moz_hosts',0,628,628,1,14640,0,0,49,0,1,0,0,15012,0,0,32768); INSERT INTO space_used VALUES('sqlite_autoindex_moz_hosts_1','moz_hosts',1,628,628,1,13000,0,0,47,0,1,0,0,17876,0,0,32768); INSERT INTO space_used VALUES('moz_bookmarks','moz_bookmarks',0,313,313,1,21937,0,0,518,0,1,0,0,9358,0,0,32768); INSERT INTO space_used VALUES('moz_bookmarks_roots','moz_bookmarks_roots',0,5,5,1,47,0,0,11,0,1,0,0,32693,0,0,32768); INSERT INTO space_used VALUES('sqlite_autoindex_moz_bookmarks_roots_1','moz_bookmarks_roots',1,5,5,1,47,0,0,11,0,1,0,0,32698,0,0,32768); INSERT INTO space_used VALUES('moz_keywords','moz_keywords',0,0,0,1,0,0,0,0,0,1,0,0,32760,0,0,32768); INSERT INTO space_used VALUES('sqlite_autoindex_moz_keywords_1','moz_keywords',1,0,0,1,0,0,0,0,0,1,0,0,32760,0,0,32768); INSERT INTO space_used VALUES('sqlite_sequence','sqlite_sequence',0,1,1,1,15,0,0,15,0,1,0,0,32741,0,0,32768); INSERT INTO space_used VALUES('moz_favicons','moz_favicons',0,481,471,2,297630,0,0,7640,1,11,0,32676,59923,0,6,393216); INSERT INTO space_used VALUES('sqlite_autoindex_moz_favicons_1','moz_favicons',1,471,470,2,35135,0,0,7259,1,2,0,32664,29057,0,1,98304); INSERT INTO space_used VALUES('moz_anno_attributes','moz_anno_attributes',0,12,12,1,355,0,0,42,0,1,0,0,32357,0,0,32768); INSERT INTO space_used VALUES('sqlite_autoindex_moz_anno_attributes_1','moz_anno_attributes',1,12,12,1,366,0,0,43,0,1,0,0,32358,0,0,32768); INSERT INTO space_used VALUES('moz_annos','moz_annos',0,195,195,1,12115,0,0,127,0,1,0,0,19702,0,0,32768); INSERT INTO space_used VALUES('moz_items_annos','moz_items_annos',0,79,79,1,8649,0,0,384,0,1,0,0,23743,0,0,32768); INSERT INTO space_used VALUES('sqlite_stat1','sqlite_stat1',0,15,15,1,762,0,0,62,0,1,0,0,31923,0,0,32768); INSERT INTO space_used VALUES('moz_places_faviconindex','moz_places',1,10894,10891,2,83178,0,0,8,1,4,0,32711,15213,0,3,163840); INSERT INTO space_used VALUES('moz_places_hostindex','moz_places',1,10894,10885,2,237383,0,0,49,1,10,0,32473,57782,0,7,360448); INSERT INTO space_used VALUES('moz_places_visitcount','moz_places',1,10894,10891,2,66129,0,0,8,1,4,0,32717,32256,0,3,163840); INSERT INTO space_used VALUES('moz_places_frecencyindex','moz_places',1,10894,10891,2,76772,0,0,9,1,4,0,32714,21616,0,3,163840); INSERT INTO space_used VALUES('moz_places_lastvisitdateindex','moz_places',1,10894,10889,2,150784,0,0,14,1,6,0,32651,13179,0,4,229376); INSERT INTO space_used VALUES('moz_historyvisits_placedateindex','moz_historyvisits',1,15873,15863,2,267273,0,0,17,1,11,0,32516,45668,0,8,393216); INSERT INTO space_used VALUES('moz_historyvisits_fromindex','moz_historyvisits',1,15873,15869,2,100292,0,0,7,1,5,0,32702,15927,0,4,196608); INSERT INTO space_used VALUES('moz_historyvisits_dateindex','moz_historyvisits',1,15873,15865,2,206221,0,0,13,1,9,0,32596,41128,0,6,327680); INSERT INTO space_used VALUES('moz_bookmarks_itemindex','moz_bookmarks',1,313,313,1,2547,0,0,9,0,1,0,0,29274,0,0,32768); INSERT INTO space_used VALUES('moz_bookmarks_parentindex','moz_bookmarks',1,313,313,1,2393,0,0,9,0,1,0,0,29428,0,0,32768); INSERT INTO space_used VALUES('moz_bookmarks_itemlastmodifiedindex','moz_bookmarks',1,313,313,1,5020,0,0,17,0,1,0,0,26801,0,0,32768); INSERT INTO space_used VALUES('moz_places_url_uniqueindex','moz_places',1,10894,10859,2,1010666,0,0,1823,1,36,0,24134,143261,0,16,1212416); INSERT INTO space_used VALUES('moz_places_guid_uniqueindex','moz_places',1,10894,10887,2,196000,0,0,18,1,8,0,32581,33545,0,5,294912); INSERT INTO space_used VALUES('moz_bookmarks_guid_uniqueindex','moz_bookmarks',1,313,313,1,5207,0,0,17,0,1,0,0,26614,0,0,32768); INSERT INTO space_used VALUES('moz_annos_placeattributeindex','moz_annos',1,195,195,1,1871,0,0,10,0,1,0,0,30304,0,0,32768); INSERT INTO space_used VALUES('moz_items_annos_itemattributeindex','moz_items_annos',1,79,79,1,562,0,0,9,0,1,0,0,31961,0,0,32768); INSERT INTO space_used VALUES('moz_keywords_placepostdata_uniqueindex','moz_keywords',1,0,0,1,0,0,0,0,0,1,0,0,32760,0,0,32768); COMMIT; </pre> |
Changes to pages/sqldiff.in.
1 2 3 4 5 | <title>sqldiff.exe: Database Difference Utility</title> <tcl>hd_keywords sqldiff sqldiff.exe</tcl> <h2>The sqldiff.exe Utility Program</h2> <p> | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | <title>sqldiff.exe: Database Difference Utility</title> <tcl>hd_keywords sqldiff sqldiff.exe</tcl> <h2>The sqldiff.exe Utility Program</h2> <p> The <tt>sqldiff.exe</tt> binary is a command-line utility program that displays the differences between SQLite databases. Example usage: <blockquote><pre> sqldiff [options] database1.sqlite database2.sqlite </pre></blockquote> |
︙ | ︙ |