Skip to content

Commit

Permalink
refreshing docs pages
Browse files Browse the repository at this point in the history
  • Loading branch information
potatoqualitee authored and github-actions[bot] committed Jun 15, 2024
1 parent fb3d7cd commit 9484046
Show file tree
Hide file tree
Showing 6 changed files with 741 additions and 708 deletions.
10 changes: 7 additions & 3 deletions Install-DbaFirstResponderKit.html
Original file line number Diff line number Diff line change
Expand Up @@ -539,10 +539,14 @@ <h5 id="example-7">Example: 7</h5>
</code></pre>
<p>Installs only the procedures sp_Blitz and sp_BlitzWho and the table SqlServerVersions by running the corresponding scripts.<br></p>
<h5 id="example-8">Example: 8</h5>
<pre><code>PS C:\&gt; Install-DbaFirstResponderKit -SqlInstance sql2016 -OnlyScript Install-Core-Blitz-No-Query-Store.sql
<pre><code>PS C:\&gt; Install-DbaFirstResponderKit -SqlInstance sql2016 -OnlyScript Install-All-Scripts.sql
</code></pre>
<p>Installs only part of the First Responder Kit by running the official install script.<br></p>
<p>Installs the First Responder Kit using the official install script.<br></p>
<h5 id="example-9">Example: 9</h5>
<pre><code>PS C:\&gt; Install-DbaFirstResponderKit -SqlInstance sql-server-001.database.windows.net -OnlyScript Install-Azure.sql
</code></pre>
<p>Installs the First Responder Kit using the official install script for Azure SQL Database.<br></p>
<h5 id="example-10">Example: 10</h5>
<pre><code>PS C:\&gt; Install-DbaFirstResponderKit -SqlInstance sql2016 -OnlyScript Uninstall.sql
</code></pre>
<p>Uninstalls the First Responder Kit by running the official uninstall script.<br></p>
Expand Down Expand Up @@ -729,7 +733,7 @@ <h5 id="onlyscript">-OnlyScript</h5>
</tr>
<tr>
<td>Accepted Values</td>
<td>Install-All-Scripts.sql,Install-Core-Blitz-No-Query-Store.sql,Install-Core-Blitz-With-Query-Store.sql,sp_Blitz.sql,sp_BlitzFirst.sql,sp_BlitzIndex.sql,sp_BlitzCache.sql,sp_BlitzWho.sql,sp_BlitzQueryStore.sql,sp_BlitzAnalysis.sql,sp_BlitzBackups.sql,sp_BlitzInMemoryOLTP.sql,sp_BlitzLock.sql,sp_AllNightLog.sql,sp_AllNightLog_Setup.sql,sp_DatabaseRestore.sql,sp_ineachdb.sql,SqlServerVersions.sql,Uninstall.sql</td>
<td>Install-All-Scripts.sql,Install-Azure.sql,sp_Blitz.sql,sp_BlitzFirst.sql,sp_BlitzIndex.sql,sp_BlitzCache.sql,sp_BlitzWho.sql,sp_BlitzAnalysis.sql,sp_BlitzBackups.sql,sp_BlitzLock.sql,sp_DatabaseRestore.sql,sp_ineachdb.sql,SqlServerVersions.sql,Uninstall.sql</td>
</tr>
</tbody>
</table>
Expand Down
2 changes: 1 addition & 1 deletion New-DbaAgentJobStep.html
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ <h2 id="syntax">Syntax</h2>
[[-OnSuccessStepId] &lt;Int32&gt;]
[[-OnFailAction] &lt;String&gt;]
[[-OnFailStepId] &lt;Int32&gt;]
[[-Database] &lt;Object&gt;]
[[-Database] &lt;String&gt;]
[[-DatabaseUser] &lt;String&gt;]
[[-RetryAttempts] &lt;Int32&gt;]
[[-RetryInterval] &lt;Int32&gt;]
Expand Down
43 changes: 36 additions & 7 deletions New-DbaAgentSchedule.html
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,7 @@ <h2 id="syntax">Syntax</h2>
[[-EndDate] &lt;String&gt;]
[[-StartTime] &lt;String&gt;]
[[-EndTime] &lt;String&gt;]
[[-Owner] &lt;String&gt;]
[-Force]
[-EnableException]
[-WhatIf]
Expand Down Expand Up @@ -877,7 +878,7 @@ <h5 id="frequencyrecurrencefactor">-FrequencyRecurrenceFactor</h5>
</tbody>
</table>
<h5 id="startdate">-StartDate</h5>
<p>The date on which execution of a job can begin.<br />
<p>The date on which execution of a job can begin. Must be a string in the format yyyyMMdd.<br />
If force is used the start date will be the current day<br></p>
<table>
<thead>
Expand Down Expand Up @@ -906,8 +907,8 @@ <h5 id="startdate">-StartDate</h5>
</tbody>
</table>
<h5 id="enddate">-EndDate</h5>
<p>The date on which execution of a job can stop.<br />
If force is used the end date will be '9999-12-31'<br></p>
<p>The date on which execution of a job can stop. Must be a string in the format yyyyMMdd.<br />
If force is used the end date will be '99991231'<br></p>
<table>
<thead>
<tr>
Expand Down Expand Up @@ -935,10 +936,10 @@ <h5 id="enddate">-EndDate</h5>
</tbody>
</table>
<h5 id="starttime">-StartTime</h5>
<p>The time on any day to begin execution of a job. Format HHMMSS / 24 hour clock.<br />
<p>The time on any day to begin execution of a job. Must be a string in the format HHmmss / 24 hour clock.<br />
Example: '010000' for 01:00:00 AM.<br />
Example: '140000' for 02:00:00 PM.<br />
If force is used the start time will be '00:00:00'<br></p>
If force is used the start time will be '000000' for midnight.<br></p>
<table>
<thead>
<tr>
Expand Down Expand Up @@ -966,10 +967,38 @@ <h5 id="starttime">-StartTime</h5>
</tbody>
</table>
<h5 id="endtime">-EndTime</h5>
<p>The time on any day to end execution of a job. Format HHMMSS / 24 hour clock.<br />
<p>The time on any day to end execution of a job. Must be a string in the format HHmmss / 24 hour clock.<br />
Example: '010000' for 01:00:00 AM.<br />
Example: '140000' for 02:00:00 PM.<br />
If force is used the start time will be '23:59:59'<br></p>
If force is used the end time will be '235959' for one second before midnight.<br></p>
<table>
<thead>
<tr>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>Alias</td>
<td></td>
</tr>
<tr>
<td>Required</td>
<td>False</td>
</tr>
<tr>
<td>Pipeline</td>
<td>false</td>
</tr>
<tr>
<td>Default Value</td>
<td></td>
</tr>
</tbody>
</table>
<h5 id="owner">-Owner</h5>
<p>Login to own the job, defaults to login running the command.<br></p>
<table>
<thead>
<tr>
Expand Down
Binary file modified assets/dbatools-index.json
Binary file not shown.
2 changes: 1 addition & 1 deletion assets/external.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.1.16",
"version": "2.1.18",
"external_links": [
{
"name": "offline installs of dbatools",
Expand Down
Loading

0 comments on commit 9484046

Please sign in to comment.