Full Table Scan - Definição do Glossário CI/CD
Um full table scan lê todas as linhas de uma tabela para responder a uma consulta. É aceitável em tabelas pequenas, mas em tabelas grandes sinaliza um índice ausente e uma consulta lenta.
Guias relacionados
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…