Viewing 15 posts - 91 through 105 (of 171 total)
If you're interested, I have a backup stored procedure that deletes old backup files after a successfull backup.
http://ola.hallengren.com/sql-server-backup.html
Ola Hallengren
June 9, 2008 at 1:02 pm
One thing that you could do is to only rebuild or reorganize indexes that are fragmented. This means that you reduce the amount of log records that is generated and...
June 7, 2008 at 8:05 am
You could use the Maintenance Plan option [Send report to an e-mail recipient].
http://technet.microsoft.com/en-us/library/ms180370(SQL.100).aspx
You could also create an alert on the error number for a failed backups. Then you will know...
June 6, 2008 at 4:08 pm
Thanks. This bug fix has now been added to the new version. I didn't think about database snapshots, when I developed it.
Ola Hallengren
June 6, 2008 at 1:10 pm
Thanks, Cory. You need to change one line of code in [DatabaseBackup] to have it dynamically skip databases that are in Simple recovery model, when doing log backups.
http://ola.hallengren.com/sql-server-backup.html
IF DATABASEPROPERTYEX(@CurrentDatabase,'status') =...
June 6, 2008 at 12:47 pm
I know of SQL Farm Combine and Red-Gate SQL Multi Script that can execute a script against multiple servers. SQL Server 2008 Management Studio will also have this feature.
If you...
June 5, 2008 at 2:53 pm
I haven't used SQL Log Rescue. I checked the documentation and it seems like it only supports SQL Server 2000. So maybe this was not a great advice. Have a...
June 5, 2008 at 4:58 am
I think that the security setup is easier if you create a normal T-SQL job that performs the backup.
BACKUP DATABASE MyDatabase TO DISK = 'C:\MyDatabase.bak'
Then you only need to grant...
June 5, 2008 at 4:25 am
You need a third party log reader tool to read the transaction log. I know of Lumigent Log Explorer, Red-Gate SQL Log Rescue and LiteSpeed Log Reader.
Ola Hallengren
June 5, 2008 at 2:57 am
My experience is that this is a very fast and easy method.
(Another thing. How do you have your backups start automatically on the mirror server after a failover? I have...
June 4, 2008 at 2:13 pm
My understanding is that you have to do a manual failover.
ALTER DATABASE MyDatabase SET PARTNER FAILOVER
Ola Hallengren
June 4, 2008 at 1:28 pm
Microsoft has as whitepaper on this.
"Generally, you should not be concerned with fragmentation levels of indexes with less than 1,000 pages. In the tests, indexes containing more than 10,000 pages...
June 4, 2008 at 11:59 am
I have experienced a number of issues with the Maintenance Plans but I think that most of them have been fixed in SP2. You have to install the hotfix in...
May 29, 2008 at 3:48 pm
>SQL 2005 has report feature and you could be able to find out who has deleted.
This report is using the default trace as I understand it. It's good that Microsoft...
May 29, 2008 at 2:04 pm
Thanks, mtassin.
>The cluster handles single server loss, and the SAN covers disk issues.
You could still get a corrupt database if you're unlucky. Then it could be good to have more...
May 29, 2008 at 1:59 pm
Viewing 15 posts - 91 through 105 (of 171 total)