What is The Difference Between Full and Simple Recovery models in SQL SERVER

preview_player
Показать описание
Join this channel to get access to perks:

Join the Telegram Group for the scripts and assistance:

You Can Also Download the scripts from below folder
We strongly believe there is always chance of betterment, so suggestions are most welcome.

Happy learning, and All the Best in your professional journey!

The journey of improvement is ongoing and never be an end.

Connect With me,

#azuresql #azure #sqldba #sqlserverdba #sql #sqlserver #sqlserverdeveloper #performance #performancetuning #performanceoptimization #mssql #mssqlserver #mssqlserverdba

Thank you!
MS SQL DBA Tech Support
Рекомендации по теме
Комментарии
Автор

create database [full]
go
create database [simple]

USE [master]
GO
ALTER DATABASE [Full] SET RECOVERY FULL WITH NO_WAIT
GO

backup database [full] to disk = 'c:\Full.bak'
Go
backup database [SIMPLE] to disk = 'c:\simple.bak'

select name, recovery_model_desc from sys.databases where name in ('Full', 'simple')

MSSQLDBATechSupport
Автор

Sir your interview session is too much good because ur going to deep dive n your concept of answer is very clear n satisfied thank you sir keep release this type of vidoe because it helps me n another again thnkx

Virustech
Автор

Hii sir can you please tell me how to do filter values above 30 for reorganize index after ran the index query

damodhardaamu
Автор

Please put some video about how to recover the page corrupted db

krithidhanesh