zoukankan      html  css  js  c++  java
  • SAP内表选择及性能优劣

    标准表:关键字为STANDARD TABLE, 系统为该表的每一行数据生成一个逻辑索引。 填充标准表时,可以将数据附加在现有行之后,也可以插入到指定的位置,程序对内表行的寻址操作可通过关键字或索引进行。在对表进行插入、删除等操作时,各数据行在内存中的位置不变,系统仅重新排列各数据行的索引值。

    排序表:关键字为 SORTED TABLE, 也具有一个逻辑索引,不同之处是排序表总是按其关键字升序排序后再进行存储,其访问方式与标准表相同。

    哈希表:关键字为 HASHED TABLE, 没有索引,只能通过关键字来访问。系统用哈希算法管理表中的数据,因而其寻址一个数据行的时间和表的行数无关。

    Table选择,以及性能优劣:

    Slowest table accesses are sequential and grow linearly with n.

    ¨  READ standard table WITH (TABLE) KEY (no BINARY SEARCH)

    ¨  LOOP at standard/hashed table.

    ¨  READ sorted/hashed table WITH KEY (not TABLE KEY).

    Faster accesses use a sorted index and have a weak dependence on n.

    ¨  READ standard table WITH (TABLE) KEY using BINARY SEARCH)

    ¨  READ sorted table WITH TABLE KEY.

    ¨  LOOP at sorted table.

    Fastest access independent of n.

    ¨  READ hashed table WITH TABLE KEY.

    ¨  READ standard table WITH INDEX

    ¨  READ sorted table WITH INDEX.

    Note: n = number of lines in the internal table

  • 相关阅读:
    python中线程 进程 协程
    python 部署lvs
    python中函数
    python监控cpu 硬盘 内存
    python文件操作
    python中字典
    零基础逆向工程34_Win32_08_线程控制_CONTEXT结构
    零基础逆向工程33_Win32_07_创建线程
    零基础逆向工程32_Win32_06_通用控件_VM_NOTIFY
    零基础逆向工程31_Win32_05_提取图标_修改标题
  • 原文地址:https://www.cnblogs.com/xmqlv20081008/p/7209768.html
Copyright © 2011-2022 走看看