EDUCBA

EDUCBA

MENUMENU
  • Free Tutorials
  • Free Courses
  • Certification Courses
  • 360+ Courses All in One Bundle
  • Login

PostgreSQL DROP INDEX

Home » Data Science » Data Science Tutorials » PostgreSQL Tutorial » PostgreSQL DROP INDEX

PostgreSQL DROP INDEX

Definition of PostgreSQL DROP INDEX

PostgreSQL drop index statement is used to drop or delete the existing index from a table column; we have used the drop index command to drop the existing index in PostgreSQL. To use the drop index command, we need to have superuser privileges or need to have the owner of that specific index. If the object depends on the index, then the index is not dropped error will be given that the index will not drop; basically, cascade operations with concurrent is not supported in the PostgreSQL drop index command. Drop index command is very useful and important in PostgreSQL to drop the unused index.

Syntax and Parameter

Below is the syntax of the drop index statement in PostgreSQL.

Start Your Free Data Science Course

Hadoop, Data Science, Statistics & others

  • Drop index index_name; — Name of the index which was we have dropped using drop index command.
  • Drop index index_name1, index_name2, index_name3, …., index_nameN.
  • Drop index [Concurrently (Drop index without affecting or locking other operations like select, insert, update and delete)] [if exists (Drop the index if exists in the database also do not throw the error if the index in not exist)] name_of_index (Name of the index which was we have dropping) [Cascade | Restrict ]

Parameter:

Below is the parameter description syntax of the drop index statement.

  • Drop index: This command is used to drop the existing index and drop the unused index from the database table column in PostgreSQL.
  • Index name: It is defined as the index’s name, which was we have dropping from the database table.
  • Concurrently: Drop the index without affecting the other operations like select, insert, update, and delete. Drop index in PostgreSQL will acquire the exclusive lock on the table; it will block the access of operations until the drop index was not completed successfully. Cascade operations are not supported after using concurrent options with the drop index command.
  • If it exists: This option is used when if the index is not present on the database table; after using these options, it will not show the error of the index cannot exist. If the index does not present on the database table, it will issue notice.
  • Cascade: This option is used when we have to automatically drop the index object, which depends on the index. But cascade options are not supported with concurrent options in PostgreSQL.
  • Restrict: It is used when we have not to use the drop index option forcefully on an index. It will refuse the drop index command when any other object depends on that index. This is a default parameter of the drop index command.

How to DROP INDEX Statement Work in PostgreSQL?

  • Below is the working of the drop index statement in PostgreSQL.
  • The index will increase the performance of select operations from the table. But it will degrade the performance of insert and update operations.
  • If our database table contains the insert and update operations more than select, then we need to delete the same index from the table at that time we have using the drop index statement to drop unused index from the database.
  • We need to have a superuser or owner of index privileges to drop the index from the database table.
  • The below example shows that we need to have a superuser or owner of index privileges to drop the index.

psql -U index_test -d testing
drop index index_test;
psql -U postgres -d testing
drop index index_test;

PostgreSQL DROP INDEX-1.1

  • In the above first example, we have used the user index_test to drop the index name as index_test from the student table. But it will throw the error of “ERROR: must be the owner of relation index_test”.
  • In the second example, we have used the superuser of the database, i.e. Postgres; using superuser, it is possible to drop the index in PostgreSQL.
  • Using the drop index command in PostgreSQL, we can drop multiple indexes in a single statement.
  • If the object depends on the index, the same index will not dropped using the drop index operations.
  • The below example shows that if any object depends on the index, it will not be dropped.

drop index student_pkey;

PostgreSQL DROP INDEX-1.2

  • In the above example, we have to try to drop the index of student_pkey, but it will not be dropped due to other objects is dependent on this index.
  • It will show the error of “ERROR: cannot drop index student_pkey because constraint student_pkey on table student requires it”.

Examples of PostgreSQL DROP INDEX

Below is an example of the drop index command in PostgreSQL.

1. Drop single Index Using Drop Index Command

In the below example, we have dropped a single index using the drop index command. In the below example, we have drop the index name as index_test from the student table.

\d+ student
drop index "index_test";
\d+ student

PostgreSQL DROP INDEX-1.3

2. Drop Multiple Index Using Drop Index Command

In the below example, we have dropped multiple indexes using the drop index command. In the below example, we have drop the index name as p_index and n_index from the student table.

\d+ student
drop index p_index, n_index;
\d+ student

Output-1.4

3. Drop Index Using if Exists Parameter

In the below example, we have used if exists a parameter with drop index command. If exists parameter will skip the index.

\d+ student
drop index IF EXISTS p_index;

Output-1.5

4. Drop Index Using Concurrently Parameter

In the below example, we have used parameter concurrently with the drop index command. We have drop the c_index from the student table.

\d+ student
drop index concurrently "c_index";
\d+ student

Output-1.6

Recommended Articles

This is a guide to PostgreSQL DROP INDEX. Here we also discuss the definition and how drop index statements work in postgresql and its different examples and code implementation. You may also have a look at the following articles to learn more –

Popular Course in this category
PostgreSQL Course (2 Courses, 1 Project)2 Online Courses | 1 Hands-on Project | 7+ Hours | Verifiable Certificate of Completion | Lifetime Access
4.5 (2,948 ratings)
Course Price

View Course

Related Courses
  1. PostgreSQL Materialized Views
  2. PostgreSQL UNIQUE Index
  3. PostgreSQL Vacuum
  4. PostgreSQL REINDEX

PostgreSQL Course (2 Courses, 1 Project)

2 Online Courses

1 Hands-on Project

7+ Hours

Verifiable Certificate of Completion

Lifetime Access

Learn More

0 Shares
Share
Tweet
Share
Primary Sidebar
PostgreSQL Tutorial
  • Advanced
    • PostgreSQL Schema
    • Postgres List Schemas
    • PostgreSQL VARCHAR
    • Array in PostgreSQL
    • PostgreSQL DDL
    • PostgreSQL List Users
    • Postgres Default User
    • Postgres add user
    • PostgreSQL log_statement
    • PostgreSQL String Functions
    • PostgreSQL Compare Strings
    • PostgreSQL Text Search
    • PostgreSQL TEXT
    • PostgreSQL String Array
    • PostgreSQL Constraints
    • PostgreSQL UNIQUE Constraint
    • PostgreSQL INTERSECT
    • PostgreSQL Like
    • Cursors in PostgreSQL
    • PostgreSQL UNION ALL
    • Indexes in PostgreSQL
    • PostgreSQL Index Types
    • PostgreSQL REINDEX
    • PostgreSQL UNIQUE Index
    • PostgreSQL Clustered Index
    • PostgreSQL DROP INDEX
    • PostgreSQL DISTINCT
    • PostgreSQL FETCH
    • PostgreSQL RAISE EXCEPTION
    • PostgreSQL Auto Increment
    • Sequence in PostgreSQL
    • Wildcards in PostgreSQL
    • PostgreSQL Subquery
    • PostgreSQL Alias
    • PostgreSQL LIMIT
    • PostgreSQL Limit Offset
    • PostgreSQL LAG()
    • PostgreSQL Table
    • Postgres Show Tables
    • PostgreSQL Describe Table
    • PostgreSQL Lock Table
    • PostgreSQL ALTER TABLE
    • Postgres Rename Table
    • Postgres DROP Table
    • PostgreSQL Functions
    • PostgreSQL Math Functions
    • PostgreSQL Window Functions
    • Aggregate Functions in PostgreSQL
    • PostgreSQL Primary Key
    • Foreign Key in PostgreSQL
    • PostgreSQL Procedures
    • PostgreSQL Stored Procedures
    • PostgreSQL Views
    • PostgreSQL Materialized Views
    • Postgres Create View
    • PostgreSQL Triggers
    • PostgreSQL DROP TRIGGER
    • PostgreSQL Date Functions
    • PostgreSQL TO_DATE()
    • PostgreSQL Timestamp
    • PostgreSQL CURRENT_TIMESTAMP()
    • PostgreSQL Notify
    • PostgreSQL RANK()
    • PostgreSQL Select
    • PostgreSQL Average
    • PostgreSQL DATE_PART()
    • PostgreSQL EXECUTE
    • PostgreSQL COALESCE
    • PostgreSQL EXTRACT()
    • PostgreSQL Sort
    • PostgreSQL TO_CHAR
    • PostgreSQL Interval
    • PostgreSQL Number Types
    • PostgreSQL ROW_NUMBER
    • Alter Column in PostgreSQL
    • PostgreSQL Identity Column
    • PostgreSQL SPLIT_PART()
    • PostgreSQL CONCAT()
    • PostgreSQL replace
    • PostgreSQL TRIM()
    • PostgreSQL MAX
    • PostgreSQL DELETE
    • PostgreSQL Float
    • PostgreSQL OID
    • PostgreSQL log
    • PostgreSQL REGEXP_MATCHES()
    • PostgreSQL MD5 
    • PostgreSQL NOW()
    • PostgreSQL RANDOM
    • PostgreSQL round
    • PostgreSQL Trunc()
    • PostgreSQL TIME
    • PostgreSQL IS NULL
    • PostgreSQL CURRENT_TIME
    • PostgreSQL MOD()
    • Postgresql Count
    • PostgreSQL Datetime
    • PostgreSQL MIN()
    • PostgreSQL age()
    • PostgreSQL enum
    • PostgreSQL OR
    • PostgreSQL Wal
    • PostgreSQL NOT IN
    • PostgreSQL SET
    • PostgreSQL Current Date
    • PostgreSQL Compare Date
    • PostgreSQL SERIAL
    • PostgreSQL Database
    • PostgreSQL Clone Database
    • PostgreSQL Copy Database
    • PostgreSQL Restore Database
    • PostgreSQL DROP DATABASE
    • PostgreSQL ALTER DATABASE
    • Postgres DROP Database
    • Postgres Dump Database
    • PostgreSQL OFFSET
    • PostgreSQL GRANT
    • PostgreSQL COMMIT
    • PostgreSQL ROLLUP
    • PostgreSQL JSON
    • EXPLAIN ANALYZE in PostgreSQL
    • PostgreSQL Temporary Table
    • PostgreSQL cluster
    • PostgreSQL Replication
    • PostgreSQL Logical Replication
    • PostgreSQL flush privileges
    • PostgreSQL Tablespaces
    • CAST in PostgreSQL
    • PostgreSQL CTE
    • hstore in PostgreSQL
    • PostgreSQL DECODE()
    • PostgreSQL Vacuum
    • PostgreSQL EXCLUDE
    • Postgres Change Password
    • Postgres Delete Cascade
    • PostgreSQL EXCEPT
    • PostgreSQL Roles
    • PostgreSQL Link
    • PostgreSQL Partition
    • PostgreSQL column does not exist
    • PostgreSQL Log Queries
    • PostgreSQL escape single quote
    • PostgreSQL Query Optimization
    • PostgreSQL Character Varying
    • PostgreSQL Transaction
    • PostgreSQL Extensions
    • PostgreSQL Import CSV
    • PostgreSQL Client
    • PostgreSQL caching
    • PostgreSQL JDBC Driver
    • PostgreSQL Interview Questions
  • Basic
    • What is PostgreSQL
    • PostgreSQL Features
    • How to Install PostgreSQL
    • PostgreSQL Versions
    • PostgreSQL Architecture
    • PostgreSQL GUI
    • PostgreSQL Variables
    • PostgreSQL Data Types
    • PostgreSQL NOT NULL
    • PostgreSQL Integer
    • PostgreSQL Boolean
    • PostgreSQL NULLIF
    • PostgreSQL Administration
    • PostgreSQL Commands
    • PostgreSQL Operators
    • PostgreSQL IN Operator
  • Control Statement
    • PostgreSQL IF Statement
    • PostgreSQL if else
    • PostgreSQL CASE Statement
    • PostgreSQL LOOP
    • PostgreSQL For Loop
    • PostgreSQL While Loop
  • Joins
    • Joins in PostgreSQL
    • PostgreSQL Inner Join
    • PostgreSQL Outer Join
    • LEFT OUTER JOIN in PostgreSQL
    • PostgreSQL FULL OUTER JOIN
    • PostgreSQL LEFT JOIN
    • PostgreSQL Full Join
    • PostgreSQL Cross Join
    • PostgreSQL NATURAL JOIN
    • PostgreSQL UPDATE JOIN
  • Queries
    • PostgreSQL Queries
    • PostgreSQL WHERE Clause
    • PostgreSQL WITH Clause
    • PostgreSQL ORDER BY
    • PostgreSQL ORDER BY Random
    • PostgreSQL GROUP BY
    • PostgreSQL group_concat
    • PostgreSQL HAVING
    • PostgreSQL Recursive Query
Footer
About Us
  • Blog
  • Who is EDUCBA?
  • Sign Up
  • Corporate Training
  • Certificate from Top Institutions
  • Contact Us
  • Verifiable Certificate
  • Reviews
  • Terms and Conditions
  • Privacy Policy
  •  
Apps
  • iPhone & iPad
  • Android
Resources
  • Free Courses
  • Database Management
  • Machine Learning
  • All Tutorials
Certification Courses
  • All Courses
  • Data Science Course - All in One Bundle
  • Machine Learning Course
  • Hadoop Certification Training
  • Cloud Computing Training Course
  • R Programming Course
  • AWS Training Course
  • SAS Training Course

© 2020 - EDUCBA. ALL RIGHTS RESERVED. THE CERTIFICATION NAMES ARE THE TRADEMARKS OF THEIR RESPECTIVE OWNERS.

EDUCBA
Free Data Science Course

Hadoop, Data Science, Statistics & others

*Please provide your correct email id. Login details for this Free course will be emailed to you
Book Your One Instructor : One Learner Free Class

Let’s Get Started

This website or its third-party tools use cookies, which are necessary to its functioning and required to achieve the purposes illustrated in the cookie policy. By closing this banner, scrolling this page, clicking a link or continuing to browse otherwise, you agree to our Privacy Policy

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA Login

Forgot Password?

EDUCBA
Free Data Science Course

Hadoop, Data Science, Statistics & others

*Please provide your correct email id. Login details for this Free course will be emailed to you

Special Offer - PostgreSQL Course (2 Courses, 1 Project) Learn More