Thread: SQL Server 2005
View Single Post
  #50 (permalink)  
Old 12-23-2007, 11:38 PM
kingmaker kingmaker is offline
D-Web Genius
 
Join Date: Jun 2007
Posts: 882
kingmaker is on a distinguished road
Send a message via Yahoo to kingmaker
Default Drop Default

DROP DEFAULT

Remove user-defined default(s) from the current database.

Syntax
DROP DEFAULT { [schema_name.] default_name } [ ,...n ] [ ; ]

Key:
schema_name The schema to which the default belongs
default_name Name of an existing default

Defaults must comply with the rules for identifiers.

Example

DROP DEFAULT price_dflt;
__________________
The KINGMAKER
Makes Every Thing Possible

Stuffs (My Blog)
Reply With Quote