Table Scan的意思|示意

美 / / 英 / /

表扫描


Table Scan的网络常见释义

表扫描 这些信息包括: (8.1)Table Scan(表扫描):如果看到这个信息,就说明数据表上没有聚集索引,或者查询优化器没有使用索引来查找。意即资料表的每一行都被检查到。

全表扫描 下面将列举常见的执行计划操作: Table Scan(全表扫描):如果你的表数据量非常小,表扫描是可以的,并且可能性能会比其他扫描方式好一些;如果是一张大表,这时你必须要优化索引了。

表格扫瞄 ...据表(Table)没有建立索引(Index),那么无论选取的字段有几个、WHERE子句如何设定条件,数据库仍会采全表格扫瞄(Table Scan)的方式,搜索符合条件的数据。因此数据表越大,SQL运行的时间越久。

Table Scan相关短语

1、 full table scan 全表扫描 ; 扫描 ; 等级最低 ; 对表进行扫描并检索行

2、 Sample Table Scan 采样表扫描

3、 TABLE FULL SCAN 全表扫描

Table Scan相关例句

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

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

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表进行全表扫描。

The simplest way is to read the table's data sequentially, performing a table scan as we usually call it.

最简单的方法是连续读取表中的数据,就是按照我们通常调用它的方法来执行表扫描。

Basically, it's weighing the choice of using the index to walk through the selected rows or doing a table scan.

基本上,它会权衡使用索引来遍历选择的行或者对表进行扫描这两种方式。

Table scan (TBSCAN) with partition pruning.

使用分区修剪的表扫描(TBSCAN)。

Deterministic function calls can be extracted from the WHERE clause to avoid unnecessary table scan.

可以从WHERE子句中提取确定性函数调用,避免不必要的表扫描。