Viewing 15 posts - 691 through 705 (of 1,161 total)
The error message is because some other user is already connected to the database. Try using ROLLBACK options, check for any open transaction or locks on that database. Even I...
September 10, 2010 at 11:14 am
Have you downloaded the correct version of SP3 installer?
Please confirm the SQL Server version by executing select @@version
September 8, 2010 at 11:24 am
Looks like the GUI has a restriction of 256 characters for the email field. However you can also add the operator using T-SQL and it works.
USE [msdb]
GO
EXEC msdb.dbo.sp_add_operator @name=N'OperatorName',
@enabled=1,...
September 8, 2010 at 11:12 am
As replied earlier by Ashish, your code does not overwrite the existing backups. Modify it to something like this
BACKUP DATABASE 'Datbasename'
TO DISK = 'EnterAStaticName'
WITH NOFORMAT,INIT, NAME = N''Datbasename'-Full Database Backup',
SKIP,...
September 7, 2010 at 11:05 am
There is no 64 bit Oracle ODBC drivers. Please refer this
September 7, 2010 at 10:58 am
This helps you getting started.
September 7, 2010 at 10:51 am
Failing over the resources would confirm if the change has gone well with SQL Server or not
September 4, 2010 at 6:32 pm
What is the job designed do? What is the error message with which the job fails?
September 4, 2010 at 10:53 am
Check if the database files are compressed. If yes remove the Compression option in the Operating System. Refer this
September 4, 2010 at 10:32 am
Here is the one for SQL Server 2005.
SELECT d.name, MAX(b.backup_finish_date) AS last_backup_finish_date
FROM master.sys.databases d
LEFT OUTER JOIN msdb.dbo.backupset b ON d.name = b.database_name AND b.type = 'D'
WHERE d.database_id NOT IN (2,...
September 1, 2010 at 10:48 pm
You should have got that option. Not sure though how it did not
August 31, 2010 at 10:26 pm
You would have got a screen which looks like this. May be you have skipped that.
August 31, 2010 at 9:51 am
Viewing 15 posts - 691 through 705 (of 1,161 total)