MS SQL Server Concepts and Programming Question:

What is a database in MS SQL Server?

Tweet Share WhatsApp

Answer:

A database is a logical container that contains a set of related database objects:

* Tables - Storages of structured data.
* Views - Queries to present data from tables.
* Indexes - Sorting indexes to speed up searches.
* Stored Procedures - Predefined SQL program units.
* Users - Identifications used for data access control.
* Other objects.


Download MS SQL Server PDF Read All 394 MS SQL Server Questions
Previous QuestionNext Question
How to delete database objects with "DROP" statements in MS SQL Server?What is the simplest way to create a new database in MS SQL Server?