1、创建索引的应用实例例 11-37创建正常索引 event_sal_idxSQLcreate index scott.emp_sal_idxOn scott.event(sal)Pctfree 25Storage(initial 500k)Tablespace system;例 11-38创建位图索引 event_evttype_idxSQL create bitmap index scott.emp_job_idxon scott.emp(job)pctfree 25storage(initial 300k)tablespace system;例 11-39查询以上所创建的俩个索引以及它们所基
2、于的表,所在的表空间,索引的类型和状态信息。SQLselect index_name,table_name,tablespace_name,index_type,uniqueness,statusFrom dba_indexesWhere owner=SCOTTAnd tablespace_name likeSY%;例 11-40查询俩个索引所基于的例,索引的主人和所基于的表的主人的信息。SQLselect index_name,table_name,column_name,index_ownerFrom dba_ind_columnsWhere table_owner=SCOTTAnd index_name like %_IDX;例 11-41查询这俩个索引的存储参数是不是按命令设置的。SQLselect index_name,pct_free,pct_increase,initial_extent,next_extentFrom dba_indexesWhere owner=SCOTTAnd tablespace_name like SY%;