MS SQL Server Concepts and Programming Question:
Download Questions PDF

What is a database in MS SQL Server?

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 Interview Questions And Answers PDF

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?