Viewing 15 posts - 121 through 135 (of 171 total)
If you for some reason can not implement the Microsoft hotfix, I have a Maintenance Plan - like stored procedure that you could use to check the integrity of your...
May 20, 2008 at 10:20 am
May 20, 2008 at 10:03 am
I have a stored procedure that could help you with this. It is using the DMV
sys.dm_db_index_physical_stats to dynamically rebuild / reorganize indexes based on the fragmentation levels. It could...
May 19, 2008 at 2:15 pm
My theory is that if you pregrow your data and log files and never do any shrinking, then maybe you don't need DiskKeeper.
Ola Hallengren
May 16, 2008 at 6:22 pm
I'm thinking about if file level fragmentation really is a problem on sql server data and log files if you grow your files in large chunks and if you do...
May 16, 2008 at 6:05 pm
>Which I think is the safest way to go... you should have a validated backup before you remove the old one.
If you have more than one large database it is...
May 16, 2008 at 5:38 pm
I have a backup stored procedure as well, that you are welcome to use.
EXECUTE dbo.DatabaseBackup @databases = 'USER_DATABASES', @Directory = 'C:\Backup', @BackupType = 'FULL', @verify =...
May 16, 2008 at 5:31 am
I would not do a configuration like this. I think that it will make things less robust.
1. Consider a short network outage, planned or unplanned. Then all your maintenance job...
May 14, 2008 at 3:49 pm
Paul Randal has a good blog post about this.
About the index optimization stored procedure it outputs things like this to the output file.
DateTime: 2008-03-05 21:58:59
Command: ALTER INDEX [IX_Address_StateProvinceID] ON
[AdventureWorks].[Person].[Address] REORGANIZE
Comment:...
May 14, 2008 at 2:38 pm
I have a set of Maintenance Plan - like stored procedures that you are welcome to use. They have features for backup, integrity check, index rebuild, index reorganize and update...
May 14, 2008 at 2:25 pm
Ken Hendersen has a blog post about this.
"If you think about it, it makes perfect sense—the clustered keys, which are the record locators in the NC indexes, aren’t changed merely...
May 14, 2008 at 5:34 am
>I am not sure but i think rebuilding clustered index will not rebuild non-clustered automatically..
You're right on this. Please see Books Online.
"Rebuilding a clustered index does not rebuild associated...
May 14, 2008 at 4:09 am
I think that we need to do this test again. I would like to analyze the _lsn columns in the backupset table in msdb and also do some restore tests....
May 13, 2008 at 1:01 pm
I have a stored procedure that could help you with this. It is using the DMV
sys.dm_db_index_physical_stats to dynamically rebuild / reorganize indexes based on the fragmentation levels.
http://ola.hallengren.com/sql-server-index-and-statistics-maintenance.html
Regarding 3) about...
May 13, 2008 at 11:40 am
I tried to figure out how this works some time ago. Here are some tests that I did. It seems like log backups can complete while the database backup is...
May 13, 2008 at 11:27 am
Viewing 15 posts - 121 through 135 (of 171 total)