Database incremental backups

The following databases are backed up incrementally and uploaded to azure storage every 15 minutes:

DBAuto backup
BlocAdminYes
BingoCampaign
BlocAPIYes
BlocSessionStateDB
BlocTempDB
BookCampaignDBYes
BookDBYes
brreg
Competition
Ecommerce
Elearning
InfoServer
IntegrationsYes
LogServerYes
NetsDB
NIFRestService
Orientering
NIFResultService
PaymentServiceYes
POS
SalesAdmin
Selskapsdata
SuperOfficeDBYes
TaskDB
WorkoutsYes


We are using SqlBackupAndFtp to do DB backup auto,it will make full backup per 72 hours,diff backup per 24 hours, trans logs per 15 mins,and all backups will upload to Azure storage "blocdbbackup"


For restore 

1. Download the last fullbackup

2. Download last diff backup

3. Download all trans logs after last diff backup

4.

RESTORE DATABASE FROM full_database_backup WITH NORECOVERY;  
GO  
RESTORE DATABASE FROM differential_backup WITH NORECOVERY;  
GO  
RESTORE LOG FROM log_backup WITH NORECOVERY;  
GO
-- Repeat this until you restore last log backup
RESTORE DATABASE WITH RECOVERY;  
GO