Quantcast
Channel: SQLServerCentral » SQL Server 2014 » Administration - SQL Server 2014 » Latest topics
Viewing all articles
Browse latest Browse all 6525

Backup Database is terminated Abnormally Failed on SQL Server 2014 RTM

$
0
0
My Database backup is not working in SQL 2014 RTM version. It works fine on SQL Server 2008 R2. All databases are in Simple recovery model. Not sure what might be the issue. I'm admin for SQL instance and on the box. [code="sql"]DECLARE @BackupFile1 varchar(max)SET @BackupFile1 = 'E:\MSSQL\Bak\DailyBackups\MSDB\MSDB1_' + REPLACE(REPLACE(REPLACE(CONVERT(varchar,GETDATE(), 112),'-',''),':',''),' ','') + '.BAK'BACKUP DATABASE MSDB TO DISK = @BackupFile1WITH NOFORMAT, NOINIT, NAME = N'MSDB-Full Database Backup',SKIP, NOREWIND, NOUNLOAD, COMPRESSION,MAXTRANSFERSIZE = 4194304, STATS = 10[/code]Error:Msg 3013, Level 16, State 1, Line 25BACKUP DATABASE is terminating abnormally.

Viewing all articles
Browse latest Browse all 6525

Trending Articles