Is there a way to create a global variable in SQL Server so it's saved even the server is shut down, so I can use it in functions?
Example from what I need:
DECLARE @@DefaultValue bit
This variable should never be deleted unless I explicityl do so.