COVID19 Update

Year late 2019, a virus came into existence affecting the whole world. Covid19 also know as coronavirus is a pandemic disease. Since it was discovered in the year 2019, coronavirus is named to COVID 19. COVID 19 pandemic is a synonym as a coronavirus pandemic. It was first spotted in the city named Wuhan in […]

SQL SERVER AUTOMATED BACKUP SETUP

Hello Everyone in this post we are going to cover how you can set automated backup functionality in a Microsoft SQL Server with Quick and Easy Steps. Create Stored Procedure Create Backup Job and Execute Delete/Modify Jobs 1. Stored Procedure backupDB CREATE procedure [dbo].[backupDB] as begin declare @path varchar(1000); set @path=’G:\backups\backup_’+CONVERT(CHAR(10), GETDATE(), 121)+’.bak’; BACKUP DATABASE […]