MS SQL Server Concepts and Programming Question:

What is a database in MS SQL Server?

MS SQL Server Interview Question
MS SQL Server Interview Question

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.



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?