Oracle模拟MySQL的show index from table命令
实验数据初始化:
-
create table t as select * from hr . employees
;
- create index inx_t1 on t ( employee_id , first_name desc , last_name ) ;
- create index inx_t2 on t ( job_id , hire_date ) ;
显示该表所有索引的信息。
以dba登录
-
set linesize 300
;
- set pagesize 100 ;
- col c1 format a20 ;
- col c2 format a20 ;
- col c3 format a20 ;
- col c4 format a20 ;
- col c5 format a20 ;
- col INDEX_NAME format a20 ;
- select INDEX_NAME ,
- max ( decode ( COLUMN_POSITION , 1 , COLUMN_NAME | | ',' | | COLUMN_LENGTH | | ',' | | DESCEND , null ) ) c1 ,
- max ( decode ( COLUMN_POSITION , 2 , COLUMN_NAME | | ',' | | COLUMN_LENGTH | | ',' | | DESCEND , null ) ) c2 ,
- max ( decode ( COLUMN_POSITION , 3 , COLUMN_NAME | | ',' | | COLUMN_LENGTH | | ',' | | DESCEND , null ) ) c3 ,
- max ( decode ( COLUMN_POSITION , 4 , COLUMN_NAME | | ',' | | COLUMN_LENGTH | | ',' | | DESCEND , null ) ) c4 ,
- max ( decode ( COLUMN_POSITION , 5 , COLUMN_NAME | | ',' | | COLUMN_LENGTH | | ',' | | DESCEND , null ) ) c5
- from (
- select INDEX_NAME , COLUMN_NAME , COLUMN_LENGTH , COLUMN_POSITION , DESCEND
- from dba_ind_columns
- where table_owner = 'LIHUILIN'
- AND table_name = 'T'
- order by INDEX_NAME , column_position
- ) group by INDEX_NAME ;
以普通用户登录
-
set linesize 300
;
- set pagesize 100 ;
- col c1 format a20 ;
- col c2 format a20 ;
- col c3 format a20 ;
- col c4 format a20 ;
- col c5 format a20 ;
- col INDEX_NAME format a20 ;
- select INDEX_NAME ,
- max ( decode ( COLUMN_POSITION , 1 , COLUMN_NAME | | ',' | | COLUMN_LENGTH | | ',' | | DESCEND , null ) ) c1 ,
- max ( decode ( COLUMN_POSITION , 2 , COLUMN_NAME | | ',' | | COLUMN_LENGTH | | ',' | | DESCEND , null ) ) c2 ,
- max ( decode ( COLUMN_POSITION , 3 , COLUMN_NAME | | ',' | | COLUMN_LENGTH | | ',' | | DESCEND , null ) ) c3 ,
- max ( decode ( COLUMN_POSITION , 4 , COLUMN_NAME | | ',' | | COLUMN_LENGTH | | ',' | | DESCEND , null ) ) c4 ,
- max ( decode ( COLUMN_POSITION , 5 , COLUMN_NAME | | ',' | | COLUMN_LENGTH | | ',' | | DESCEND , null ) ) c5
- from (
- select INDEX_NAME , COLUMN_NAME , COLUMN_LENGTH , COLUMN_POSITION , DESCEND
- from user_ind_columns
- where table_name = 'T'
- order by INDEX_NAME , column_position
- ) group by INDEX_NAME ;
-
CREATE OR REPLACE FUNCTION long_2_varchar
(
- p_index_name IN user_ind_expressions . index_name % TYPE ,
- p_table_name IN user_ind_expressions . table_name % TYPE ,
- p_COLUMN_POSITION IN user_ind_expressions . table_name % TYPE )
- RETURN VARCHAR2
- AS
- l_COLUMN_EXPRESSION LONG ;
- BEGIN
- SELECT COLUMN_EXPRESSION
- INTO l_COLUMN_EXPRESSION
- FROM user_ind_expressions
- WHERE index_name = p_index_name
- AND table_name = p_table_name
- AND COLUMN_POSITION = p_COLUMN_POSITION ;
- RETURN SUBSTR ( l_COLUMN_EXPRESSION , 1 , 4000 ) ;
- END ;
- /
-
set linesize 300
;
- set pagesize 100 ;
- col c1 format a20 ;
- col c2 format a20 ;
- col c3 format a20 ;
- col c4 format a20 ;
- col c5 format a20 ;
- col INDEX_NAME format a20 ;
- SELECT INDEX_NAME ,
- MAX ( DECODE ( COLUMN_POSITION , 1 , COLUMN_NAME | | ' ' | | DESCEND , NULL ) )
- c1 ,
- MAX ( DECODE ( COLUMN_POSITION , 2 , COLUMN_NAME | | ' ' | | DESCEND , NULL ) )
- c2 ,
- MAX ( DECODE ( COLUMN_POSITION , 3 , COLUMN_NAME | | ' ' | | DESCEND , NULL ) )
- c3 ,
- MAX ( DECODE ( COLUMN_POSITION , 4 , COLUMN_NAME | | ' ' | | DESCEND , NULL ) )
- c4 ,
- MAX ( DECODE ( COLUMN_POSITION , 5 , COLUMN_NAME | | ' ' | | DESCEND , NULL ) )
- c5
- FROM ( SELECT a . INDEX_NAME ,
- REPLACE (
- DECODE (
- descend ,
- 'DESC' , long_2_varchar ( b . index_name ,
- b . table_NAME ,
- b . COLUMN_POSITION ) ,
- a . column_name ) ,
- '"' ,
- '' )
- COLUMN_NAME ,
- a . COLUMN_LENGTH ,
- a . COLUMN_POSITION ,
- DESCEND
- FROM user_ind_columns a
- LEFT JOIN
- user_ind_expressions b
- ON a . index_name = b . index_name
- AND a . table_name = b . table_name
- WHERE a . table_name = 'T'
- ORDER BY INDEX_NAME , column_position )
- GROUP BY INDEX_NAME ;

This article addresses MySQL's "unable to open shared library" error. The issue stems from MySQL's inability to locate necessary shared libraries (.so/.dll files). Solutions involve verifying library installation via the system's package m

This article explores optimizing MySQL memory usage in Docker. It discusses monitoring techniques (Docker stats, Performance Schema, external tools) and configuration strategies. These include Docker memory limits, swapping, and cgroups, alongside

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

This article compares installing MySQL on Linux directly versus using Podman containers, with/without phpMyAdmin. It details installation steps for each method, emphasizing Podman's advantages in isolation, portability, and reproducibility, but also

This article provides a comprehensive overview of SQLite, a self-contained, serverless relational database. It details SQLite's advantages (simplicity, portability, ease of use) and disadvantages (concurrency limitations, scalability challenges). C

This guide demonstrates installing and managing multiple MySQL versions on macOS using Homebrew. It emphasizes using Homebrew to isolate installations, preventing conflicts. The article details installation, starting/stopping services, and best pra

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

Atom editor mac version download
The most popular open source editor

WebStorm Mac version
Useful JavaScript development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1
Easy-to-use and free code editor
