`DROP DATABASE [ FORCE ] ` Discussion: Only succeeds when no *populated* tables exist in it unless `FORCE` is specified. ### _______________________________ ``` DROP INDEX ON [ ] { | } ``` Discussion: Cannot drop indices whose names begin with "pk-", as these are table primary keys. ### _______________________________ `DROP NAMESPACE [ FORCE ] [ . ]` Discussion: Only succeeds when no tables or views are in the namespace, unless `FORCE` is specified, possibly resulting in cascading object drops described in `DROP TABLE`. Cannot drop namespaces *dbo* and *sys*. ### _______________________________ `DROP TABLE [ FORCE ] [ ] { }` Discussion: Cannot drop if used in a view or foreign key, unless `FORCE` is specified, resulting in cascading object drops. ### _______________________________ ``` DROP TRIGGER [ ] { } ON { | } ``` ### _______________________________ `DROP TYPE ` TBD Discussion: Cannot drop if type-name is in use. ### _______________________________ `DROP VIEW [ FORCE ] [ ] ` Discussion: Cannot drop if used in another view, unless `FORCE` is specified, resulting in cascading object drops.