Home > Database > Mysql Tutorial > Oracle 表访问方式

Oracle 表访问方式

WBOY
Release: 2016-06-07 16:47:02
Original
1028 people have browsed it

Oracle 表访问方式,全表扫表,使用全表扫描的方式访问表。通过索引获得的ROWID访问表。

Linux公社

首页 → 数据库技术

背景:

阅读新闻

Oracle 表访问方式

[日期:2013-03-13] 来源:Linux社区  作者:chuner [字体:]

本篇记录一些Oracle表访问方式

索引访问方式请参考:

显示执行计划的存储过程请参考

(1)TABLE ACCESS FULL

全表扫表,使用全表扫描的方式访问表。示例:

SQL> exec sql_explain('select * from t1');
Plan hash value: 3617692013
--------------------------------------------------------------------------
| Id  | Operation        | Name | Rows  | Bytes | Cost (%CPU)| Time    |
--------------------------------------------------------------------------
|  0 | SELECT STATEMENT  |      |    10 |    80 |    3  (0)| 00:00:01 |
|  1 |  TABLE ACCESS FULL| T1  |    10 |    80 |    3  (0)| 00:00:01 |
--------------------------------------------------------------------------

PL/SQL procedure successfully completed.

(2)TABLE ACCESS BY INDEX ROWID

通过索引获得的ROWID访问表。

示例:

SQL> exec sql_explain('select * from t1 where id=1');
Plan hash value: 2347959165
-------------------------------------------------------------------------------------
| Id  | Operation                  | Name  | Rows  | Bytes | Cost (%CPU)| Time    |
-------------------------------------------------------------------------------------
|  0 | SELECT STATEMENT            |      |    1 |    8 |    1  (0)| 00:00:01 |
|  1 |  TABLE ACCESS BY INDEX ROWID| T1    |    1 |    8 |    1  (0)| 00:00:01 |
|*  2 |  INDEX UNIQUE SCAN        | T1_PK |    1 |      |    0  (0)| 00:00:01 |
-------------------------------------------------------------------------------------
Predicate Information (identified by operation id):
---------------------------------------------------
2 - access("ID"=1)

PL/SQL procedure successfully completed.

(3)LOAD AS SELECT

以(append)追加的方式向表中插入数据。

示例:

SQL> exec sql_explain('insert /*+ append */ into t1 select * from t1');
Plan hash value: 1069440229
---------------------------------------------------------------------------
| Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time    |
---------------------------------------------------------------------------
|  0 | INSERT STATEMENT  |      |    10 |    80 |    3  (0)| 00:00:01 |
|  1 |  LOAD AS SELECT    | T1  |      |      |            |          |
|  2 |  TABLE ACCESS FULL| T1  |    10 |    80 |    3  (0)| 00:00:01 |
---------------------------------------------------------------------------

PL/SQL procedure successfully completed.

linux

  • 0
  • Oracle 11g IMP-00058

    Oracle 索引访问方式

    相关资讯       Oracle表访问 

    图片资讯      

    本文评论   查看全部评论 (0)

    评论声明

    最新资讯

    本周热门

    Linux公社简介 - 广告服务 - 网站地图 - 帮助信息 - 联系我们
    本站(LinuxIDC)所刊载文章不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。


    Copyright © 2006-2014 Linux公社 All rights reserved 浙ICP备06018118号

    Related labels:
    source:php.cn
    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Popular Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template