InterviewSolution
Saved Bookmarks
| 1. |
Which of the following holds temporary data?(a) Northwind(b) Master(c) Tempdb(d) MsdbI got this question in an interview for job.This key question is from System Databases topic in section System and Sample Databases of SQL Server |
|
Answer» CORRECT choice is (c) TEMPDB Explanation: Tempdb is a GLOBAL resource; the temporary tables and stored procedures for all users connected to the system are stored there. |
|