1 # Run this TCL script using "testfixture" in order get a report that shows
2 # how much disk space is used by a particular data to actually store data
3 # versus how much space is unused.
8 # Argument $tname is the name of a table within the database opened by
9 # database handle [db]. Return true if it is a WITHOUT ROWID table, or
12 proc is_without_rowid
{tname
} {
13 set t
[string map
{' ''
} $tname]
14 db
eval "PRAGMA index_list = '$t'" o
{
15 if {$o(origin
) == "pk"} {
17 if {0==[db one
{ SELECT count
(*) FROM sqlite_master WHERE name
=$n }]} {
25 # Read and run TCL commands from standard input. Used to implement
30 while {![eof stdin
]} {
37 append line
[gets stdin
]
38 if {[info complete
$line]} {
39 if {[catch {uplevel #0 $line} result]} {
40 puts stderr
"Error: $result"
41 } elseif
{$result!=""} {
52 # Get the name of the database to analyze
55 set argv0
[file rootname
[file tail
[info nameofexecutable
]]]
56 puts stderr
"Usage: $argv0 ?--pageinfo? ?--stats? database-filename"
58 Analyze the SQLite3 database
file specified by the
"database-filename"
59 argument and output a report detailing size and storage efficiency
60 information
for the database and its constituent tables and indexes.
64 --pageinfo Show how each page of the database-file is used
66 --stats Output SQL
text that creates a new database containing
67 statistics about the database that was analyzed
69 --tclsh Run the built-in TCL interpreter interactively
(for debugging
)
71 --version Show the version number of SQLite
75 set file_to_analyze
{}
76 set flags
(-pageinfo) 0
81 if {[regexp {^
-+pageinfo
$} $arg]} {
82 set flags
(-pageinfo) 1
83 } elseif
{[regexp {^
-+stats
$} $arg]} {
85 } elseif
{[regexp {^
-+debug
$} $arg]} {
87 } elseif
{[regexp {^
-+tclsh
$} $arg]} {
90 } elseif
{[regexp {^
-+version
$} $arg]} {
92 puts [mem one
{SELECT sqlite_version
()||' '||sqlite_source_id
()}]
95 } elseif
{[regexp {^
-} $arg]} {
96 puts stderr
"Unknown option: $arg"
98 } elseif
{$file_to_analyze!=""} {
101 set file_to_analyze
$arg
104 if {$file_to_analyze==""} usage
105 set root_filename
$file_to_analyze
106 regexp {^
file:(//)?
([^?
]*)} $file_to_analyze all x1 root_filename
107 if {![file exists
$root_filename]} {
108 puts stderr
"No such file: $root_filename"
111 if {![file readable
$root_filename]} {
112 puts stderr
"File is not readable: $root_filename"
115 set true_file_size
[file size
$root_filename]
116 if {$true_file_size<512} {
117 puts stderr
"Empty or malformed database: $root_filename"
121 # Compute the total file size assuming test_multiplexor is being used.
122 # Assume that SQLITE_ENABLE_8_3_NAMES might be enabled
124 set extension
[file extension
$root_filename]
125 set pattern
$root_filename
126 append pattern
{[0-3][0-9][0-9]}
127 foreach f
[glob -nocomplain $pattern] {
128 incr true_file_size
[file size
$f]
131 if {[string length
$extension]>=2 && [string length
$extension]<=4} {
132 set pattern
[file rootname
$root_filename]
133 append pattern
{.
[0-3][0-9][0-9]}
134 foreach f
[glob -nocomplain $pattern] {
135 incr true_file_size
[file size
$f]
141 if {[catch {sqlite3 db
$file_to_analyze -uri 1} msg
]} {
142 puts stderr
"error trying to open $file_to_analyze: $msg"
145 if {$flags(-debug)} {
146 proc dbtrace
{txt
} {puts $txt; flush stdout
;}
150 db
eval {SELECT count
(*) FROM sqlite_master
}
151 set pageSize
[expr {wide
([db one
{PRAGMA page_size
}])}]
153 if {$flags(-pageinfo)} {
154 db
eval {CREATE VIRTUAL TABLE temp.stat USING dbstat
}
155 db
eval {SELECT name
, path
, pageno FROM temp.stat ORDER BY pageno
} {
156 puts "$pageno $name $path"
160 if {$flags(-stats)} {
161 db
eval {CREATE VIRTUAL TABLE temp.stat USING dbstat
}
163 puts "CREATE TABLE stats("
164 puts " name STRING, /* Name of table or index */"
165 puts " path INTEGER, /* Path to page from root */"
166 puts " pageno INTEGER, /* Page number */"
167 puts " pagetype STRING, /* 'internal', 'leaf' or 'overflow' */"
168 puts " ncell INTEGER, /* Cells on page (0 for overflow) */"
169 puts " payload INTEGER, /* Bytes of payload on this page */"
170 puts " unused INTEGER, /* Bytes of unused space on this page */"
171 puts " mx_payload INTEGER, /* Largest payload size of all cells */"
172 puts " pgoffset INTEGER, /* Offset of page in file */"
173 puts " pgsize INTEGER /* Size of the page */"
175 db
eval {SELECT quote
(name
) || '
,' ||
176 quote
(path
) || '
,' ||
177 quote
(pageno
) || '
,' ||
178 quote
(pagetype
) || '
,' ||
179 quote
(ncell
) || '
,' ||
180 quote
(payload
) || '
,' ||
181 quote
(unused
) || '
,' ||
182 quote
(mx_payload
) || '
,' ||
183 quote
(pgoffset
) || '
,' ||
184 quote
(pgsize
) AS x FROM stat
} {
185 puts "INSERT INTO stats VALUES($x);"
192 # In-memory database for collecting statistics. This script loops through
193 # the tables and indices in the database being analyzed, adding a row for each
194 # to an in-memory database (for which the schema is shown below). It then
195 # queries the in-memory db to produce the space-analysis report.
198 if {$flags(-debug)} {
199 proc dbtrace
{txt
} {puts $txt; flush stdout
;}
202 set tabledef
{CREATE TABLE space_used
(
203 name clob
, -- Name of a table or index in the database
file
204 tblname clob
, -- Name of associated table
205 is_index boolean
, -- TRUE
if it is an index
, false
for a table
206 is_without_rowid boolean
, -- TRUE
if WITHOUT ROWID table
207 nentry int
, -- Number of entries in the BTree
208 leaf_entries int
, -- Number of leaf entries
209 depth int
, -- Depth of the b-tree
210 payload int
, -- Total amount of data stored in this table or index
211 ovfl_payload int
, -- Total amount of data stored on overflow pages
212 ovfl_cnt int
, -- Number of entries that use overflow
213 mx_payload int
, -- Maximum payload size
214 int_pages int
, -- Number of interior pages used
215 leaf_pages int
, -- Number of leaf pages used
216 ovfl_pages int
, -- Number of overflow pages used
217 int_unused int
, -- Number of unused bytes on interior pages
218 leaf_unused int
, -- Number of unused bytes on primary pages
219 ovfl_unused int
, -- Number of unused bytes on overflow pages
220 gap_cnt int
, -- Number of gaps in the page layout
221 compressed_size int
-- Total bytes stored on disk
225 # Create a temporary "dbstat" virtual table.
227 db
eval {CREATE VIRTUAL TABLE temp.stat USING dbstat
}
228 db
eval {CREATE TEMP TABLE dbstat AS SELECT
* FROM temp.stat
230 db
eval {DROP TABLE temp.stat
}
233 set compressOverhead
0
235 set sql
{ SELECT name
, tbl_name FROM sqlite_master WHERE rootpage
>0 }
236 foreach {name tblname
} [concat sqlite_master sqlite_master
[db
eval $sql]] {
238 set is_index
[expr {$name!=$tblname}]
239 set is_without_rowid
[is_without_rowid
$name]
242 sum
(ncell
) AS nentry
,
243 sum
((pagetype
=='leaf'
)*ncell
) AS leaf_entries
,
244 sum
(payload
) AS payload
,
245 sum
((pagetype
=='overflow'
) * payload
) AS ovfl_payload
,
246 sum
(path LIKE '
%+000000'
) AS ovfl_cnt
,
247 max
(mx_payload
) AS mx_payload
,
248 sum
(pagetype
=='internal'
) AS int_pages
,
249 sum
(pagetype
=='leaf'
) AS leaf_pages
,
250 sum
(pagetype
=='overflow'
) AS ovfl_pages
,
251 sum
((pagetype
=='internal'
) * unused
) AS int_unused
,
252 sum
((pagetype
=='leaf'
) * unused
) AS leaf_unused
,
253 sum
((pagetype
=='overflow'
) * unused
) AS ovfl_unused
,
254 sum
(pgsize
) AS compressed_size
,
255 max
((length
(CASE WHEN path LIKE '
%+%' THEN '' ELSE path END
)+3)/4)
257 FROM temp.dbstat WHERE name
= $name
260 set total_pages
[expr {$leaf_pages+$int_pages+$ovfl_pages}]
261 set storage
[expr {$total_pages*$pageSize}]
262 if {!$isCompressed && $storage>$compressed_size} {
264 set compressOverhead
14
267 # Column 'gap_cnt' is set to the number of non-contiguous entries in the
268 # list of pages visited if the b-tree structure is traversed in a top-down
269 # fashion (each node visited before its child-tree is passed). Any overflow
270 # chains present are traversed from start to finish before any child-tree
276 SELECT pageno
, pagetype FROM temp.dbstat
280 if {$prev>0 && $pagetype=="leaf" && $pageno!=$prev+1} {
286 INSERT INTO space_used VALUES
(
310 proc integerify
{real
} {
311 if {[string is double
-strict $real]} {
312 return [expr {wide
($real)}]
317 mem function int integerify
319 # Quote a string for use in an SQL query. Examples:
321 # [quote {hello world}] == {'hello world'}
322 # [quote {hello world's}] == {'hello world''s'}
325 return [string map
{' ''
} $txt]
328 # Output a title line
330 proc titleline
{title
} {
332 puts [string repeat
* 79]
334 set len
[string length
$title]
335 set stars
[string repeat
* [expr 79-$len-5]]
336 puts "*** $title $stars"
340 # Generate a single line of output in the statistics section of the
343 proc statline
{title value
{extra
{}}} {
344 set len
[string length
$title]
345 set dots
[string repeat .
[expr 50-$len]]
346 set len
[string length
$value]
347 set sp2
[string range
{ } $len end
]
351 puts "$title$dots $value$sp2$extra"
354 # Generate a formatted percentage value for $num/$denom
356 proc percent
{num denom
{of
{}}} {
357 if {$denom==0.0} {return ""}
358 set v
[expr {$num*100.0/$denom}]
360 if {$v==100.0 ||
$v<0.001 ||
($v>1.0 && $v<99.0)} {
361 return [format {%5.1f
%% %s
} $v $of]
362 } elseif
{$v<0.1 ||
$v>99.9} {
363 return [format {%7.3f
%% %s
} $v $of]
365 return [format {%6.2f
%% %s
} $v $of]
369 proc divide
{num denom
} {
370 if {$denom==0} {return 0.0}
371 return [format %.2f
[expr double
($num)/double
($denom)]]
374 # Generate a subreport that covers some subset of the database.
375 # the $where clause determines which subset to analyze.
377 proc subreport
{title where showFrag
} {
378 global pageSize file_pgcnt compressOverhead
380 # Query the in-memory database for the sum of various statistics
381 # for the subset of tables/indices identified by the WHERE clause in
382 # $where. Note that even if the WHERE clause matches no rows, the
383 # following query returns exactly one row (because it is an aggregate).
385 # The results of the query are stored directly by SQLite into local
386 # variables (i.e. $nentry, $payload etc.).
391 CASE WHEN (is_without_rowid OR is_index) THEN nentry
395 int(sum(payload)) AS payload,
396 int(sum(ovfl_payload)) AS ovfl_payload,
397 max(mx_payload) AS mx_payload,
398 int(sum(ovfl_cnt)) as ovfl_cnt,
399 int(sum(leaf_pages)) AS leaf_pages,
400 int(sum(int_pages)) AS int_pages,
401 int(sum(ovfl_pages)) AS ovfl_pages,
402 int(sum(leaf_unused)) AS leaf_unused,
403 int(sum(int_unused)) AS int_unused,
404 int(sum(ovfl_unused)) AS ovfl_unused,
405 int(sum(gap_cnt)) AS gap_cnt,
406 int(sum(compressed_size)) AS compressed_size,
407 int(max(depth)) AS depth,
409 FROM space_used WHERE $where" {} {}
411 # Output the sub-report title, nicely decorated with * characters.
417 # Calculate statistics and store the results in TCL variables, as follows:
419 # total_pages: Database pages consumed.
420 # total_pages_percent: Pages consumed as a percentage of the file.
421 # storage: Bytes consumed.
422 # payload_percent: Payload bytes used as a percentage of $storage.
423 # total_unused: Unused bytes on pages.
424 # avg_payload: Average payload per btree entry.
425 # avg_fanout: Average fanout for internal pages.
426 # avg_unused: Average unused bytes per btree entry.
427 # avg_meta: Average metadata overhead per entry.
428 # ovfl_cnt_percent: Percentage of btree entries that use overflow pages.
430 set total_pages
[expr {$leaf_pages+$int_pages+$ovfl_pages}]
431 set total_pages_percent
[percent
$total_pages $file_pgcnt]
432 set storage
[expr {$total_pages*$pageSize}]
433 set payload_percent
[percent
$payload $storage {of storage consumed
}]
434 set total_unused
[expr {$ovfl_unused+$int_unused+$leaf_unused}]
435 set avg_payload
[divide
$payload $nentry]
436 set avg_unused
[divide
$total_unused $nentry]
437 set total_meta
[expr {$storage - $payload - $total_unused}]
438 set total_meta
[expr {$total_meta + 4*($ovfl_pages - $ovfl_cnt)}]
439 set meta_percent
[percent
$total_meta $storage {of metadata
}]
440 set avg_meta
[divide
$total_meta $nentry]
442 # TODO: Is this formula correct?
444 SELECT count(*) FROM (
445 SELECT DISTINCT tblname FROM space_used WHERE $where AND is_index=0
448 set avg_fanout
[mem
eval "
449 SELECT (sum(leaf_pages+int_pages)-$nTab)/sum(int_pages) FROM space_used
452 set avg_fanout
[format %.2f
$avg_fanout]
454 set ovfl_cnt_percent
[percent
$ovfl_cnt $nentry {of all entries
}]
456 # Print out the sub-report statistics.
458 statline
{Percentage of total database
} $total_pages_percent
459 statline
{Number of entries
} $nentry
460 statline
{Bytes of storage consumed
} $storage
461 if {$compressed_size!=$storage} {
462 set compressed_size
[expr {$compressed_size+$compressOverhead*$total_pages}]
463 set pct
[expr {$compressed_size*100.0/$storage}]
464 set pct
[format {%5.1f
%%} $pct]
465 statline
{Bytes used
after compression
} $compressed_size $pct
467 statline
{Bytes of payload
} $payload $payload_percent
468 statline
{Bytes of metadata
} $total_meta $meta_percent
469 if {$cnt==1} {statline
{B-tree depth
} $depth}
470 statline
{Average payload per
entry} $avg_payload
471 statline
{Average unused bytes per
entry} $avg_unused
472 statline
{Average metadata per
entry} $avg_meta
473 if {[info exists avg_fanout
]} {
474 statline
{Average fanout
} $avg_fanout
476 if {$showFrag && $total_pages>1} {
477 set fragmentation
[percent
$gap_cnt [expr {$total_pages-1}]]
478 statline
{Non-sequential pages
} $gap_cnt $fragmentation
480 statline
{Maximum payload per
entry} $mx_payload
481 statline
{Entries that use overflow
} $ovfl_cnt $ovfl_cnt_percent
483 statline
{Index pages used
} $int_pages
485 statline
{Primary pages used
} $leaf_pages
486 statline
{Overflow pages used
} $ovfl_pages
487 statline
{Total pages used
} $total_pages
489 set int_unused_percent
[
490 percent
$int_unused [expr {$int_pages*$pageSize}] {of index space
}]
491 statline
"Unused bytes on index pages" $int_unused $int_unused_percent
493 statline
"Unused bytes on primary pages" $leaf_unused [
494 percent
$leaf_unused [expr {$leaf_pages*$pageSize}] {of primary space
}]
495 statline
"Unused bytes on overflow pages" $ovfl_unused [
496 percent
$ovfl_unused [expr {$ovfl_pages*$pageSize}] {of overflow space
}]
497 statline
"Unused bytes on all pages" $total_unused [
498 percent
$total_unused $storage {of all space
}]
502 # Calculate the overhead in pages caused by auto-vacuum.
504 # This procedure calculates and returns the number of pages used by the
505 # auto-vacuum 'pointer-map'. If the database does not support auto-vacuum,
506 # then 0 is returned. The two arguments are the size of the database file in
507 # pages and the page size used by the database (in bytes).
508 proc autovacuum_overhead
{filePages pageSize
} {
510 # Set $autovacuum to non-zero for databases that support auto-vacuum.
511 set autovacuum
[db one
{PRAGMA auto_vacuum
}]
513 # If the database is not an auto-vacuum database or the file consists
514 # of one page only then there is no overhead for auto-vacuum. Return zero.
515 if {0==$autovacuum ||
$filePages==1} {
519 # The number of entries on each pointer map page. The layout of the
520 # database file is one pointer-map page, followed by $ptrsPerPage other
521 # pages, followed by a pointer-map page etc. The first pointer-map page
522 # is the second page of the file overall.
523 set ptrsPerPage
[expr double
($pageSize/5)]
525 # Return the number of pointer map pages in the database.
526 return [expr wide
(ceil
( ($filePages-1.0)/($ptrsPerPage+1.0) ))]
530 # Calculate the summary statistics for the database and store the results
531 # in TCL variables. They are output below. Variables are as follows:
533 # pageSize: Size of each page in bytes.
534 # file_bytes: File size in bytes.
535 # file_pgcnt: Number of pages in the file.
536 # file_pgcnt2: Number of pages in the file (calculated).
537 # av_pgcnt: Pages consumed by the auto-vacuum pointer-map.
538 # av_percent: Percentage of the file consumed by auto-vacuum pointer-map.
539 # inuse_pgcnt: Data pages in the file.
540 # inuse_percent: Percentage of pages used to store data.
541 # free_pgcnt: Free pages calculated as (<total pages> - <in-use pages>)
542 # free_pgcnt2: Free pages in the file according to the file header.
543 # free_percent: Percentage of file consumed by free pages (calculated).
544 # free_percent2: Percentage of file consumed by free pages (header).
545 # ntable: Number of tables in the db.
546 # nindex: Number of indices in the db.
547 # nautoindex: Number of indices created automatically.
548 # nmanindex: Number of indices created manually.
549 # user_payload: Number of bytes of payload in table btrees
550 # (not including sqlite_master)
551 # user_percent: $user_payload as a percentage of total file size.
553 ### The following, setting $file_bytes based on the actual size of the file
554 ### on disk, causes this tool to choke on zipvfs databases. So set it based
555 ### on the return of [PRAGMA page_count] instead.
557 set file_bytes
[file size
$file_to_analyze]
558 set file_pgcnt
[expr {$file_bytes/$pageSize}]
560 set file_pgcnt
[db one
{PRAGMA page_count
}]
561 set file_bytes
[expr {$file_pgcnt * $pageSize}]
563 set av_pgcnt
[autovacuum_overhead
$file_pgcnt $pageSize]
564 set av_percent
[percent
$av_pgcnt $file_pgcnt]
566 set sql
{SELECT sum
(leaf_pages
+int_pages
+ovfl_pages
) FROM space_used
}
567 set inuse_pgcnt
[expr wide
([mem
eval $sql])]
568 set inuse_percent
[percent
$inuse_pgcnt $file_pgcnt]
570 set free_pgcnt
[expr {$file_pgcnt-$inuse_pgcnt-$av_pgcnt}]
571 set free_percent
[percent
$free_pgcnt $file_pgcnt]
572 set free_pgcnt2
[db one
{PRAGMA freelist_count
}]
573 set free_percent2
[percent
$free_pgcnt2 $file_pgcnt]
575 set file_pgcnt2
[expr {$inuse_pgcnt+$free_pgcnt2+$av_pgcnt}]
577 set ntable
[db
eval {SELECT count
(*)+1 FROM sqlite_master WHERE type
='table'
}]
578 set nindex
[db
eval {SELECT count
(*) FROM sqlite_master WHERE type
='index'
}]
579 set sql
{SELECT count
(*) FROM sqlite_master WHERE name LIKE 'sqlite_autoindex
%'
}
580 set nautoindex
[db
eval $sql]
581 set nmanindex
[expr {$nindex-$nautoindex}]
583 # set total_payload [mem eval "SELECT sum(payload) FROM space_used"]
584 set user_payload
[mem one
{SELECT int
(sum
(payload
)) FROM space_used
585 WHERE NOT is_index AND name NOT LIKE 'sqlite_master'
}]
586 set user_percent
[percent
$user_payload $file_bytes]
588 # Output the summary statistics calculated above.
590 puts "/** Disk-Space Utilization Report For $root_filename"
592 statline
{Page size in bytes
} $pageSize
593 statline
{Pages in the whole
file (measured
)} $file_pgcnt
594 statline
{Pages in the whole
file (calculated
)} $file_pgcnt2
595 statline
{Pages that store data
} $inuse_pgcnt $inuse_percent
596 statline
{Pages on the freelist
(per header
)} $free_pgcnt2 $free_percent2
597 statline
{Pages on the freelist
(calculated
)} $free_pgcnt $free_percent
598 statline
{Pages of auto-vacuum overhead
} $av_pgcnt $av_percent
599 statline
{Number of tables in the database
} $ntable
600 statline
{Number of indices
} $nindex
601 statline
{Number of defined indices
} $nmanindex
602 statline
{Number of implied indices
} $nautoindex
604 statline
{Size of uncompressed content in bytes
} $file_bytes
605 set efficiency
[percent
$true_file_size $file_bytes]
606 statline
{Size of compressed
file on disk
} $true_file_size $efficiency
608 statline
{Size of the
file in bytes
} $file_bytes
610 statline
{Bytes of user payload stored
} $user_payload $user_percent
612 # Output table rankings
615 titleline
"Page counts for all tables with their indices"
617 mem
eval {SELECT tblname
, count
(*) AS cnt
,
618 int
(sum
(int_pages
+leaf_pages
+ovfl_pages
)) AS size
619 FROM space_used GROUP BY tblname ORDER BY size
+0 DESC
, tblname
} {} {
620 statline
[string toupper
$tblname] $size [percent
$size $file_pgcnt]
623 titleline
"Page counts for all tables and indices separately"
628 int
(int_pages
+leaf_pages
+ovfl_pages
) AS size
630 ORDER BY size
+0 DESC
, name
} {} {
631 statline
$nm $size [percent
$size $file_pgcnt]
635 titleline
"Bytes of disk space used after compression"
638 mem
eval {SELECT tblname
,
639 int
(sum
(compressed_size
)) +
640 $compressOverhead*sum
(int_pages
+leaf_pages
+ovfl_pages
)
642 FROM space_used GROUP BY tblname ORDER BY csize
+0 DESC
, tblname
} {} {
644 statline
[string toupper
$tblname] $csize [percent
$csize $true_file_size]
646 set overhead
[expr {$true_file_size - $csum}]
648 statline
{Header and free space
} $overhead [percent
$overhead $true_file_size]
655 subreport
{All tables and indices
} 1 0
657 subreport
{All tables
} {NOT is_index
} 0
659 subreport
{All indices
} {is_index
} 0
661 foreach tbl
[mem
eval {SELECT DISTINCT tblname name FROM space_used
664 set name
[string toupper
$tbl]
665 set n
[mem
eval {SELECT count
(*) FROM space_used WHERE tblname
=$tbl}]
667 set idxlist
[mem
eval "SELECT name FROM space_used
668 WHERE tblname='$qn' AND is_index
670 subreport
"Table $name and all its indices" "tblname='$qn'" 0
671 subreport
"Table $name w/o any indices" "name='$qn'" 1
672 if {[llength $idxlist]>1} {
673 subreport
"Indices of table $name" "tblname='$qn' AND is_index" 0
675 foreach idx
$idxlist {
676 set qidx
[quote
$idx]
677 subreport
"Index [string toupper $idx] of table $name" "name='$qidx'" 1
680 subreport
"Table $name" "name='$qn'" 1
684 # Output instructions on what the numbers above mean.
687 titleline Definitions
691 The number of bytes in a single page of the database
file.
694 Number of pages in the whole
file
696 puts " The number of $pageSize-byte pages that go into forming the complete
699 Pages that store data
701 The number of pages that store data
, either as primary B
*Tree pages or
702 as overflow pages. The number at the right is the data pages divided by
703 the total number of pages in the
file.
705 Pages on the freelist
707 The number of pages that are not currently in use but are reserved
for
708 future use. The percentage at the right is the number of freelist pages
709 divided by the total number of pages in the
file.
711 Pages of auto-vacuum overhead
713 The number of pages that store data used by the database to facilitate
714 auto-vacuum. This is zero
for databases that do not support auto-vacuum.
716 Number of tables in the database
718 The number of tables in the database
, including the SQLITE_MASTER table
719 used to store schema information.
723 The total number of indices in the database.
725 Number of defined indices
727 The number of indices created using an explicit CREATE INDEX statement.
729 Number of implied indices
731 The number of indices used to implement PRIMARY KEY or UNIQUE constraints
734 Size of the
file in bytes
736 The total amount of disk space used by the entire database files.
738 Bytes of user payload stored
740 The total number of bytes of user payload stored in the database. The
741 schema information in the SQLITE_MASTER table is not counted when
742 computing this number. The percentage at the right shows the payload
743 divided by the total
file size.
745 Percentage of total database
747 The amount of the complete database
file that is devoted to storing
748 information described by this category.
752 The total number of B-Tree key
/value pairs stored under this category.
754 Bytes of storage consumed
756 The total amount of disk space required to store all B-Tree entries
757 under this category. The is the total number of pages used times
762 The amount of payload stored under this category. Payload is the data
763 part of table entries and the key part of index entries. The percentage
764 at the right is the bytes of payload divided by the bytes of storage
769 The amount of formatting and structural information stored in the
770 table or index. Metadata includes the btree page header
, the cell pointer
771 array, the size field
for each cell
, the left child pointer or non-leaf
772 cells
, the overflow pointers
for overflow cells
, and the rowid value
for
773 rowid table cells. In other words
, metadata is everything that is neither
774 unused space nor content. The record header in the payload is counted as
775 content
, not metadata.
777 Average payload per
entry
779 The average amount of payload on each
entry. This is just the bytes of
780 payload divided by the number of entries.
782 Average unused bytes per
entry
784 The average amount of free space remaining on all pages under this
785 category on a per-entry basis. This is the number of unused bytes on
786 all pages divided by the number of entries.
790 The number of pages in the table or index that are out of sequence.
791 Many filesystems are optimized
for sequential
file access so a small
792 number of non-sequential pages might result in faster queries
,
793 especially
for larger database files that do not fit in the disk cache.
794 Note that
after running VACUUM
, the root page of each table or index is
795 at the beginning of the database
file and all other pages are in a
796 separate part of the database
file, resulting in a single non-
799 Maximum payload per
entry
801 The largest payload size of any
entry.
803 Entries that use overflow
805 The number of entries that user one or more overflow pages.
809 This is the number of pages used to hold all information in the current
810 category. This is the sum of index
, primary
, and overflow pages.
814 This is the number of pages in a table B-tree that hold only key
(rowid
)
815 information and no data.
819 This is the number of B-tree pages that hold both key and data.
823 The total number of overflow pages used
for this category.
825 Unused bytes on index pages
827 The total number of bytes of unused space on all index pages. The
828 percentage at the right is the number of unused bytes divided by the
829 total number of bytes on index pages.
831 Unused bytes on primary pages
833 The total number of bytes of unused space on all primary pages. The
834 percentage at the right is the number of unused bytes divided by the
835 total number of bytes on primary pages.
837 Unused bytes on overflow pages
839 The total number of bytes of unused space on all overflow pages. The
840 percentage at the right is the number of unused bytes divided by the
841 total number of bytes on overflow pages.
843 Unused bytes on all pages
845 The total number of bytes of unused space on all primary and overflow
846 pages. The percentage at the right is the number of unused bytes
847 divided by the total number of bytes.
850 # Output a dump of the in-memory database. This can be used for more
851 # complex offline analysis.
854 puts "The entire text of this report can be sourced into any SQL database"
855 puts "engine for further analysis. All of the text above is an SQL comment."
856 puts "The data used to generate this report follows:"
861 mem
eval {SELECT
* FROM space_used
} x
{
862 puts -nonewline "INSERT INTO space_used VALUES"
866 if {$v=="" ||
![string is double
$v]} {set v '
[quote
$v]'
}
867 puts -nonewline $sep$v