Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Setting a version of my database
Message
 
 
À
30/06/2012 04:31:15
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Autre
Versions des environnements
SQL Server:
SQL Server 2005
Divers
Thread ID:
01547279
Message ID:
01547342
Vues:
35
>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
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform