InterviewSolution
Saved Bookmarks
| 1. |
Which of the following statement is used to create database snapshot?(a) CREATE DATABASE(b) CREATE SNAPSHOT(c) CREATE SNAPDB(d) None of the mentionedThe question was posed to me during an online exam.My question is from Data Definition Language in section Creating the Physical Database Schema of SQL Server |
|
Answer» RIGHT CHOICE is (a) CREATE DATABASE Easiest explanation: CREATE DATABASE statement creates a new database and the files used to store the database, creates a database snapshot, or ATTACHES a database from the detached files of a previously created database. |
|