Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Set the SQL Server configuration option Allow Updates to "1". This will allow you to directly edit the master database.
Using the query tool, issue a command similar to the following:
use master
go
sp_configure "allow updates", 1
reconfigure with override
go
sp_resetstatus YOURDATABASENAME
go
sp_configure "allow updates", 0
reconfigure
go
Set the SQL Server configuration option Allow Updates back to "0".
Stop and start the SQL Server.