您要查找的是不是:
- Write the nested loops in the normal way. 以常规方法编写嵌套循环。
- The physical operator used, such as Hash Join or Nested Loops. 使用的物理运算符,例如Hash Join或Nested Loops。
- In large queries, however, nested loops joins are often not the optimal choice. 但在大型查询中,嵌套循环联接通常不是最佳选择。
- The following example demonstrates using goto to break out from nested loops. 下面的示例演示了使用goto跳出嵌套循环。
- The goto statement is also useful to get out of deeply nested loops. goto语句还用于跳出深嵌套循环。
- Join Method:包括nested loop, sort merge, cartesian, and hash joins. 也就是说两个两个的连接,直到所有的连接全部走完。
- In this example, two nested loops are used to search for a substring within a string. 在此示例中,使用了两个嵌套循环来搜索一个字符串中的子字符串。
- The result is less code and the elimination of a common source of errors when writing nested loops. 结果是当编写嵌套循环时更少的程序代码和消除了共同的错误源。
- In many small transactions, such as those affecting only a small set of rows, index nested loops joins are superior to both merge joins and hash joins. 在许多小事务中(如那些只影响较小的一组行的事务),索引嵌套循环联接优于合并联接和哈希联接。
- For example, right-click Nested Loops Join and choose Help for information about the resources used by that part of the execution. 例如,右击[嵌套循环连接]并选择[帮助]以获取有关该执行部分使用的资源的信息。
- In other cases, such as nested loops joins, a poor cache-hit ratio may indicate a performance problem, and you may benefit from increasing your cache size. 而在另外一些情况下(如嵌套循环连接),较低的高速缓存命中率可能说明存在性能问题,而您可以通过增加高速缓存大小来提高性能。
- This method consists of two nested loops: the first loop iterate through all the registered types. The second loop iterates through all attributes for the current type. 这个方法由两个嵌套的循环组成:第一个循环遍历所有注册的类型。第二个循环遍历当前类型的所有特性。
- The Continue keyword can be used in a nested loop to skip to the next iteration of an outer loop. 可以在嵌套循环中使用Continue关键字以跳到外层循环的下一次迭代
- If the operator is rewound (for example, by a Nested Loops operator) but no rebinding is needed, the spooled data is used instead of rescanning the input. 如果重绕该运算符(例如通过Nested Loops运算符重绕),但不需要任何重新绑定,则将使用假脱机数据,而不用重新扫描输入。
- Adjusted the wording of the introduction and added the forcing of a nested loop join. 调整了简介的措辞并添加了强制使用嵌套循环联接。
- It's important to remember that the only reason to use labels in Java is when you have nested loops and you want to break or continue through more than one nested level. 大家要记住的重点是:在Java里唯一需要用到标签的地方就是拥有嵌套循环,而且想中断或继续多个嵌套级别的时候。
- Join plan directives that force optimizer to use the designated join method to join tables in the query, either nested loop join, sort merge join, or dynamic hash join. 连接计划指示,强制优化器使用指定的连接方法来连接查询中的表,要么是嵌套循环连接、分类合并连接,要么是动态哈希连接。
- This paper revealed an optimized strategy to search for systolic array transformations for nested loops, when the upper and lower bound of inner index was affine functions of there outer loop indexes. 摘要对于多重循环中,当内层迭代的上下界为外层迭代的仿射函数时,介绍了搜索脉动变换的一个优化策略和相应的自动化算法。
- This paper revealed an optimized strategy to search for systolic array transformations for nested loops,when the upper and lower bound of inner index was affine functions of there outer loop indexes. 对于多重循环中,当内层迭代的上下界为外层迭代的仿射函数时,介绍了搜索脉动变换的一个优化策略和相应的自动化算法。
- Because the For Loop container can include other For Loop containers, you can build nested loops and implement complex looping in packages. 因为For循环容器可以包含其他For循环容器,所以可以在包中构建嵌套循环和实现复杂循环。