Skip to content

Commit

Permalink
2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
potatoqualitee committed May 12, 2023
1 parent 63cb56b commit 40ee686
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
Binary file modified bin/dbatools-index.json
Binary file not shown.
2 changes: 1 addition & 1 deletion dbatools.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
RootModule = 'dbatools.psm1'

# Version number of this module.
ModuleVersion = '2.0.1'
ModuleVersion = '2.0.2'

# ID used to uniquely identify this module
GUID = '9d139310-ce45-41ce-8e8b-d76335aa1789'
Expand Down
8 changes: 8 additions & 0 deletions public/Install-DbaMaintenanceSolution.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ function Install-DbaMaintenanceSolution {
To skip diffs, specify NoDiff in the values. To perform log backups each hour instead of every
15 minutes, specify HourlyLog in the values.
When AutoScheduleJobs is used, this time will be used as the start time for the jobs unless a schedule already
exists in the same time slot. If so, then it will add an hour until it finds an open time slot. Defaults to 1:15 AM.
Recommendations can be found on Ola's site: https://ola.hallengren.com/frequently-asked-questions.html
.PARAMETER StartTime
Expand Down Expand Up @@ -144,6 +147,11 @@ function Install-DbaMaintenanceSolution {
This will create the Queue and QueueDatabase tables for uses when manually changing jobs to use the @DatabasesInParallel = 'Y' flag
.EXAMPLE
PS C:\> Install-DbaMaintenanceSolution -SqlInstance sql01 -InstallJobs -AutoScheduleJobs WeeklyFull
This will create the Ola Hallengren's Solution objects and the SQL Agent Jobs. The jobs will be scheduled to run weekly full, daily differential and 15 minute log backups.
#>
[CmdletBinding(SupportsShouldProcess, ConfirmImpact = "Medium")]
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSUseSingularNouns", "", Justification = "Internal functions are ignored")]
Expand Down

0 comments on commit 40ee686

Please sign in to comment.