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 Oct 14, 2024
1 parent 78d4ba3 commit ef52714
Show file tree
Hide file tree
Showing 8 changed files with 739 additions and 701 deletions.
29 changes: 29 additions & 0 deletions Get-DbaDbView.html
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,7 @@ <h2 id="syntax">Syntax</h2>
[[-ExcludeDatabase] &lt;Object[]&gt;]
[-ExcludeSystemView]
[[-View] &lt;String[]&gt;]
[[-Schema] &lt;String[]&gt;]
[[-InputObject] &lt;Database[]&gt;]
[-EnableException]
[&lt;CommonParameters&gt;]
Expand Down Expand Up @@ -703,6 +704,34 @@ <h5 id="view">-View</h5>
</tr>
</tbody>
</table>
<h5 id="schema">-Schema</h5>
<p>Only return views from the specified schema<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="inputobject">-InputObject</h5>
<p>Enables piping from Get-DbaDatabase<br></p>
<table>
Expand Down
11 changes: 10 additions & 1 deletion Import-DbaCsv.html
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,16 @@ <h5 id="example-10">Example: 10</h5>
&gt;&gt; }
PS C:\&gt; Import-DbaCsv -Path c:\temp\supersmall.csv -SqlInstance sql2016 -Database tempdb -ColumnMap $columns
</code></pre>
<p>The CSV column 'Text' is inserted into SQL column 'FirstName' and CSV column Number is inserted into the SQL Column 'PhoneNumber'. All other columns are ignored and therefore null or default values.<br></p>
<p>The CSV field 'Text' is inserted into SQL column 'FirstName' and CSV field Number is inserted into the SQL Column 'PhoneNumber'. All other columns are ignored and therefore null or default values.<br></p>
<h5 id="example-11">Example: 11</h5>
<pre><code>PS C:\&gt; $columns = @{
&gt;&gt; 0 = 'FirstName'
&gt;&gt; 1 = 'PhoneNumber'
&gt;&gt; }
PS C:\&gt; Import-DbaCsv -Path c:\temp\supersmall.csv -SqlInstance sql2016 -Database tempdb -NoHeaderRow -ColumnMap $columns
</code></pre>
<p>If the CSV has no headers, passing a ColumnMap works when you have as the key the ordinal of the column (0-based).<br>
In this example the first CSV field is inserted into SQL column 'FirstName' and the second CSV field is inserted into the SQL Column 'PhoneNumber'.<br></p>
<h3 id="required-parameters">Required Parameters</h3>
<h5 id="sqlinstance">-SqlInstance</h5>
<p>The SQL Server Instance to import data into. <br></p>
Expand Down
2 changes: 1 addition & 1 deletion Invoke-DbaDbDbccCheckConstraint.html
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ <h5 id="example-5">Example: 5</h5>
<h5 id="example-6">Example: 6</h5>
<pre><code>PS C:\&gt; 'Sql1','Sql2/sqlexpress' | Invoke-DbaDbDbccCheckConstraint -WhatIf
</code></pre>
<p>Displays what will happen if command DBCC CHECKCONSTRAINTS is called against all databses on Sql1 and Sql2/sqlexpress<br></p>
<p>Displays what will happen if command DBCC CHECKCONSTRAINTS is called against all databases on Sql1 and Sql2/sqlexpress.<br></p>
<h3 id="required-parameters">Required Parameters</h3>
<h5 id="sqlinstance">-SqlInstance</h5>
<p>The target SQL Server instance or instances. <br></p>
Expand Down
2 changes: 1 addition & 1 deletion Invoke-DbaDbDbccCleanTable.html
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ <h5 id="example-3">Example: 3</h5>
<h5 id="example-4">Example: 4</h5>
<pre><code>PS C:\&gt; 'Sql1','Sql2/sqlexpress' | Invoke-DbaDbDbccCleanTable -Object 'dbo.SomeTable' -BatchSize 5000
</code></pre>
<p>Runs the command DBCC CLEANTABLE('DatabaseName', 'dbo.SomeTable', 5000) against all databses on Sql1 and Sql2/sqlexpress<br></p>
<p>Runs the command DBCC CLEANTABLE('DatabaseName', 'dbo.SomeTable', 5000) against all databases on Sql1 and Sql2/sqlexpress.<br></p>
<h3 id="required-parameters">Required Parameters</h3>
<h5 id="sqlinstance">-SqlInstance</h5>
<p>The target SQL Server instance or instances. <br></p>
Expand Down
2 changes: 1 addition & 1 deletion Invoke-DbaDbDbccUpdateUsage.html
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ <h5 id="example-4">Example: 4</h5>
<h5 id="example-5">Example: 5</h5>
<pre><code>PS C:\&gt; 'Sql1','Sql2/sqlexpress' | Invoke-DbaDbDbccUpdateUsage -WhatIf
</code></pre>
<p>Displays what will happen if command DBCC UPDATEUSAGE is called against all databses on Sql1 and Sql2/sqlexpress<br></p>
<p>Displays what will happen if command DBCC UPDATEUSAGE is called against all databases on Sql1 and Sql2/sqlexpress.<br></p>
<h3 id="required-parameters">Required Parameters</h3>
<h5 id="sqlinstance">-SqlInstance</h5>
<p>The target SQL Server instance or instances. <br></p>
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.25",
"version": "2.1.26",
"external_links": [
{
"name": "offline installs of dbatools",
Expand Down
Loading

0 comments on commit ef52714

Please sign in to comment.