If we drop a table, does it also drop related objects like constraints, indexes, columns, defaults, views, and stored procedures?
Answer / anusha
No, dropping the table does not delete the corresponding table objects. Need to drop Indexes, views first before dropping the table.
eg:
drop view <database name>.<view name>
alter table <database name>.<table name> drop <index type>
drop table <database name>.<table name>
Is This Answer Correct ? | 0 Yes | 0 No |
Explain the new features of SQL server 2000?
What is the difference between index seek vs. Index scan?
what are database files and filegroups? : Sql server database administration
Explain about SQL server 2005?
What are the differences between local and global temporary tables?
What are Row versions of DataRow?
Explain different types of lock modes in sql server 2000?
how to get 25th row in any table in sqlserver can u tell me syntax
How to Insert multiple rows with a single insert statement?
What are the types of joins in sql?
What are distributed partitioned views?
What is index in an assignment?