您的位置:首页 > 其它

Database System Concepts (4) -- Indexing and Hashing

2007-08-19 14:49 447 查看
 Indexing and Hashing
    basic concepts
       two basic kind of indices: ordered indices and hash indices
       evaluating factors:
          Access types
          Access time
          Insertion time
          Deletion time
          Space overhead
       ordered indices
          primary index: an index whose search key also defines the sequential order of the file
              densw and sparse indices
              multilevel index: smaller!
          secondary indices: an index whose search key specifies an order different from the sequential order of the file
              must be dense, The pointer in a secondary index do not point directly to the file. Instead, each point to a bucket that contains pointers to the file.
   
       B+ Tree index files
         
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息