full table scan的意思|示意

美 / / 英 / /

全表扫描


full table scan的网络常见释义

全表扫描 ...我们索引行数据,一次IO就可以完成全表的检索,而此时走索引时则需检索可以完成要两次IO,这时对这个表做全表扫描(full table scan)是最好的。

扫描 ...是劣的,好比一个表只要两止数据,一次IO便可以或许完玉成表的检索,而此时走索引时则需供两次IO,当时分齐表扫描(full table scan)是最好

等级最低 ...inRBO Path 13: MAX or MIN of Indexed ColumnRBO Path 14: ORDER BY on Indexed ColumnRBO Path 15: Full Table Scan(等级最低)上面的执行路径中,RBO认为越往下执行的代价越大,即等级越低。

对表进行扫描并检索行 ... 。数据库INSERT 。数据库DELETE 。对表进行扫描并检索行,称为完全表扫描(full table scan) ...

full table scan相关短语

1、 TABLE FULL SCAN 全表扫描

full table scan相关例句

The preceding query requires MySQL to perform a full table scan, the slowest type of query for a large table.

上面的那个查询会执行一个全表扫描,对于一个大表来说这是最慢的一种查询方式。

Most often, you want only a small subset of the data in the table, so a full table scan wastes a lot of disk I/O and therefore time.

通常来说,您可能只希望获得表中数据的一个子集,因此全表扫描会浪费大量的磁盘 I/O,因此也就会浪费大量时间。

The predicates in the query in Listing 7 are weakly selective so that a full table scan of the PDBXML table is required.

清单7中查询的谓词选择性较弱,因此需要对pdbxml表进行全表扫描。

This report query requires a full table scan of the fact table.

这个报表查询需要该事实表的一个全表扫描。

Currently, a full table scan is performed whenever RUNSTATS on table is run.

目前,要运行表上的RUNSTATS,就要执行全表扫描。

Indexes improve query performance by avoiding a full table scan.

索引能够避免全表扫描,从而能够提高查询性能。