I created a backup (.bak) file and transfer it to another computer when I'm trying to make backup I get an error:
BACKUP LOG cannot be performed because there is no current database backup.
How can I resolve this issue?
I created a backup (.bak) file and transfer it to another computer when I'm trying to make backup I get an error:
BACKUP LOG cannot be performed because there is no current database backup.
How can I resolve this issue?
This error is raised when you have never taken full backup of your database and try to attempt to take backup of the log only. You need to take a full backup. If you can't find the correct options in SSMS, you can use the following script
BACKUP DATABASE [MyDB] TO DISK = N'C:\MyDB.bak'
GO
BACKUP LOG [MyDB] TO DISK = N'C:\MyDB.bak'
GO
livacast does not existsselect * from sys.databases where name = 'livacast'