Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Setting a version of my database
Message
From
30/06/2012 04:31:15
 
General information
Forum:
Microsoft SQL Server
Category:
Other
Environment versions
SQL Server:
SQL Server 2005
Miscellaneous
Thread ID:
01547279
Message ID:
01547318
Views:
46
Hi,

you may use extended properties.
you define it and set its value either in SSMS (right click on the database node, properties, extended properties), or by script with the sp_addextendedproperties sytem SP:
EXEC [BSA1].sys.sp_addextendedproperty @name=N'DDT_PropertiesDeployed', @value=N'True'
the sys.updateextendedproperties is for updating, and you read it with the fn_listextendedproperty system function:
SELECT objtype, objname, name, value
FROM fn_listextendedproperty(default, default, default, default, default, default, default);
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform