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.
use master
declare @spid varchar(10)
declare @Loginame varchar(255)
declare @Database varchar(200)
set @Database = '{YourDatabase}'
declare cur CURSOR for select spid, loginame
from sysprocesses
where dbid = (select dbid from sysdatabases where name = @Database)
open cur
fetch next from cur into @spid, @Loginame
while @@fetch_status = 0
begin
print convert(varchar(100), 'Killing ' + @spid + ': ' + @Loginame)
exec ('kill ' + @spid)
fetch next from cur into @spid, @Loginame
end
close cur
deallocate cur
go
ALTER DATABASE {YourDatabase}
set READ_ONLY
go