In Oracle when dropping a table
- all table indexes and domain indexes are dropped
- any triggers defined on the table are dropped
- if table is partitioned, any corresponding local index partitions are dropped
- if the table is a base table for a view or if it is referenced in a stored procedure, function, or package, then these dependent objects are invalidated but not dropped
Related Contents:
- How does database indexing work? [closed]
- SQL join: selecting the last records in a one-to-many relationship
- Oracle: If Table Exists
- List columns with indexes in PostgreSQL
- Can I add a UNIQUE constraint to a PostgreSQL table, after it’s already created?
- Postgres unique constraint vs index
- Creating an index on a table variable
- How important is the order of columns in indexes?
- Does Foreign Key improve query performance?
- How do I force Postgres to use a particular index?
- SQL Server indexes – ascending or descending, what difference does it make?
- Two single-column indexes vs one two-column index in MySQL?
- PostgreSQL LIKE query performance variations
- Does PostgreSQL support “accent insensitive” collations?
- Do I need to create indexes on foreign keys on Oracle?
- How to use index in select statement?
- sql primary key and index
- Is it better to create an index before filling a table with data, or after the data is in place?
- How to create a unique index on a NULL column?
- Index for finding an element in a JSON array
- Clustered vs Non-Clustered
- Copy a table (including indexes) in postgres
- How do I rename an Index in MySQL
- How to drop all NOT NULL constraints from a PostgreSQL table in one go
- mysql too many indexes?
- Rebuild all indexes in a Database
- How do composite indexes work?
- Indexing boolean fields
- Optimize GROUP BY query to retrieve latest row per user
- Query to check index on a table
- Get Table and Index storage size in sql server
- What’s the difference between a Table Scan and a Clustered Index Scan?
- PostgreSQL: Create an index to quickly distinguish NULL from non-NULL values
- What are Covering Indexes and Covered Queries in SQL Server?
- Order varchar string as numeric
- PostgreSQL Index on JSON
- What is a Covered Index?
- What is the difference between OFFLINE and ONLINE index rebuild in SQL Server?
- How do I index a database column
- Do indexes work with “IN” clause
- SQL primary key: integer vs varchar
- What is the purpose of PAD_INDEX in this SQL Server constraint?
- How can I force a query to not use a index on a given table?
- When should I use primary key or index?
- Indexes and multi column primary keys
- VARCHAR as foreign key/primary key in database good or bad?
- Is there any point using MySQL “LIMIT 1” when querying on indexed/unique field?
- Index for multiple columns in ActiveRecord
- Force index use in Oracle
- Why can’t I simply add an index that includes all columns?