Drop database in SQL Server

How to drop the database from SQL Server?

In order to Drop / Delete the database for SQL Server, right click the database and click Delete. In this case also we need to ensure that the database is not being used currently. To ensure that database is not being used, re-start the SQL Server process from Services as described in above points and try to delete it.


No comments:

Post a Comment

How to register multiple implementations of the same interface in Asp.Net Core?

 Problem: I have services that are derived from the same interface. public interface IService { } public class ServiceA : IService { ...