Question
a.
SELECT name, recovery_model_desc FROM sys.databases WHERE name = 'jugal'
USE [master]
GO
UPDATE DATABASE [jugal] SET RECOVERY FULL WITH NO_WAIT
GO
b.
SELECT name, recovery_model_desc FROM sys.databases WHERE name = 'jugal'
USE [master]
GO
ALTER DATABASE [jugal] SET RECOVERY FULL WITH NO_WAIT
GO
c.
SELECT name, recovery_model_desc FROM sys.databases WHERE name = 'jugal'
USE [master]
GO
DROP DATABASE [jugal] SET RECOVERY FULL WITH NO_WAIT
GO
d.
None of the mentioned
Posted under SQL Server
USE [master]
GO
ALTER DATABASE [jugal] SET RECOVERY FULL WITH NO_WAIT
GO
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. Which of the following script can check the database recovery model by querying sys.databases for log shipping?
Similar Questions
Discover Related MCQs
Q. Point out the wrong statement.
View solution
Q. Which of the following stored procedure is used to add a primary database on primary server?
View solution
Q. Execute sp_add_jobschedule to add a schedule for the backup job on _________ server.
View solution
Q. Which of the following is correct syntax for sp_add_log_shipping_secondary_primary?
View solution
Q. Which of the following table stores history detail for log shipping jobs?
View solution
Q. _____________ maps primary databases to secondary databases in log shipping.
View solution
Q. ___________ feature will be removed in a future version of Microsoft SQL Server.
View solution
Q. Point out the correct statement.
View solution
Q. Which of the following benefit is provided by database mirroring?
View solution
Q. Database mirroring operates in how many modes?
View solution
Q. Point out the wrong statement.
View solution
Q. Which of the following modes writes the data on the principal and mirror databases synchronously?
View solution
Q. The high performance mode is only available in the __________ edition of SQL Server.
View solution
Q. Which of the following script will backup the database requires for database mirroring?
View solution
Q. Which of the following is an upgrade step to database mirroring?
View solution
Q. Which of the following pair of technology is supported in SQL Server?
View solution
Q. Which of the following scenario prefers failover cluster instance over stand alone instance in SQL Server?
View solution
Q. Point out the correct statement.
View solution
Q. Benefits that SQL Server failover cluster instances provide ____________
View solution
Q. The resources owned by WSFC node include ___________
View solution
Suggested Topics
Are you eager to expand your knowledge beyond SQL Server? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!