Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Assigning default value to User Defined DataType
Message
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Environment versions
Application:
Desktop
Miscellaneous
Thread ID:
01418922
Message ID:
01418925
Views:
51
This message has been marked as the solution to the initial question of the thread.
>I am having trouble assigning a default value to a user defined data type in code.
>I can create the default object using
>CREATE DEFAULT DEFAULTZERO as 0
>and I can create the datatype using
>CREATE TYPE Logical FROM bit NOT NULL
>but I can't seem to get the right binding syntax for assigning DefaultZero as the default object for Logical.
>I can do it manually through SQL Studio
>TIA
>Trevor

Here the script SSMS generated:
USE [Test]
GO
CREATE TYPE [dbo].[Logical] FROM [bit] NOT NULL
GO
EXEC sys.sp_bindefault @defname=N'[dbo].[DefaultZero]', @objname=N'[dbo].[Logical]' , @futureonly='futureonly'
GO
Against Stupidity the Gods themselves Contend in Vain - Johann Christoph Friedrich von Schiller
The only thing normal about database guys is their tables.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform