Viewing 15 posts - 526 through 540 (of 1,161 total)
You may find Brian Kelley's response in this discussion useful.
October 21, 2010 at 1:56 pm
Check if the "Results to File" option in SSMS meets your requirement.
October 21, 2010 at 1:43 pm
Most likely this is a permissions issue of the SQL Agent startup account. Check if there are any entries in the Agent Log
October 21, 2010 at 1:38 pm
@ravz.sqldba, "Automatically remove agent history" option not remaining selected is a BUG which even I can reproduce. However when you select it and click ok, all data older than the...
October 21, 2010 at 1:23 pm
RESTORE VERIFYONLY FROM DISK='......'
More information here
October 20, 2010 at 11:51 pm
You can query the BACKUPSET table in MSDB to get information on successful database backups.
October 20, 2010 at 11:24 pm
The service account details can be obtained by reading the registry. Here is an example.
DECLARE @ServiceaccountName varchar(250)
EXECUTE master.dbo.xp_instance_regread
N'HKEY_LOCAL_MACHINE',
N'SYSTEM\CurrentControlSet\Services\MSSQLSERVER',
N'ObjectName',
@ServiceAccountName OUTPUT,
N'no_output'
SELECT @ServiceaccountName
October 20, 2010 at 10:52 pm
I second Steve. Stopping SQL Services before installing SP/hotfix is a common misconception.
October 20, 2010 at 2:25 pm
Like John said, make use of the Cleanup Task in Maintenance Plan. It is very easy to accomplish
October 20, 2010 at 6:00 am
Hi Sudhakara,
Check the job properties if "Quit reporting Success" is selected when the job fails. Add an output file to
the job step. This will give you more details regarding...
October 20, 2010 at 5:52 am
The easiest way query multiple servers using GUI is the SSMS in SQL Server 2008. But it has limitation that it cannot be scripted or run using a job. You...
October 19, 2010 at 11:23 pm
Senthil Varadharajan (10/19/2010)
Hi Adiga,Can you explain me how to restore from the transaction log.
Thnks,
Senthil Varadharajan
Hi Senthil,
This KB article explains how to restore from transaction log backups.
October 19, 2010 at 11:19 pm
Are Differential db backups necessary to restore from trans logs backups (point of failure)? Or can I just use the Full db backup to restore and then restore all...
October 19, 2010 at 9:47 am
Viewing 15 posts - 526 through 540 (of 1,161 total)