Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Setting a version of my database
Message
 
 
To
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:
01547342
Views:
34
>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);
Thank you, Michel. I will consider this approach too.
"The creative process is nothing but a series of crises." Isaac Bashevis Singer
"My experience is that as soon as people are old enough to know better, they don't know anything at all." Oscar Wilde
"If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money that it values more, it will lose that too." W.Somerset Maugham
Previous
Reply
Map
View

Click here to load this message in the networking platform