网站首页  词典首页

请输入您要查询的英文单词:

 

单词 nested loop
释义

nested loop

  • 网络嵌套循环;嵌套循环连接;嵌套连接
1.
嵌套循环
3、 嵌套循环Nested Loop):在最少两个结果集中,使用嵌套循环会比较有效,这两个结果集中,作为外部表的集合要小, …
blog.csdn.net
2.
嵌套循环连接
嵌套循环连接(Nested Loop):对左边的关系里面找到的每条元组都对右边关系进行一次扫描。 这个策略是最容易实现,但是可 …
bluehuns.blog.163.com
3.
嵌套连接
还有平时使用最多的嵌套连接(Nested loop) 做join的行必须在相同的AMP上: ? 如果需要,系统将创建一行或多行的spool拷贝并将 …
blog.csdn.net
4.
循环嵌套链接
8.3.14... ... 8.3.14.2 群集链接( CLUSTER JOIN) 8.3.14.1 循环嵌套链接NESTED LOOP) 8.3.14.3 排序合并链接( SOR…
book.51cto.com
5.
循环结合
PostgreSQL... ... Function Scan: 函数扫描。无启动时间。 Nested Loop循环结合。无启动时间。 Merge Join: 合并结合 …
blog.csdn.net
6.
巢状回圈
巢状回圈nested loop)是指一个回圈里面还存在一个以上的回圈。 巢状回圈执行的总次数为每一个回圈执行次数的乘积。
wiki.plweb.org
7.
嵌套循环方法
Hash Join 1. 嵌套循环方法(nested loop) ? 对外层循环(Student)的每一个元组(s),检索内层循环 (SC)中的每一个元组(sc) ? 检 …
www.docin.com
8.
多重循环
... 多向选择6.9 组合框 GroupBox6.10 控件7.3 条件循环7.4 多重循环 Nested Loop7.5 局域变量与全局变量7.6 定时器 Timer7.7 ...
www.tushucheng.com

例句

释义:
1.
The Continue keyword can be used in a nested loop to skip to the next iteration of an outer loop.
可以在嵌套循环中使用Continue关键字以跳到外层循环的下一次迭代
msdn2.microsoft.com
2.
The result of that join operation then becomes the first input to the second join operation (also a nested loop join).
该联接操作的结果就成为第一个联接操作输入到第二个联接操作(也是一个嵌套循环联接)。
www.ibm.com
3.
However, the benefit of the merge scan join is that the inner table does not have to be scanned repeatedly as it does for nested loop joins.
然而,合并扫描联接的好处是不必反复地扫描内部表因为其为嵌套循环联接工作。
www.ibm.com
4.
This type of access path is referred to as a nested loop join (NLJOIN) with sort composite.
这种类型的访问路径被称为使用复合排序的嵌套循环联接(NLJOIN)。
www.ibm.com
5.
As previously stated, ordered input is essential to a merge scan join, but it is not required for nested loop joins.
如前所述,按顺序的输入对于合并扫描联接是必不可少的,但其无需嵌套循环联接。
www.ibm.com
6.
Adjusted the wording of the introduction and added the forcing of a nested loop join.
调整了简介的措辞并添加了强制使用嵌套循环联接。
msdn2.microsoft.com
7.
So when compared to a nested loop join, the merge scan join may incur the cost for sorting the inputs.
因此,当与嵌套循环联接比较时,合并扫描联接可能对于排序输入产生成本。
www.ibm.com
8.
Contrarily to the nested loop join, indexes are no longer so important.
与嵌套循环联接相反,索引不再是非常重要的了。
www.ioracle.org
9.
In it you will find the difference between a hash map join and a nested loop join and which is better.
你会发现hashmapjoin与nestedloopjoin的区别,同时也可以判定出哪个更好一些。
www.infoq.com
10.
In a nested-loop join, the first (or outer) table is scanned for rows that meet the query criteria.
在嵌套循环连接中,将扫描第一个(或外部)表,以查找满足查询规则的行。
www.ibm.com
1.
The realization of mapping a class of nested loop algorithms to linear systolic array is studied.
研究了一类多重循环算法的线性脉动阵列实现。
www.dictall.com
2.
In addition, hash, merge, and block-nested loop joins can only be used when an equijoin condition is present.
此外,只有当存在等值连接条件时,才可能使用散列、合并和块嵌套循环连接。
www.ianywhere.com
3.
The nested loop join method is used to join the remote query result from each warehouse and the XML composite view result.
这里使用了嵌套的循环连接方法来连接来自每个仓库的远程查询结果和XML合成视图结果。
www.ibm.com
4.
Therefore, in Figure 7 the optimizer chooses to sort the composite for the nested loop join.
因此,在图7中优化器选择排序嵌套循环联接的复合物。
www.ibm.com
5.
However, if 0 is used in the predicate, a nested-loop join would be the optimal choice instead of merge join.
然而,如果断言中使用的值为0,那么内嵌循环联接可能是最优选择,而不是合并联接。
www.ibm.com
6.
For each row, the nested loop join (NLJOIN) operator passes a pointer to the corresponding XML document to the XSCAN operator.
对于每一行,嵌套循环连接(NLJOIN)操作符把指向相应的XML文档的指针传递给XSCAN操作符。
www.ibm.com
7.
Also, the nested loop join method is used to join the source and target tables.
而且,嵌套循环联接方法用于联接源表与目标表。
www.ibm.com
8.
Figure 4 shows a plan using the nested loop join operations at the federated server to evaluate this query.
图4展示了一个在联邦服务器使用嵌套循环连接操作符来计算这个查询的计划。
www.ibm.com
9.
This is a lot faster than a nested loop join of two table scans without any index usage.
这比不使用任何索引的两个表扫描的嵌套循环连接要快得多。
www.ibm.com
10.
For example, if the user provides (t1. pending=1) as predicate, using a nested-loop join to go through a million rows will take a long time.
例如,如果用户输入的断言值为(t1.pending=1),那么使用内嵌循环联接遍历一百万行记录需要的时间会很长。
www.ibm.com
1.
Because of how nested loop joins work, the second leg (there are four nodes) is executed per outer table record.
因为嵌套循环联接的工作方式,所以每隔一个外部表记录执行第二步(共4个节点)。
www.ibm.com
2.
There is a nested loop join (NLJOIN, step 4) of the insert (step 5) to an index scan (IXSCAN, step 7).
其中有一个insert(步骤5)与索引扫描(步骤7)之间的嵌套循环连接(NLJOIN,步骤4)。
www.ibm.com
3.
Update bill_items (58 seconds); sequential scan of bill_items with a nested loop read of customer
更新bill_items(58秒);利用对customer的嵌套循环读取,来顺序扫描bill_items
www.ibm.com
4.
Update bills (5 seconds); sequential scan of bills with a nested loop read of bill_items
更新bills(5秒);利用对bill_items的循环嵌套读取来顺序扫描
www.ibm.com
5.
Research on Optimized-algorithms of the Nested-loop Algorithm
嵌套循环算法的改进算法研究
www.ilib.cn
6.
Here's what happens at execution time for the first leg of the nested loop join
以下是在执行嵌套循环联接的第一步时将发生的操作
www.ibm.com
7.
The optimizer will choose nested-loop joins if
如果满足下列条件,优化器将选择嵌套循环连接
www.ibm.com
8.
Tracking Time in a Nested-loop PLL for Pico-satellite
星载嵌套锁相环锁定时间的分析
www.ilib.cn
9.
The 2 tables in QB2 are joined with nested loop join (NLJ)
QB2中两个表用嵌套循环(NLJ)连接。
www.ibm.com
随便看

 

英汉双解词典包含2704715条英汉词条,基本涵盖了全部常用单词的翻译及用法,是英语学习的有利工具。

 

Copyright © 2004-2022 Newdu.com All Rights Reserved
更新时间:2025/8/11 6:09:02