Skip to content

Commit 711f85e

Browse files
niphlodactions-user
authored andcommitted
updating build ref file
1 parent d69563d commit 711f85e

1 file changed

Lines changed: 49 additions & 16 deletions

File tree

assets/dbatools-index.json

Lines changed: 49 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17889,19 +17889,22 @@
1788917889
},
1789017890
{
1789117891
"Name": "Get-DbaDbPartitionFunction",
17892-
"Description": "Gets database Partition Functions",
17893-
"Tags": "Database",
17894-
"Synopsis": "Gets database Partition Functions",
17892+
"Description": "Gets database Partition Functions.",
17893+
"Tags": [
17894+
"Database",
17895+
"Partition"
17896+
],
17897+
"Synopsis": "Gets database Partition Functions.",
1789517898
"Alias": "",
1789617899
"Author": "Klaas Vandenberghe ( @PowerDbaKlaas )",
1789717900
"CommandName": "Get-DbaDbPartitionFunction",
1789817901
"Availability": "Windows, Linux, macOS",
1789917902
"Links": "https://dbatools.io/Get-DbaDbPartitionFunction",
17900-
"Examples": "-------------------------- EXAMPLE 1 --------------------------\nPS C:\\\u003eGet-DbaDbPartitionFunction -SqlInstance sql2016\nGets all database Partition Functions\n-------------------------- EXAMPLE 2 --------------------------\nPS C:\\\u003eGet-DbaDbPartitionFunction -SqlInstance Server1 -Database db1\nGets the Partition Functions for the db1 database\n-------------------------- EXAMPLE 3 --------------------------\nPS C:\\\u003eGet-DbaDbPartitionFunction -SqlInstance Server1 -ExcludeDatabase db1\nGets the Partition Functions for all databases except db1\n-------------------------- EXAMPLE 4 --------------------------\nPS C:\\\u003e\u0027Sql1\u0027,\u0027Sql2/sqlexpress\u0027 | Get-DbaDbPartitionFunction\nGets the Partition Functions for the databases on Sql1 and Sql2/sqlexpress",
17903+
"Examples": "-------------------------- EXAMPLE 1 --------------------------\nPS C:\\\u003eGet-DbaDbPartitionFunction -SqlInstance sql2016\nGets all database partition functions.\n-------------------------- EXAMPLE 2 --------------------------\nPS C:\\\u003eGet-DbaDbPartitionFunction -SqlInstance Server1 -Database db1\nGets the partition functions for the db1 database.\n-------------------------- EXAMPLE 3 --------------------------\nPS C:\\\u003eGet-DbaDbPartitionFunction -SqlInstance Server1 -ExcludeDatabase db1\nGets the partition functions for all databases except db1.\n-------------------------- EXAMPLE 4 --------------------------\nPS C:\\\u003e\u0027Sql1\u0027,\u0027Sql2/sqlexpress\u0027 | Get-DbaDbPartitionFunction\nGets the partition functions for the databases on Sql1 and Sql2/sqlexpress.\n-------------------------- EXAMPLE 5 --------------------------\nPS C:\\\u003eGet-DbaDbPartitionFunction -SqlInstance localhost -Database TestDB -PartitionFunction partFun01\nGets the partition function partFun01 for the TestDB on localhost.",
1790117904
"Params": [
1790217905
[
1790317906
"SqlInstance",
17904-
"The target SQL Server instance or instances",
17907+
"The target SQL Server instance or instances.",
1790517908
"",
1790617909
true,
1790717910
"true (ByValue)",
@@ -17919,7 +17922,7 @@
1791917922
],
1792017923
[
1792117924
"Database",
17922-
"To get users from specific database(s)",
17925+
"To get users from specific database(s).",
1792317926
"",
1792417927
false,
1792517928
"false",
@@ -17928,13 +17931,22 @@
1792817931
],
1792917932
[
1793017933
"ExcludeDatabase",
17931-
"The database(s) to exclude - this list is auto populated from the server",
17934+
"The database(s) to exclude - this list is auto populated from the server.",
1793217935
"",
1793317936
false,
1793417937
"false",
1793517938
"",
1793617939
""
1793717940
],
17941+
[
17942+
"PartitionFunction",
17943+
"The name(s) of the partition function(s).",
17944+
"Name",
17945+
false,
17946+
"false",
17947+
"",
17948+
""
17949+
],
1793817950
[
1793917951
"EnableException",
1794017952
"By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.\r\nThis avoids overwhelming you with \"sea of red\" exceptions, but is inconvenient because it basically disables advanced scripting.\r\nUsing this switch turns this \"nice by default\" feature off and enables you to catch exceptions with your own try/catch.",
@@ -17945,19 +17957,22 @@
1794517957
""
1794617958
]
1794717959
],
17948-
"Syntax": "Get-DbaDbPartitionFunction [-SqlInstance] \u003cDbaInstanceParameter[]\u003e [[-SqlCredential] \u003cPSCredential\u003e] [[-Database] \u003cObject[]\u003e] [[-ExcludeDatabase] \u003cObject[]\u003e] [-EnableException] [\u003cCommonParameters\u003e]"
17960+
"Syntax": "Get-DbaDbPartitionFunction [-SqlInstance] \u003cDbaInstanceParameter[]\u003e [[-SqlCredential] \u003cPSCredential\u003e] [[-Database] \u003cObject[]\u003e] [[-ExcludeDatabase] \u003cObject[]\u003e] [[-PartitionFunction] \u003cString[]\u003e] [-EnableException] [\u003cCommonParameters\u003e]"
1794917961
},
1795017962
{
1795117963
"Name": "Get-DbaDbPartitionScheme",
17952-
"Description": "Gets database Partition Schemes",
17953-
"Tags": "Database",
17954-
"Synopsis": "Gets database Partition Schemes",
17964+
"Description": "Gets database Partition Schemes.",
17965+
"Tags": [
17966+
"Database",
17967+
"Partition"
17968+
],
17969+
"Synopsis": "Gets database partition scheme(s).",
1795517970
"Alias": "",
1795617971
"Author": "Klaas Vandenberghe (@PowerDbaKlaas)",
1795717972
"CommandName": "Get-DbaDbPartitionScheme",
1795817973
"Availability": "Windows, Linux, macOS",
1795917974
"Links": "https://dbatools.io/Get-DbaDbPartitionScheme",
17960-
"Examples": "-------------------------- EXAMPLE 1 --------------------------\nPS C:\\\u003eGet-DbaDbPartitionScheme -SqlInstance sql2016\nGets all database Partition Schemes\n-------------------------- EXAMPLE 2 --------------------------\nPS C:\\\u003eGet-DbaDbPartitionScheme -SqlInstance Server1 -Database db1\nGets the Partition Schemes for the db1 database\n-------------------------- EXAMPLE 3 --------------------------\nPS C:\\\u003eGet-DbaDbPartitionScheme -SqlInstance Server1 -ExcludeDatabase db1\nGets the Partition Schemes for all databases except db1\n-------------------------- EXAMPLE 4 --------------------------\nPS C:\\\u003e\u0027Sql1\u0027,\u0027Sql2/sqlexpress\u0027 | Get-DbaDbPartitionScheme\nGets the Partition Schemes for the databases on Sql1 and Sql2/sqlexpress",
17975+
"Examples": "-------------------------- EXAMPLE 1 --------------------------\nPS C:\\\u003eGet-DbaDbPartitionScheme -SqlInstance sql2016\nGets all database partition schemes.\n-------------------------- EXAMPLE 2 --------------------------\nPS C:\\\u003eGet-DbaDbPartitionScheme -SqlInstance Server1 -Database db1\nGets the partition schemes for the db1 database.\n-------------------------- EXAMPLE 3 --------------------------\nPS C:\\\u003eGet-DbaDbPartitionScheme -SqlInstance Server1 -ExcludeDatabase db1\nGets the partition schemes for all databases except db1.\n-------------------------- EXAMPLE 4 --------------------------\nPS C:\\\u003e\u0027Sql1\u0027,\u0027Sql2/sqlexpress\u0027 | Get-DbaDbPartitionScheme\nGets the partition schemes for the databases on Sql1 and Sql2/sqlexpress.\n-------------------------- EXAMPLE 5 --------------------------\nPS C:\\\u003eGet-DbaDbPartitionScheme -SqlInstance localhost -Database TestDB -PartitionScheme partSch01\nGets the partition scheme partSch01 for the TestDB on localhost.",
1796117976
"Params": [
1796217977
[
1796317978
"SqlInstance",
@@ -17979,7 +17994,7 @@
1797917994
],
1798017995
[
1798117996
"Database",
17982-
"To get users from specific database(s)",
17997+
"To get users from specific database(s).",
1798317998
"",
1798417999
false,
1798518000
"false",
@@ -17988,13 +18003,22 @@
1798818003
],
1798918004
[
1799018005
"ExcludeDatabase",
17991-
"The database(s) to exclude - this list is auto populated from the server",
18006+
"The database(s) to exclude - this list is auto-populated from the server.",
1799218007
"",
1799318008
false,
1799418009
"false",
1799518010
"",
1799618011
""
1799718012
],
18013+
[
18014+
"PartitionScheme",
18015+
"The name(s) of the partition scheme(s).",
18016+
"Name",
18017+
false,
18018+
"false",
18019+
"",
18020+
""
18021+
],
1799818022
[
1799918023
"EnableException",
1800018024
"By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.\r\nThis avoids overwhelming you with \"sea of red\" exceptions, but is inconvenient because it basically disables advanced scripting.\r\nUsing this switch turns this \"nice by default\" feature off and enables you to catch exceptions with your own try/catch.",
@@ -18005,7 +18029,7 @@
1800518029
""
1800618030
]
1800718031
],
18008-
"Syntax": "Get-DbaDbPartitionScheme [-SqlInstance] \u003cDbaInstanceParameter[]\u003e [[-SqlCredential] \u003cPSCredential\u003e] [[-Database] \u003cObject[]\u003e] [[-ExcludeDatabase] \u003cObject[]\u003e] [-EnableException] [\u003cCommonParameters\u003e]"
18032+
"Syntax": "Get-DbaDbPartitionScheme [-SqlInstance] \u003cDbaInstanceParameter[]\u003e [[-SqlCredential] \u003cPSCredential\u003e] [[-Database] \u003cObject[]\u003e] [[-ExcludeDatabase] \u003cObject[]\u003e] [[-PartitionScheme] \u003cString[]\u003e] [-EnableException] [\u003cCommonParameters\u003e]"
1800918033
},
1801018034
{
1801118035
"Name": "Get-DbaDbQueryStoreOption",
@@ -34055,6 +34079,15 @@
3405534079
"False",
3405634080
""
3405734081
],
34082+
[
34083+
"NoExec",
34084+
"Use this switch to prepend SET NOEXEC ON and append SET NOEXEC OFF to each statement, useful for checking query formal errors",
34085+
"",
34086+
false,
34087+
"false",
34088+
"False",
34089+
""
34090+
],
3405834091
[
3405934092
"EnableException",
3406034093
"By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.\r\nThis avoids overwhelming you with \"sea of red\" exceptions, but is inconvenient because it basically disables advanced scripting.\r\nUsing this switch turns this \"nice by default\" feature off and enables you to catch exceptions with your own try/catch.",
@@ -34065,7 +34098,7 @@
3406534098
""
3406634099
]
3406734100
],
34068-
"Syntax": "Invoke-DbaQuery [[-SqlInstance] \u003cDbaInstanceParameter[]\u003e] [-SqlCredential \u003cPSCredential\u003e] [-Database \u003cString\u003e] -Query \u003cString\u003e [-QueryTimeout \u003cInt32\u003e] [-As \u003cString\u003e] [-SqlParameter \u003cPSObject[]\u003e] [-CommandType {Text | StoredProcedure | TableDirect}] [-AppendServerInstance] [-MessagesToOutput] [-InputObject \u003cDatabase[]\u003e] [-ReadOnly] [-EnableException] [\u003cCommonParameters\u003e]\nInvoke-DbaQuery [[-SqlInstance] \u003cDbaInstanceParameter[]\u003e] [-SqlCredential \u003cPSCredential\u003e] [-Database \u003cString\u003e] [-QueryTimeout \u003cInt32\u003e] -SqlObject \u003cSqlSmoObject[]\u003e [-As \u003cString\u003e] [-SqlParameter \u003cPSObject[]\u003e] [-CommandType {Text | StoredProcedure | TableDirect}] [-AppendServerInstance] [-MessagesToOutput] [-InputObject \u003cDatabase[]\u003e] [-ReadOnly] [-EnableException] [\u003cCommonParameters\u003e]\nInvoke-DbaQuery [[-SqlInstance] \u003cDbaInstanceParameter[]\u003e] [-SqlCredential \u003cPSCredential\u003e] [-Database \u003cString\u003e] [-QueryTimeout \u003cInt32\u003e] -File \u003cObject[]\u003e [-As \u003cString\u003e] [-SqlParameter \u003cPSObject[]\u003e] [-CommandType {Text | StoredProcedure | TableDirect}] [-AppendServerInstance] [-MessagesToOutput] [-InputObject \u003cDatabase[]\u003e] [-ReadOnly] [-EnableException] [\u003cCommonParameters\u003e]"
34101+
"Syntax": "Invoke-DbaQuery [[-SqlInstance] \u003cDbaInstanceParameter[]\u003e] [-SqlCredential \u003cPSCredential\u003e] [-Database \u003cString\u003e] -Query \u003cString\u003e [-QueryTimeout \u003cInt32\u003e] [-As \u003cString\u003e] [-SqlParameter \u003cPSObject[]\u003e] [-CommandType {Text | StoredProcedure | TableDirect}] [-AppendServerInstance] [-MessagesToOutput] [-InputObject \u003cDatabase[]\u003e] [-ReadOnly] [-NoExec] [-EnableException] [\u003cCommonParameters\u003e]\nInvoke-DbaQuery [[-SqlInstance] \u003cDbaInstanceParameter[]\u003e] [-SqlCredential \u003cPSCredential\u003e] [-Database \u003cString\u003e] [-QueryTimeout \u003cInt32\u003e] -SqlObject \u003cSqlSmoObject[]\u003e [-As \u003cString\u003e] [-SqlParameter \u003cPSObject[]\u003e] [-CommandType {Text | StoredProcedure | TableDirect}] [-AppendServerInstance] [-MessagesToOutput] [-InputObject \u003cDatabase[]\u003e] [-ReadOnly] [-NoExec] [-EnableException] [\u003cCommonParameters\u003e]\nInvoke-DbaQuery [[-SqlInstance] \u003cDbaInstanceParameter[]\u003e] [-SqlCredential \u003cPSCredential\u003e] [-Database \u003cString\u003e] [-QueryTimeout \u003cInt32\u003e] -File \u003cObject[]\u003e [-As \u003cString\u003e] [-SqlParameter \u003cPSObject[]\u003e] [-CommandType {Text | StoredProcedure | TableDirect}] [-AppendServerInstance] [-MessagesToOutput] [-InputObject \u003cDatabase[]\u003e] [-ReadOnly] [-NoExec] [-EnableException] [\u003cCommonParameters\u003e]"
3406934102
},
3407034103
{
3407134104
"Name": "Invoke-DbatoolsFormatter",

0 commit comments

Comments
 (0)