You remove user-defined datatypes from a database by dropping them.
(For details, search for "user defined datatypes" in SQL Enterprise Manager Help.)
Or
For example:
sp_droptype ssn
drops the ssn (social security number) datatype created in the preceding example.
(For details, see the sp_droptype system stored procedure in the Microsoft SQL Server Transact-SQL Reference.)
Note You cannot drop a user-defined datatype if it is used within a table definition or if a rule or default is bound to it.