Viewing 15 posts - 46 through 60 (of 171 total)
I haven't seen a whitepaper for SQL Server 2005. My guess is that the SQL Server 2000 whitepaper is valid on SQL Server 2005 too. Kalen Delaney referred to it...
August 21, 2008 at 2:01 pm
New_to_being_DBA (8/21/2008)
August 21, 2008 at 1:42 pm
I think that the question is how to read the message "Databases with simple recovery model will be exluded." in the database selection form.
It looks like it only means that...
August 20, 2008 at 2:58 pm
I have tested this on version 9.0.3068 and to me it looks like a bug.
I have a backup stored procedure that has this functionality. Please use that if you like.
http://ola.hallengren.com/sql-server-backup.html
Ola...
August 20, 2008 at 2:49 pm
I was just thinking that you could do a
select name from sys.databases
in the start of the script.
If you use a temporary table you could do a
select name from #dblist
right after...
August 15, 2008 at 6:28 am
GilaMonster (8/14/2008)
August 14, 2008 at 4:50 pm
Very strange. I think that Ray Mond's advice is good. Another thing could be to add some logging to the script and output it to a sql server agent output...
August 13, 2008 at 11:10 am
Jeffrey Williams (8/11/2008)
August 12, 2008 at 8:20 am
I have a stored procedure that can help you with this.
http://ola.hallengren.com/sql-server-index-and-statistics-maintenance.html
Ola Hlalengren
August 7, 2008 at 2:28 pm
It is not a good idea to update the statistics after an index rebuild. The index rebuild operation has rebuilt, not only the index, but also the statistics.
Ola Hallengren
August 6, 2008 at 4:04 pm
Maybe there are just no indexes that needs to be rebuilt or reorganized in this database.
Sometimes on small databases many indexes fall below the PageCountLevel. Try setting @PageCountLevel = 1...
August 6, 2008 at 4:03 pm
Some answers to DBA's questions.
The logic in the DatabaseBackup stored procedure is like this.
IF DATABASEPROPERTYEX(@CurrentDatabase,'status') = 'ONLINE'
AND NOT (@BackupType = 'LOG' AND DATABASEPROPERTYEX(@CurrentDatabase,'recovery') = 'SIMPLE')
BEGIN
END
So only databases that are Online...
August 6, 2008 at 12:08 pm
You need to test your applications carefully after you have changed the compatibility level. There could be things that works in one compatibility level and not in another. If you...
August 3, 2008 at 2:06 am
One thing could be to check the compatibility level of your databases. Databases in compatibility level 70 are not displayed in the Maintenance Plans.
http://msdn.microsoft.com/en-us/library/ms189647.aspx
Ola Hallengren
July 31, 2008 at 2:04 pm
Thanks, Jamie. I understand.
Now I was thinking more of publishing a SQLCMD file on a website and be sure that all people will open it in SQLCMD mode in Management...
July 31, 2008 at 8:18 am
Viewing 15 posts - 46 through 60 (of 171 total)