zoukankan      html  css  js  c++  java
  • oracle关于索引知识

    1、创建一个单一的索引:

    create index 索引名称 on 表名(列名);

    2、创建复合索引

    create index 索引名称 on 表名(列名1,列名2);

    3、删除索引

    drop index 索引名称;

    4、查询表的索引

    select * from all_indexes where table_name = '表名称';

    5、查询表的索引列

    select* from all_ind_columns where table_name = '表名称';

    6、索引表空间

      select 'alter index' ||index_name|| 'rebuild tablespace tbs_name;' index_name from dba_indexes where wner='%***%' and table_name like '%***%'

    7、表空间迁移

      select 'alter table' ||table_name|| 'move tablespace tbs_name;' table_name from dba_tables where wner='%***%' and table_name like '%***%'

    8、带lob字段

      select 'alter table' ||table_name|| 'move lob('||index_name||') store as (tablespace tbs_name);' from dba_indexes where wner='%***%' and index_name like '%***%'

  • 相关阅读:
    java exception
    【洛谷P1627】 【CQOI2009】中位数
    切蛋糕
    【NOIP2015Day2T2】【洛谷P2679】子串
    【NOIP2017Day1T3】【洛谷P3953】逛公园
    【bzoj1082】【SCOI2005】栅栏
    搬砖
    花花的森林
    跳跳棋
    异或
  • 原文地址:https://www.cnblogs.com/linyu51/p/13374648.html
Copyright © 2011-2022 走看看