Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2006-11-01 : 08:02:50
|
shakeel writes "I am facing an errors in the SQL backup.Its now become painful to me. error 1 : 10/30/2006 2:00:01 AM MSSQL$INTMATCHUAE Error (6) 17055 NT AUTHORITY\SYSTEM INTELLIMATCHTES "3041 :BACKUP failed to complete the command BACKUP DATABASE [intellimatch7] TO DISK = N'E:\IntellimatchBackup\' WITH NOINIT , NOUNLOAD , NAME = N'intellimatch7 backup', SKIP , STATS = 10, NOFORMAT DECLARE @i INTselect @i = position from msdb..backupset where database_name='intellimatch7'andError 2 : 10/30/2006 2:00:01 AM MSSQL$INTMATCHUAE Error (2) 17055 NT AUTHORITY\SYSTEM INTELLIMATCHTES "18204 :BackupDiskFile::CreateMedia: Backup device 'E:\IntellimatchBackup\' failed to create. Operating system error = 3(The system cannot find the path specified.)." |
|
nr
SQLTeam MVY
12543 Posts |
Posted - 2006-11-01 : 08:49:41
|
Looks like E:\IntellimatchBackup doesn't exist (to that process).Try master..xp_cmdshell 'dir E:\IntellimatchBackup\' using the same login.Any errors in backup should be considered potentially painful.==========================================Cursors are useful if you don't know sql.DTS can be used in a similar way.Beer is not cold and it isn't fizzy. |
 |
|
|
|
|