Skip to content

Commit ef52714

Browse files
potatoqualiteegithub-actions[bot]
authored andcommitted
refreshing docs pages
1 parent 78d4ba3 commit ef52714

8 files changed

+739
-701
lines changed

Get-DbaDbView.html

+29
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,7 @@ <h2 id="syntax">Syntax</h2>
496496
[[-ExcludeDatabase] &lt;Object[]&gt;]
497497
[-ExcludeSystemView]
498498
[[-View] &lt;String[]&gt;]
499+
[[-Schema] &lt;String[]&gt;]
499500
[[-InputObject] &lt;Database[]&gt;]
500501
[-EnableException]
501502
[&lt;CommonParameters&gt;]
@@ -703,6 +704,34 @@ <h5 id="view">-View</h5>
703704
</tr>
704705
</tbody>
705706
</table>
707+
<h5 id="schema">-Schema</h5>
708+
<p>Only return views from the specified schema<br></p>
709+
<table>
710+
<thead>
711+
<tr>
712+
<th></th>
713+
<th></th>
714+
</tr>
715+
</thead>
716+
<tbody>
717+
<tr>
718+
<td>Alias</td>
719+
<td></td>
720+
</tr>
721+
<tr>
722+
<td>Required</td>
723+
<td>False</td>
724+
</tr>
725+
<tr>
726+
<td>Pipeline</td>
727+
<td>false</td>
728+
</tr>
729+
<tr>
730+
<td>Default Value</td>
731+
<td></td>
732+
</tr>
733+
</tbody>
734+
</table>
706735
<h5 id="inputobject">-InputObject</h5>
707736
<p>Enables piping from Get-DbaDatabase<br></p>
708737
<table>

Import-DbaCsv.html

+10-1
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,16 @@ <h5 id="example-10">Example: 10</h5>
583583
&gt;&gt; }
584584
PS C:\&gt; Import-DbaCsv -Path c:\temp\supersmall.csv -SqlInstance sql2016 -Database tempdb -ColumnMap $columns
585585
</code></pre>
586-
<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>
586+
<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>
587+
<h5 id="example-11">Example: 11</h5>
588+
<pre><code>PS C:\&gt; $columns = @{
589+
&gt;&gt; 0 = 'FirstName'
590+
&gt;&gt; 1 = 'PhoneNumber'
591+
&gt;&gt; }
592+
PS C:\&gt; Import-DbaCsv -Path c:\temp\supersmall.csv -SqlInstance sql2016 -Database tempdb -NoHeaderRow -ColumnMap $columns
593+
</code></pre>
594+
<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>
595+
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>
587596
<h3 id="required-parameters">Required Parameters</h3>
588597
<h5 id="sqlinstance">-SqlInstance</h5>
589598
<p>The SQL Server Instance to import data into. <br></p>

Invoke-DbaDbDbccCheckConstraint.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ <h5 id="example-5">Example: 5</h5>
535535
<h5 id="example-6">Example: 6</h5>
536536
<pre><code>PS C:\&gt; 'Sql1','Sql2/sqlexpress' | Invoke-DbaDbDbccCheckConstraint -WhatIf
537537
</code></pre>
538-
<p>Displays what will happen if command DBCC CHECKCONSTRAINTS is called against all databses on Sql1 and Sql2/sqlexpress<br></p>
538+
<p>Displays what will happen if command DBCC CHECKCONSTRAINTS is called against all databases on Sql1 and Sql2/sqlexpress.<br></p>
539539
<h3 id="required-parameters">Required Parameters</h3>
540540
<h5 id="sqlinstance">-SqlInstance</h5>
541541
<p>The target SQL Server instance or instances. <br></p>

Invoke-DbaDbDbccCleanTable.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ <h5 id="example-3">Example: 3</h5>
527527
<h5 id="example-4">Example: 4</h5>
528528
<pre><code>PS C:\&gt; 'Sql1','Sql2/sqlexpress' | Invoke-DbaDbDbccCleanTable -Object 'dbo.SomeTable' -BatchSize 5000
529529
</code></pre>
530-
<p>Runs the command DBCC CLEANTABLE('DatabaseName', 'dbo.SomeTable', 5000) against all databses on Sql1 and Sql2/sqlexpress<br></p>
530+
<p>Runs the command DBCC CLEANTABLE('DatabaseName', 'dbo.SomeTable', 5000) against all databases on Sql1 and Sql2/sqlexpress.<br></p>
531531
<h3 id="required-parameters">Required Parameters</h3>
532532
<h5 id="sqlinstance">-SqlInstance</h5>
533533
<p>The target SQL Server instance or instances. <br></p>

Invoke-DbaDbDbccUpdateUsage.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ <h5 id="example-4">Example: 4</h5>
530530
<h5 id="example-5">Example: 5</h5>
531531
<pre><code>PS C:\&gt; 'Sql1','Sql2/sqlexpress' | Invoke-DbaDbDbccUpdateUsage -WhatIf
532532
</code></pre>
533-
<p>Displays what will happen if command DBCC UPDATEUSAGE is called against all databses on Sql1 and Sql2/sqlexpress<br></p>
533+
<p>Displays what will happen if command DBCC UPDATEUSAGE is called against all databases on Sql1 and Sql2/sqlexpress.<br></p>
534534
<h3 id="required-parameters">Required Parameters</h3>
535535
<h5 id="sqlinstance">-SqlInstance</h5>
536536
<p>The target SQL Server instance or instances. <br></p>

assets/dbatools-index.json

1.93 KB
Binary file not shown.

assets/external.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.1.25",
2+
"version": "2.1.26",
33
"external_links": [
44
{
55
"name": "offline installs of dbatools",

0 commit comments

Comments
 (0)