Viewing 15 posts - 1 through 15 (of 171 total)
Then I would recommend, not doing differential backups for this database.
June 29, 2018 at 2:31 pm
One common cause of this issue, is that you have some VSS based backup that is backing up the...
June 29, 2018 at 1:35 pm
This looks strange. Which version of SQL Server is this?
Could you send me the complete output - file and error log?
https://ola.hallengren.com/contact.html
May 16, 2018 at 12:38 pm
I have released a new version of the script with support for striping of backups to Azure Blob Storage, MAXTRANSFERSIZE, and BLOCKSIZE.
https://ola.hallengren.com/versions.html
Could you please download...
April 3, 2018 at 7:38 am
When I developed the scripts I was looking at how Microsoft was doing in the Maintenance Plans. They are not doing checkdb for tempdb, so I did also not do...
February 23, 2015 at 7:41 pm
In the latest version you can do like this:
EXECUTE dbo.DatabaseIntegrityCheck @databases = 'SYSTEM_DATABASES,tempdb', @CheckCommands = 'CHECKDB'
Please send me a mail for more details.
Ola Hallengren
February 23, 2015 at 9:19 am
This is by design. DatabaseIntegrityCheck is not doing checkdb on tempdb.
Ola Hallengren
August 22, 2014 at 2:29 am
If you would like the full backups to be performed on the secondary server as well, you can add the option @CopyOnly = 'Y' to the full backup jobs.
(I don't...
August 16, 2014 at 4:00 am
I calculate the cleanup time before I start backing up the database. The reason for that is to protect against a scenario where you delete a backup that you have...
June 11, 2013 at 8:28 am
Here is an interesting blog post about sys.system_internals_partition_columns.
http://www.sqlskills.com/blogs/paul/how-are-per-column-modification-counts-tracked/[/url]
Regarding sys.sysindexes that contains information not only about indexes, but also about column-statistics.
Ola Hallengren
April 26, 2013 at 5:35 am
Have a look at sys.dm_db_stats_properties
http://msdn.microsoft.com/en-us/library/jj553546.aspx
Ola Hallengren
April 25, 2013 at 2:25 pm
I do not recommend changing this for the reasons that I have described, but you are free to change the script as you like.
Ola Hallengren
November 1, 2012 at 2:23 pm
Default the parameter for high fragmentation is set like this:
@FragmentationHigh = 'INDEX_REBUILD_ONLINE,INDEX_REBUILD_OFFLINE'
This means that it will rebuild an index online if that is possible. If that is not possible, it...
October 30, 2012 at 3:18 am
What version and edition are you running? (Do a SELECT @@VERSION.)
Could you script out the table and post that?
October 25, 2012 at 2:46 pm
In my script I am using Continue just as a column alias.
For more general questions about T-SQL I think that it is better if you start a new thread.
Ola Hallengren
October 10, 2012 at 9:34 am
Viewing 15 posts - 1 through 15 (of 171 total)