Full Table Scan - CI/CD Glossary Definition
A full table scan reads every row of a table to answer a query. It is acceptable on small tables, but on large ones it signals a missing index and a slow query.
Related guides
Index Scan - CI/CD Glossary DefinitionAn index scan reads rows by walking a database index instead of the whole table, jumping straight to matching…
Query Plan - CI/CD Glossary DefinitionA query plan is the step-by-step strategy a database picks to execute a SQL statement - which indexes, joins,…
N+1 Query - CI/CD Glossary DefinitionThe N+1 query problem is running one query to fetch a list, then one extra query per item - turning a page lo…