Query: drop_index
OS: redhat
Section: 7
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
DROPINDEX(7) SQL Commands DROP INDEX(7)NAMEDROP INDEX - remove an indexSYNOPSISDROP INDEX index_name [, ...] [ CASCADE | RESTRICT ] INPUTS index_name The name (optionally schema-qualified) of an index to remove. CASCADE Automatically drop objects that depend on the index. RESTRICT Refuse to drop the index if there are any dependent objects. This is the default. OUTPUTS DROP INDEX The message returned if the command completes successfully. ERROR: index "index_name" does not exist This message occurs if index_name is not an index in the database.DESCRIPTIONDROP INDEX drops an existing index from the database system. To execute this command you must be the owner of the index. NOTES DROP INDEX is a PostgreSQL language extension. Refer to CREATE INDEX [create_index(7)] for information on how to create indexes.USAGEThis command will remove the title_idx index: DROP INDEX title_idx;COMPATIBILITYSQL92 SQL92 defines commands by which to access a generic relational database. Indexes are an implementation-dependent feature and hence there are no index-specific commands or definitions in the SQL92 language. SQL - Language Statements 2002-11-22 DROP INDEX(7)
Related Man Pages |
---|
drop_aggregate(7) - redhat |
drop_function(7) - redhat |
drop_language(7) - redhat |
drop_index(7) - redhat |
drop_schema(7) - suse |
Similar Topics in the Unix Linux Community |
---|
which access right should set in my webpage index.html ? |
To remove the lines in my file |
need to create a insert query for a file |
trimming lines |
SQL: copying data down |