InterviewSolution
Saved Bookmarks
| 1. |
Syntax for dropping a database snapshot named “Sushant” would be ____________(a) DROP DATABASE Sushant(b) DROP DATABASE SNAP Sushant(c) DROP SNAPSHOT Sushant(d) None of the mentionedThe question was asked by my school teacher while I was bunking the class.I need to ask this question from Data Definition Language topic in section Creating the Physical Database Schema of SQL Server |
|
Answer» CORRECT option is (a) DROP DATABASE Sushant For explanation: DROP command removes database snapshot WITHOUT AFFECTING the source database. |
|