Friday, February 13, 2015

SQL Server How to Drop Connections

ALTER DATABASE dbname
 SET SINGLE_USER WITH ROLLBACK IMMEDIATE
GO

ALTER DATABASE dbname
 SET MULTI_USER
GO

No comments:

Best Python libraries for web scraping

Best Python libraries for web scraping Introduction to Web Scraping with Python What is Web Scraping? Web scraping is the automated...