RE: Warning 140 CopyTo File already exist
Could you please run the following on the SQL Server instance that you are taking the backups onCode:SELECT * FROM msdb..backupset WHERE database_name = 'model'Â AND backup_start_date >= '2012-12-03...
View ArticleRE: Warning 140 CopyTo File already exist
Hi petey, Here is the results (hope it helps, but it shows nothing): backup_set_id backup_set_uuid media_set_id first_family_number first_media_number last_family_number last_media_number...
View ArticleRE: Warning 140 CopyTo File already exist
Strange, it should at least have a record of the backup made of the 'model' database made on that date. Is your instance set up to delete backup history details older than 2 days?
View ArticleRE: Error on Production server - VDITimeout
Pete, Your note had said 'It then waits 30 seconds for SQL Server to respond' when it could wait for up to a maximum of 30 seconds as this is the default for DISKRETRYINTERVAL. I am not trying to be...
View ArticleRE: Warning 140 CopyTo File already exist
Hi Peter, My mistake. here's the info: ------------------------------ backup_set_id backup_set_uuid media_set_id first_family_number first_media_number last_family_number last_media_number...
View ArticleRE: Warning 140 CopyTo File already exist
The results show that only one backup was performed by SQL Backup each day, though there seemed to be another native backup performed by SQL Server after each SQL Backup backup. At this point, I don't...
View ArticleRE: Error on Production server - VDITimeout
My apologies for the confusion. Yes, that sentence should have been 'waits up to 30 seconds for SQL Server to respond'. Thanks for pointing that out.
View ArticleRE: Error when Reporting on Multiple Servers
It looks like this is a known problem with SQL 2012:http://connect.microsoft.com/SQLServer/feedback/details/737341/sql-server-2012-openrowset-on-msdb-dbo-sp-help-job-throws-error There's a few...
View ArticleRE: Restoring a DB backed up via SQL Back without SQL back
petey wrote:You will need to use SQL Backup if you want to restore directly from those files. The alternative is to first convert those files to native SQL Server backup files using the SQBConverterGUI...
View ArticleExclude Databases option
Hi I scheduled a backup job using the EXCLUDE OPTION to set aside thos databases i don't need to regularly backup.... Job is running well without any problems Our SQL Server manages hundreds of...
View ArticleRE: Exclude Databases option
Each time a backup is ran with the EXCLUDE option, SQL Backup retrieves a list of active databases from SQL Server. It then removes the excluded databases from that list, then proceeds to back up the...
View ArticleRE: Restoring a DB backed up via SQL Back without SQL back
I don't know if this 'restriction' is mentioned anywhere in the documentation. If you need a version of SQL Backup to only restore databases, you could contact the Red Gate sales department for...
View ArticleRE: Restore multiple databases in the same job
I am trying to script this and it is not working, keeps saying I have an extra ' SET @SQL = ' EXECUTE master..sqlbackup ''-SQL "RESTORE DATABASE ' + @sitename + ' FROM DISK = ''''D:\SQLVMDEV10\' +...
View ArticleRE: Restore multiple databases in the same job
Or actually it says [SQLSTATE 42000] (Error 137) Unclosed quotation mark after the character string ' '' '
View ArticleRE: Restore multiple databases in the same job
Here's an alternative:Code:DECLARE @exitcode int DECLARE @sqlerrorcode int DECLARE @sitename nvarchar(16) DECLARE @sql nvarchar(1024) SET @sitename = '<your value>' SET @sql = '-SQL "RESTORE...
View ArticleRESTORE LOG is terminating abnormally
Hello, I am receiving the following errors in the sql log. 12/14/2012 2:47:58 AM: Thread 0 error: Process terminated unexpectedly. Error code: -2139684860 (An abort request is preventing anything...
View ArticleSQL Backup fails immediately after adding a new database
I'm new to SQL Backup 7 and configuring my environment for the first time. I launch the application and use the menu to add the local Sql Server database. Immediately after I click the button, I get...
View ArticleRE: Annoying Crash
I'm getting the same problem when I use the scroll wheel on my mouse. The message in the "powered by {sa}" window reads, "Arithmetic operation resulted in an overflow" I click the send error report...
View ArticleLimit on number of databases per Instance
Hi, Is there a limit on the number of databases to backup per Instance? We have over 1400 databases in an Instance and the backups hang after a period of time. Using v7.2.1.4. Thanks. Tim Knoob Senior...
View ArticleRE: Restore multiple databases in the same job
The problem with that is @sitename is the database name, how does it look through all of the database names?
View Article