Collections:
Create a Table Index in Oracle
How To Create a Table Index in Oracle?
✍: FYIcenter.com
If you have a table with a lots of rows, and you know that one of the columns will be used often a search criteria, you can add an index for that column to in improve the search performance. To add an index, you can use the CREATE INDEX statement as shown in the following script:
CREATE TABLE tip (id NUMBER(5) PRIMARY KEY, subject VARCHAR(80) NOT NULL, description VARCHAR(256) NOT NULL, create_date DATE DEFAULT (sysdate)); Table created. CREATE INDEX tip_subject ON tip(subject); Index created.
⇒ Show All Indexes in Your Schema in Oracle
⇐ Run SQL Statement through Web UI in Oracle
2019-05-01, 2567🔥, 0💬
Popular Posts:
What Is Transport Network Substrate (TNS) in Oracle? TNS, Transport Network Substrate, is a foundati...
How To Recover a Dropped Index in Oracle? If you have the recycle bin feature turned on, dropped ind...
How Fixed Length Strings Are Truncated and Padded in SQL Server Transact-SQL? When the length of the...
What Are Date and Time Functions in MySQL? MySQL offers a number of functions for date and time valu...
How to detect the collation coercibility associated to a given character string using the COERCIBILI...