You are here

function dba_mysql_report_help_scan in Database Administration 7

1 call to dba_mysql_report_help_scan()
dba_mysql_report_output in database/mysql.report.inc
Build mysqlreport output.

File

database/mysql.report.inc, line 533
Provides database driver specific report functions.

Code

function dba_mysql_report_help_scan() {
  return t("A SCAN is a SELECT query that required scanning the entire table instead of just a subset of it. These types of queries will often show up in your slow query log, and should be optimized by adding a LIMIT to the queries.");
}