Google Search

Showing posts with label Unused. Show all posts
Showing posts with label Unused. Show all posts

Monday, June 8, 2015

Drop columns from table in fastest way


Columns in the oracle table can have more than 1000 rows of data. If the user asked to drop such columns from the table, dropping the same will take significant amount of time.

By using “Set Unused Column”, it is possible to reduce the significant amount of time while dropping the column from the table.

The syntax used to drop the column from the table is:

Alter table Table Name drop column Column Name;