Category: DB Operations

  • SQL Server DROP Database

    Sometimes a database is not relevant or obsolete on our server instance. In that case, we can delete or remove them from the server. When we remove the database, it will also permanently delete all the tables, indexes, and constraints. Therefore, we should have to be very careful while dropping the database because we will…

  • MS SQL Server Select Database

    SQL Server select database specifies your database in which you want to create your table and further operations.

  • SQL Server CREATE DATABASE

    A database is an organized collection of data that is structured into tables, rows, columns, and indexes. It helps the user to find the relevant information frequently. It enables the user to access and manage the records through the database very easily. Usually, each database in SQL Server stores all files in the form of…

  • SQL Server Login Database

    SQL Server login database is a simple creadential which is used to access SQL Server. What is credential? Credentials are simply a username and a password that you provide your username and password when logging on to Windows or even your e-mail account. This username and password builds up the credentials. There are four types…