diff --git a/branch/main/.buildinfo b/branch/main/.buildinfo
index 54d7e767..f04d931b 100644
--- a/branch/main/.buildinfo
+++ b/branch/main/.buildinfo
@@ -1,4 +1,4 @@
 # Sphinx build info version 1
 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 01ba99357b9fe97b784fdfe65a6e108b
+config: c142ead37e3cba0742f7bdc2011231b7
 tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/branch/main/_static/basic.css b/branch/main/_static/basic.css
index 30fee9d0..f316efcb 100644
--- a/branch/main/_static/basic.css
+++ b/branch/main/_static/basic.css
@@ -4,7 +4,7 @@
  *
  * Sphinx stylesheet -- basic theme.
  *
- * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
+ * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
  * :license: BSD, see LICENSE for details.
  *
  */
diff --git a/branch/main/_static/doctools.js b/branch/main/_static/doctools.js
index d06a71d7..4d67807d 100644
--- a/branch/main/_static/doctools.js
+++ b/branch/main/_static/doctools.js
@@ -4,7 +4,7 @@
  *
  * Base JavaScript utilities for all Sphinx HTML documentation.
  *
- * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
+ * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
  * :license: BSD, see LICENSE for details.
  *
  */
diff --git a/branch/main/_static/language_data.js b/branch/main/_static/language_data.js
index 250f5665..367b8ed8 100644
--- a/branch/main/_static/language_data.js
+++ b/branch/main/_static/language_data.js
@@ -5,7 +5,7 @@
  * This script contains the language-specific data used by searchtools.js,
  * namely the list of stopwords, stemmer, scorer and splitter.
  *
- * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
+ * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
  * :license: BSD, see LICENSE for details.
  *
  */
@@ -13,7 +13,7 @@
 var stopwords = ["a", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "near", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"];
 
 
-/* Non-minified version is copied as a separate JS file, is available */
+/* Non-minified version is copied as a separate JS file, if available */
 
 /**
  * Porter Stemmer
diff --git a/branch/main/_static/searchtools.js b/branch/main/_static/searchtools.js
index 7918c3fa..92da3f8b 100644
--- a/branch/main/_static/searchtools.js
+++ b/branch/main/_static/searchtools.js
@@ -4,7 +4,7 @@
  *
  * Sphinx JavaScript utilities for the full-text search.
  *
- * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
+ * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
  * :license: BSD, see LICENSE for details.
  *
  */
@@ -99,7 +99,7 @@ const _displayItem = (item, searchTerms, highlightTerms) => {
       .then((data) => {
         if (data)
           listItem.appendChild(
-            Search.makeSearchSummary(data, searchTerms)
+            Search.makeSearchSummary(data, searchTerms, anchor)
           );
         // highlight search terms in the summary
         if (SPHINX_HIGHLIGHT_ENABLED)  // set in sphinx_highlight.js
@@ -116,8 +116,8 @@ const _finishSearch = (resultCount) => {
     );
   else
     Search.status.innerText = _(
-      `Search finished, found ${resultCount} page(s) matching the search query.`
-    );
+      "Search finished, found ${resultCount} page(s) matching the search query."
+    ).replace('${resultCount}', resultCount);
 };
 const _displayNextItem = (
   results,
@@ -137,6 +137,22 @@ const _displayNextItem = (
   // search finished, update title and status message
   else _finishSearch(resultCount);
 };
+// Helper function used by query() to order search results.
+// Each input is an array of [docname, title, anchor, descr, score, filename].
+// Order the results by score (in opposite order of appearance, since the
+// `_displayNextItem` function uses pop() to retrieve items) and then alphabetically.
+const _orderResultsByScoreThenName = (a, b) => {
+  const leftScore = a[4];
+  const rightScore = b[4];
+  if (leftScore === rightScore) {
+    // same score: sort alphabetically
+    const leftTitle = a[1].toLowerCase();
+    const rightTitle = b[1].toLowerCase();
+    if (leftTitle === rightTitle) return 0;
+    return leftTitle > rightTitle ? -1 : 1; // inverted is intentional
+  }
+  return leftScore > rightScore ? 1 : -1;
+};
 
 /**
  * Default splitQuery function. Can be overridden in ``sphinx.search`` with a
@@ -160,13 +176,26 @@ const Search = {
   _queued_query: null,
   _pulse_status: -1,
 
-  htmlToText: (htmlString) => {
+  htmlToText: (htmlString, anchor) => {
     const htmlElement = new DOMParser().parseFromString(htmlString, 'text/html');
-    htmlElement.querySelectorAll(".headerlink").forEach((el) => { el.remove() });
+    for (const removalQuery of [".headerlinks", "script", "style"]) {
+      htmlElement.querySelectorAll(removalQuery).forEach((el) => { el.remove() });
+    }
+    if (anchor) {
+      const anchorContent = htmlElement.querySelector(`[role="main"] ${anchor}`);
+      if (anchorContent) return anchorContent.textContent;
+
+      console.warn(
+        `Anchored content block not found. Sphinx search tries to obtain it via DOM query '[role=main] ${anchor}'. Check your theme or template.`
+      );
+    }
+
+    // if anchor not specified or not found, fall back to main content
     const docContent = htmlElement.querySelector('[role="main"]');
-    if (docContent !== undefined) return docContent.textContent;
+    if (docContent) return docContent.textContent;
+
     console.warn(
-      "Content block not found. Sphinx search tries to obtain it via '[role=main]'. Could you check your theme or template."
+      "Content block not found. Sphinx search tries to obtain it via DOM query '[role=main]'. Check your theme or template."
     );
     return "";
   },
@@ -239,16 +268,7 @@ const Search = {
     else Search.deferQuery(query);
   },
 
-  /**
-   * execute search (requires search index to be loaded)
-   */
-  query: (query) => {
-    const filenames = Search._index.filenames;
-    const docNames = Search._index.docnames;
-    const titles = Search._index.titles;
-    const allTitles = Search._index.alltitles;
-    const indexEntries = Search._index.indexentries;
-
+  _parseQuery: (query) => {
     // stem the search terms and add them to the correct list
     const stemmer = new Stemmer();
     const searchTerms = new Set();
@@ -284,16 +304,32 @@ const Search = {
     // console.info("required: ", [...searchTerms]);
     // console.info("excluded: ", [...excludedTerms]);
 
-    // array of [docname, title, anchor, descr, score, filename]
-    let results = [];
+    return [query, searchTerms, excludedTerms, highlightTerms, objectTerms];
+  },
+
+  /**
+   * execute search (requires search index to be loaded)
+   */
+  _performSearch: (query, searchTerms, excludedTerms, highlightTerms, objectTerms) => {
+    const filenames = Search._index.filenames;
+    const docNames = Search._index.docnames;
+    const titles = Search._index.titles;
+    const allTitles = Search._index.alltitles;
+    const indexEntries = Search._index.indexentries;
+
+    // Collect multiple result groups to be sorted separately and then ordered.
+    // Each is an array of [docname, title, anchor, descr, score, filename].
+    const normalResults = [];
+    const nonMainIndexResults = [];
+
     _removeChildren(document.getElementById("search-progress"));
 
-    const queryLower = query.toLowerCase();
+    const queryLower = query.toLowerCase().trim();
     for (const [title, foundTitles] of Object.entries(allTitles)) {
-      if (title.toLowerCase().includes(queryLower) && (queryLower.length >= title.length/2)) {
+      if (title.toLowerCase().trim().includes(queryLower) && (queryLower.length >= title.length/2)) {
         for (const [file, id] of foundTitles) {
           let score = Math.round(100 * queryLower.length / title.length)
-          results.push([
+          normalResults.push([
             docNames[file],
             titles[file] !== title ? `${titles[file]} > ${title}` : title,
             id !== null ? "#" + id : "",
@@ -308,46 +344,47 @@ const Search = {
     // search for explicit entries in index directives
     for (const [entry, foundEntries] of Object.entries(indexEntries)) {
       if (entry.includes(queryLower) && (queryLower.length >= entry.length/2)) {
-        for (const [file, id] of foundEntries) {
-          let score = Math.round(100 * queryLower.length / entry.length)
-          results.push([
+        for (const [file, id, isMain] of foundEntries) {
+          const score = Math.round(100 * queryLower.length / entry.length);
+          const result = [
             docNames[file],
             titles[file],
             id ? "#" + id : "",
             null,
             score,
             filenames[file],
-          ]);
+          ];
+          if (isMain) {
+            normalResults.push(result);
+          } else {
+            nonMainIndexResults.push(result);
+          }
         }
       }
     }
 
     // lookup as object
     objectTerms.forEach((term) =>
-      results.push(...Search.performObjectSearch(term, objectTerms))
+      normalResults.push(...Search.performObjectSearch(term, objectTerms))
     );
 
     // lookup as search terms in fulltext
-    results.push(...Search.performTermsSearch(searchTerms, excludedTerms));
+    normalResults.push(...Search.performTermsSearch(searchTerms, excludedTerms));
 
     // let the scorer override scores with a custom scoring function
-    if (Scorer.score) results.forEach((item) => (item[4] = Scorer.score(item)));
-
-    // now sort the results by score (in opposite order of appearance, since the
-    // display function below uses pop() to retrieve items) and then
-    // alphabetically
-    results.sort((a, b) => {
-      const leftScore = a[4];
-      const rightScore = b[4];
-      if (leftScore === rightScore) {
-        // same score: sort alphabetically
-        const leftTitle = a[1].toLowerCase();
-        const rightTitle = b[1].toLowerCase();
-        if (leftTitle === rightTitle) return 0;
-        return leftTitle > rightTitle ? -1 : 1; // inverted is intentional
-      }
-      return leftScore > rightScore ? 1 : -1;
-    });
+    if (Scorer.score) {
+      normalResults.forEach((item) => (item[4] = Scorer.score(item)));
+      nonMainIndexResults.forEach((item) => (item[4] = Scorer.score(item)));
+    }
+
+    // Sort each group of results by score and then alphabetically by name.
+    normalResults.sort(_orderResultsByScoreThenName);
+    nonMainIndexResults.sort(_orderResultsByScoreThenName);
+
+    // Combine the result groups in (reverse) order.
+    // Non-main index entries are typically arbitrary cross-references,
+    // so display them after other results.
+    let results = [...nonMainIndexResults, ...normalResults];
 
     // remove duplicate search results
     // note the reversing of results, so that in the case of duplicates, the highest-scoring entry is kept
@@ -361,7 +398,12 @@ const Search = {
       return acc;
     }, []);
 
-    results = results.reverse();
+    return results.reverse();
+  },
+
+  query: (query) => {
+    const [searchQuery, searchTerms, excludedTerms, highlightTerms, objectTerms] = Search._parseQuery(query);
+    const results = Search._performSearch(searchQuery, searchTerms, excludedTerms, highlightTerms, objectTerms);
 
     // for debugging
     //Search.lastresults = results.slice();  // a copy
@@ -466,14 +508,18 @@ const Search = {
       // add support for partial matches
       if (word.length > 2) {
         const escapedWord = _escapeRegExp(word);
-        Object.keys(terms).forEach((term) => {
-          if (term.match(escapedWord) && !terms[word])
-            arr.push({ files: terms[term], score: Scorer.partialTerm });
-        });
-        Object.keys(titleTerms).forEach((term) => {
-          if (term.match(escapedWord) && !titleTerms[word])
-            arr.push({ files: titleTerms[word], score: Scorer.partialTitle });
-        });
+        if (!terms.hasOwnProperty(word)) {
+          Object.keys(terms).forEach((term) => {
+            if (term.match(escapedWord))
+              arr.push({ files: terms[term], score: Scorer.partialTerm });
+          });
+        }
+        if (!titleTerms.hasOwnProperty(word)) {
+          Object.keys(titleTerms).forEach((term) => {
+            if (term.match(escapedWord))
+              arr.push({ files: titleTerms[term], score: Scorer.partialTitle });
+          });
+        }
       }
 
       // no match but word was a required one
@@ -496,9 +542,8 @@ const Search = {
 
       // create the mapping
       files.forEach((file) => {
-        if (fileMap.has(file) && fileMap.get(file).indexOf(word) === -1)
-          fileMap.get(file).push(word);
-        else fileMap.set(file, [word]);
+        if (!fileMap.has(file)) fileMap.set(file, [word]);
+        else if (fileMap.get(file).indexOf(word) === -1) fileMap.get(file).push(word);
       });
     });
 
@@ -549,8 +594,8 @@ const Search = {
    * search summary for a given text. keywords is a list
    * of stemmed words.
    */
-  makeSearchSummary: (htmlText, keywords) => {
-    const text = Search.htmlToText(htmlText);
+  makeSearchSummary: (htmlText, keywords, anchor) => {
+    const text = Search.htmlToText(htmlText, anchor);
     if (text === "") return null;
 
     const textLower = text.toLowerCase();
diff --git a/branch/main/collections/environment_variables.html b/branch/main/collections/environment_variables.html
index ccf3dbdf..842ef4eb 100644
--- a/branch/main/collections/environment_variables.html
+++ b/branch/main/collections/environment_variables.html
@@ -20,7 +20,7 @@
         <script src="../_static/jquery.js?v=5d32c60e"></script>
         <script src="../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../_static/doctools.js?v=888ff710"></script>
+        <script src="../_static/doctools.js?v=9a2dae69"></script>
         <script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../search.html" />
diff --git a/branch/main/collections/index.html b/branch/main/collections/index.html
index 13ed4dfe..f43f2086 100644
--- a/branch/main/collections/index.html
+++ b/branch/main/collections/index.html
@@ -20,7 +20,7 @@
         <script src="../_static/jquery.js?v=5d32c60e"></script>
         <script src="../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../_static/doctools.js?v=888ff710"></script>
+        <script src="../_static/doctools.js?v=9a2dae69"></script>
         <script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../search.html" />
diff --git a/branch/main/collections/index_module.html b/branch/main/collections/index_module.html
index 207ac0f6..2b88181e 100644
--- a/branch/main/collections/index_module.html
+++ b/branch/main/collections/index_module.html
@@ -20,7 +20,7 @@
         <script src="../_static/jquery.js?v=5d32c60e"></script>
         <script src="../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../_static/doctools.js?v=888ff710"></script>
+        <script src="../_static/doctools.js?v=9a2dae69"></script>
         <script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../search.html" />
diff --git a/branch/main/collections/lowlydba/index.html b/branch/main/collections/lowlydba/index.html
index 9350bdff..252f4d81 100644
--- a/branch/main/collections/lowlydba/index.html
+++ b/branch/main/collections/lowlydba/index.html
@@ -20,7 +20,7 @@
         <script src="../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/ag_listener_module.html b/branch/main/collections/lowlydba/sqlserver/ag_listener_module.html
index 869f9d2c..b2f7f866 100644
--- a/branch/main/collections/lowlydba/sqlserver/ag_listener_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/ag_listener_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/ag_replica_module.html b/branch/main/collections/lowlydba/sqlserver/ag_replica_module.html
index 2d9ec47c..430f0696 100644
--- a/branch/main/collections/lowlydba/sqlserver/ag_replica_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/ag_replica_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/agent_job_category_module.html b/branch/main/collections/lowlydba/sqlserver/agent_job_category_module.html
index 6dc6f332..7f3da418 100644
--- a/branch/main/collections/lowlydba/sqlserver/agent_job_category_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/agent_job_category_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/agent_job_module.html b/branch/main/collections/lowlydba/sqlserver/agent_job_module.html
index 3fbf22fa..66cff1e0 100644
--- a/branch/main/collections/lowlydba/sqlserver/agent_job_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/agent_job_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/agent_job_schedule_module.html b/branch/main/collections/lowlydba/sqlserver/agent_job_schedule_module.html
index 8455f97e..84af64dc 100644
--- a/branch/main/collections/lowlydba/sqlserver/agent_job_schedule_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/agent_job_schedule_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/agent_job_step_module.html b/branch/main/collections/lowlydba/sqlserver/agent_job_step_module.html
index dd0964f9..7858fc56 100644
--- a/branch/main/collections/lowlydba/sqlserver/agent_job_step_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/agent_job_step_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/availability_group_module.html b/branch/main/collections/lowlydba/sqlserver/availability_group_module.html
index 8a9f8e44..61d865b1 100644
--- a/branch/main/collections/lowlydba/sqlserver/availability_group_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/availability_group_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/backup_module.html b/branch/main/collections/lowlydba/sqlserver/backup_module.html
index 14033ef8..5240967d 100644
--- a/branch/main/collections/lowlydba/sqlserver/backup_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/backup_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/credential_module.html b/branch/main/collections/lowlydba/sqlserver/credential_module.html
index 67762af6..67cf62a3 100644
--- a/branch/main/collections/lowlydba/sqlserver/credential_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/credential_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/database_module.html b/branch/main/collections/lowlydba/sqlserver/database_module.html
index ab4e163d..589a99c5 100644
--- a/branch/main/collections/lowlydba/sqlserver/database_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/database_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/dba_multitool_module.html b/branch/main/collections/lowlydba/sqlserver/dba_multitool_module.html
index 083f5b90..0abe57c1 100644
--- a/branch/main/collections/lowlydba/sqlserver/dba_multitool_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/dba_multitool_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/first_responder_kit_module.html b/branch/main/collections/lowlydba/sqlserver/first_responder_kit_module.html
index 04b45d9c..1b046d93 100644
--- a/branch/main/collections/lowlydba/sqlserver/first_responder_kit_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/first_responder_kit_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/hadr_module.html b/branch/main/collections/lowlydba/sqlserver/hadr_module.html
index 16e3e159..4fe36d47 100644
--- a/branch/main/collections/lowlydba/sqlserver/hadr_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/hadr_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/index.html b/branch/main/collections/lowlydba/sqlserver/index.html
index 8bcd339d..f93831e2 100644
--- a/branch/main/collections/lowlydba/sqlserver/index.html
+++ b/branch/main/collections/lowlydba/sqlserver/index.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/install_script_module.html b/branch/main/collections/lowlydba/sqlserver/install_script_module.html
index e466747d..fb826ce1 100644
--- a/branch/main/collections/lowlydba/sqlserver/install_script_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/install_script_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/instance_info_module.html b/branch/main/collections/lowlydba/sqlserver/instance_info_module.html
index 199da29b..bf3d966d 100644
--- a/branch/main/collections/lowlydba/sqlserver/instance_info_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/instance_info_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/login_module.html b/branch/main/collections/lowlydba/sqlserver/login_module.html
index 01496e70..46274f6b 100644
--- a/branch/main/collections/lowlydba/sqlserver/login_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/login_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/maintenance_solution_module.html b/branch/main/collections/lowlydba/sqlserver/maintenance_solution_module.html
index f177c229..d21d8b48 100644
--- a/branch/main/collections/lowlydba/sqlserver/maintenance_solution_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/maintenance_solution_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/memory_module.html b/branch/main/collections/lowlydba/sqlserver/memory_module.html
index 6c005c57..4d28dae5 100644
--- a/branch/main/collections/lowlydba/sqlserver/memory_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/memory_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/nonquery_module.html b/branch/main/collections/lowlydba/sqlserver/nonquery_module.html
index f1557b84..ce6971e3 100644
--- a/branch/main/collections/lowlydba/sqlserver/nonquery_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/nonquery_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/resource_governor_module.html b/branch/main/collections/lowlydba/sqlserver/resource_governor_module.html
index 0f95bc84..439fd63c 100644
--- a/branch/main/collections/lowlydba/sqlserver/resource_governor_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/resource_governor_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/restore_module.html b/branch/main/collections/lowlydba/sqlserver/restore_module.html
index 57dba938..7cd4839e 100644
--- a/branch/main/collections/lowlydba/sqlserver/restore_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/restore_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/rg_resource_pool_module.html b/branch/main/collections/lowlydba/sqlserver/rg_resource_pool_module.html
index 8313262d..cc67ab1f 100644
--- a/branch/main/collections/lowlydba/sqlserver/rg_resource_pool_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/rg_resource_pool_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/rg_workload_group_module.html b/branch/main/collections/lowlydba/sqlserver/rg_workload_group_module.html
index 928e6431..06bdae4e 100644
--- a/branch/main/collections/lowlydba/sqlserver/rg_workload_group_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/rg_workload_group_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/sa_module.html b/branch/main/collections/lowlydba/sqlserver/sa_module.html
index e94a51ce..1ec6217d 100644
--- a/branch/main/collections/lowlydba/sqlserver/sa_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/sa_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/sp_configure_module.html b/branch/main/collections/lowlydba/sqlserver/sp_configure_module.html
index 8cd24c5e..056ca5f7 100644
--- a/branch/main/collections/lowlydba/sqlserver/sp_configure_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/sp_configure_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/sp_whoisactive_module.html b/branch/main/collections/lowlydba/sqlserver/sp_whoisactive_module.html
index 57e06e69..46d42a59 100644
--- a/branch/main/collections/lowlydba/sqlserver/sp_whoisactive_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/sp_whoisactive_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/spn_module.html b/branch/main/collections/lowlydba/sqlserver/spn_module.html
index d34bab9f..cb11f947 100644
--- a/branch/main/collections/lowlydba/sqlserver/spn_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/spn_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/tcp_port_module.html b/branch/main/collections/lowlydba/sqlserver/tcp_port_module.html
index b62cf5d6..8c9b0d59 100644
--- a/branch/main/collections/lowlydba/sqlserver/tcp_port_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/tcp_port_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/traceflag_module.html b/branch/main/collections/lowlydba/sqlserver/traceflag_module.html
index 2609b81d..b6511d53 100644
--- a/branch/main/collections/lowlydba/sqlserver/traceflag_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/traceflag_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/collections/lowlydba/sqlserver/user_module.html b/branch/main/collections/lowlydba/sqlserver/user_module.html
index 5f2d8baa..bb5a71f6 100644
--- a/branch/main/collections/lowlydba/sqlserver/user_module.html
+++ b/branch/main/collections/lowlydba/sqlserver/user_module.html
@@ -20,7 +20,7 @@
         <script src="../../../_static/jquery.js?v=5d32c60e"></script>
         <script src="../../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="../../../_static/documentation_options.js?v=7f41d439"></script>
-        <script src="../../../_static/doctools.js?v=888ff710"></script>
+        <script src="../../../_static/doctools.js?v=9a2dae69"></script>
         <script src="../../../_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="../../../_static/js/theme.js"></script>
     <link rel="search" title="Search" href="../../../search.html" />
diff --git a/branch/main/index.html b/branch/main/index.html
index 15ce35cb..ab3af5b2 100644
--- a/branch/main/index.html
+++ b/branch/main/index.html
@@ -19,7 +19,7 @@
         <script src="_static/jquery.js?v=5d32c60e"></script>
         <script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="_static/documentation_options.js?v=7f41d439"></script>
-        <script src="_static/doctools.js?v=888ff710"></script>
+        <script src="_static/doctools.js?v=9a2dae69"></script>
         <script src="_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="_static/js/theme.js"></script>
     <link rel="search" title="Search" href="search.html" />
diff --git a/branch/main/search.html b/branch/main/search.html
index d8601ba4..7669928b 100644
--- a/branch/main/search.html
+++ b/branch/main/search.html
@@ -19,7 +19,7 @@
         <script src="_static/jquery.js?v=5d32c60e"></script>
         <script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
         <script src="_static/documentation_options.js?v=7f41d439"></script>
-        <script src="_static/doctools.js?v=888ff710"></script>
+        <script src="_static/doctools.js?v=9a2dae69"></script>
         <script src="_static/sphinx_highlight.js?v=dc90522c"></script>
     <script src="_static/js/theme.js"></script>
     <script src="_static/searchtools.js"></script>
diff --git a/branch/main/searchindex.js b/branch/main/searchindex.js
index b5afda98..cf69b4e3 100644
--- a/branch/main/searchindex.js
+++ b/branch/main/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"docnames": ["collections/environment_variables", "collections/index", "collections/index_module", "collections/lowlydba/index", "collections/lowlydba/sqlserver/ag_listener_module", "collections/lowlydba/sqlserver/ag_replica_module", "collections/lowlydba/sqlserver/agent_job_category_module", "collections/lowlydba/sqlserver/agent_job_module", "collections/lowlydba/sqlserver/agent_job_schedule_module", "collections/lowlydba/sqlserver/agent_job_step_module", "collections/lowlydba/sqlserver/availability_group_module", "collections/lowlydba/sqlserver/backup_module", "collections/lowlydba/sqlserver/credential_module", "collections/lowlydba/sqlserver/database_module", "collections/lowlydba/sqlserver/dba_multitool_module", "collections/lowlydba/sqlserver/first_responder_kit_module", "collections/lowlydba/sqlserver/hadr_module", "collections/lowlydba/sqlserver/index", "collections/lowlydba/sqlserver/install_script_module", "collections/lowlydba/sqlserver/instance_info_module", "collections/lowlydba/sqlserver/login_module", "collections/lowlydba/sqlserver/maintenance_solution_module", "collections/lowlydba/sqlserver/memory_module", "collections/lowlydba/sqlserver/nonquery_module", "collections/lowlydba/sqlserver/resource_governor_module", "collections/lowlydba/sqlserver/restore_module", "collections/lowlydba/sqlserver/rg_resource_pool_module", "collections/lowlydba/sqlserver/rg_workload_group_module", "collections/lowlydba/sqlserver/sa_module", "collections/lowlydba/sqlserver/sp_configure_module", "collections/lowlydba/sqlserver/sp_whoisactive_module", "collections/lowlydba/sqlserver/spn_module", "collections/lowlydba/sqlserver/tcp_port_module", "collections/lowlydba/sqlserver/traceflag_module", "collections/lowlydba/sqlserver/user_module", "index"], "filenames": ["collections/environment_variables.rst", "collections/index.rst", "collections/index_module.rst", "collections/lowlydba/index.rst", "collections/lowlydba/sqlserver/ag_listener_module.rst", "collections/lowlydba/sqlserver/ag_replica_module.rst", "collections/lowlydba/sqlserver/agent_job_category_module.rst", "collections/lowlydba/sqlserver/agent_job_module.rst", "collections/lowlydba/sqlserver/agent_job_schedule_module.rst", "collections/lowlydba/sqlserver/agent_job_step_module.rst", "collections/lowlydba/sqlserver/availability_group_module.rst", "collections/lowlydba/sqlserver/backup_module.rst", "collections/lowlydba/sqlserver/credential_module.rst", "collections/lowlydba/sqlserver/database_module.rst", "collections/lowlydba/sqlserver/dba_multitool_module.rst", "collections/lowlydba/sqlserver/first_responder_kit_module.rst", "collections/lowlydba/sqlserver/hadr_module.rst", "collections/lowlydba/sqlserver/index.rst", "collections/lowlydba/sqlserver/install_script_module.rst", "collections/lowlydba/sqlserver/instance_info_module.rst", "collections/lowlydba/sqlserver/login_module.rst", "collections/lowlydba/sqlserver/maintenance_solution_module.rst", "collections/lowlydba/sqlserver/memory_module.rst", "collections/lowlydba/sqlserver/nonquery_module.rst", "collections/lowlydba/sqlserver/resource_governor_module.rst", "collections/lowlydba/sqlserver/restore_module.rst", "collections/lowlydba/sqlserver/rg_resource_pool_module.rst", "collections/lowlydba/sqlserver/rg_workload_group_module.rst", "collections/lowlydba/sqlserver/sa_module.rst", "collections/lowlydba/sqlserver/sp_configure_module.rst", "collections/lowlydba/sqlserver/sp_whoisactive_module.rst", "collections/lowlydba/sqlserver/spn_module.rst", "collections/lowlydba/sqlserver/tcp_port_module.rst", "collections/lowlydba/sqlserver/traceflag_module.rst", "collections/lowlydba/sqlserver/user_module.rst", "index.rst"], "titles": ["Index of all Collection Environment Variables", "Collection Index", "Index of all Modules", "Collections in the Lowlydba Namespace", "lowlydba.sqlserver.ag_listener module \u2013 Configures an availability group listener", "lowlydba.sqlserver.ag_replica module \u2013 Configures an availability group replica", "lowlydba.sqlserver.agent_job_category module \u2013 Configures a SQL Agent job category", "lowlydba.sqlserver.agent_job module \u2013 Configures a SQL Agent job", "lowlydba.sqlserver.agent_job_schedule module \u2013 Configures a SQL Agent job schedule", "lowlydba.sqlserver.agent_job_step module \u2013 Configures a SQL Agent job step", "lowlydba.sqlserver.availability_group module \u2013 Configures availability group(s)", "lowlydba.sqlserver.backup module \u2013 Performs a backup operation", "lowlydba.sqlserver.credential module \u2013 Configures a credential on a SQL server", "lowlydba.sqlserver.database module \u2013 Creates and configures a database", "lowlydba.sqlserver.dba_multitool module \u2013 Install/update the DBA Multitool suite by John McCall", "lowlydba.sqlserver.first_responder_kit module \u2013 Install/update the First Responder Kit scripts", "lowlydba.sqlserver.hadr module \u2013 Enable or disable HADR", "Lowlydba.Sqlserver", "lowlydba.sqlserver.install_script module \u2013 Runs migration scripts against a database", "lowlydba.sqlserver.instance_info module \u2013 Returns basic information for a SQL Server instance", "lowlydba.sqlserver.login module \u2013 Configures a login for the target SQL Server instance", "lowlydba.sqlserver.maintenance_solution module \u2013 Install/update Maintenance Solution by Ola Hallengren", "lowlydba.sqlserver.memory module \u2013 Sets the maximum memory for a SQL Server instance", "lowlydba.sqlserver.nonquery module \u2013 Executes a generic nonquery", "lowlydba.sqlserver.resource_governor module \u2013 Configures the resource governor on a SQL Server instance", "lowlydba.sqlserver.restore module \u2013 Performs a restore operation", "lowlydba.sqlserver.rg_resource_pool module \u2013 Configures a resource pool for use by the Resource Governor", "lowlydba.sqlserver.rg_workload_group module \u2013 Configures a workload group for use by the Resource Governor", "lowlydba.sqlserver.sa module \u2013 Configure the <code class=\"docutils literal notranslate\"><span class=\"pre\">sa</span></code> login for security best practices", "lowlydba.sqlserver.sp_configure module \u2013 Make instance level system configuration changes via <code class=\"docutils literal notranslate\"><span class=\"pre\">sp_configure</span></code>", "lowlydba.sqlserver.sp_whoisactive module \u2013 Install/update <code class=\"docutils literal notranslate\"><span class=\"pre\">sp_whoisactive</span></code> by Adam Mechanic", "lowlydba.sqlserver.spn module \u2013 Configures SPNs for SQL Server", "lowlydba.sqlserver.tcp_port module \u2013 Sets the TCP port for the instance", "lowlydba.sqlserver.traceflag module \u2013 Enable or disable global trace flags on a SQL Server instance", "lowlydba.sqlserver.user module \u2013 Configures a user within a database", "Welcome to my Ansible collection documentation"], "terms": {"The": [0, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "follow": [0, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "document": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "declar": 0, "plugin": 0, "us": [0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 28, 29, 30, 31, 32, 33, 34], "ansibl": [0, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "core": [0, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "configur": [0, 2, 17, 21, 22, 23, 25], "ar": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "set": [0, 2, 4, 5, 7, 8, 9, 10, 11, 12, 13, 16, 17, 18, 20, 21, 23, 24, 25, 26, 27, 28, 29, 31, 33], "No": [0, 15], "have": [0, 5, 10, 25], "been": [0, 8, 11], "defin": 0, "These": [1, 3, 17], "here": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "lowlydba": [1, 35], "sqlserver": [1, 3, 35], "ag_listen": [2, 17, 31], "an": [2, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 25, 31, 34], "avail": [2, 13, 16, 17, 25, 27], "group": [2, 13, 17], "listen": [2, 17, 31, 32], "ag_replica": [2, 17], "replica": [2, 10, 13, 17], "agent_job": [2, 8, 9, 17], "sql": [2, 4, 5, 10, 11, 13, 14, 15, 16, 17, 18, 21, 23, 25, 26, 27, 28, 29, 30, 32, 34], "agent": [2, 16, 17, 21, 32], "job": [2, 17, 21], "agent_job_categori": [2, 17], "categori": [2, 7, 17], "agent_job_schedul": [2, 17], "schedul": [2, 7, 17], "agent_job_step": [2, 17], "step": [2, 7, 11, 17], "availability_group": [2, 4, 5, 17], "": [2, 4, 8, 13, 15, 17, 21, 25, 34], "backup": [2, 5, 10, 12, 17, 21, 25, 33], "perform": [2, 9, 17], "oper": [2, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34], "credenti": [2, 11, 16, 17, 25, 31, 32], "server": [2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 21, 23, 25, 26, 27, 28, 29, 30, 32, 34], "databas": [2, 5, 7, 9, 10, 11, 14, 15, 17, 20, 21, 23, 25, 30], "creat": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 17, 18, 20, 21, 25, 26, 27, 31, 34], "dba_multitool": [2, 17], "instal": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 34], "updat": [2, 17, 23, 29], "dba": [2, 17], "multitool": [2, 17, 21], "suit": [2, 17], "john": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 34], "mccall": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 34], "first_responder_kit": [2, 17], "first": [2, 8, 11, 17, 18, 25], "respond": [2, 17], "kit": [2, 17], "script": [2, 14, 17, 25, 30], "hadr": [2, 17], "enabl": [2, 7, 8, 10, 12, 13, 14, 15, 17, 20, 21, 24, 26, 27, 28, 29, 30], "disabl": [2, 7, 8, 17, 20, 24, 28], "install_script": [2, 17], "run": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "migrat": [2, 17, 25], "against": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "instance_info": [2, 17], "return": [2, 17, 23], "basic": [2, 10, 17], "inform": [2, 10, 17, 25, 33], "instanc": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 21, 23, 25, 26, 27, 28, 30, 34], "login": [2, 7, 13, 17, 34], "target": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "maintenance_solut": [2, 17], "mainten": [2, 6, 17, 25], "solut": [2, 17], "ola": [2, 17, 25], "hallengren": [2, 17], "memori": [2, 17, 26, 27], "maximum": [2, 17, 26, 27], "nonqueri": [2, 17], "execut": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "gener": [2, 17], "resource_governor": [2, 17, 26, 27], "resourc": [2, 10, 17], "governor": [2, 17], "restor": [2, 10, 11, 17], "rg_resource_pool": [2, 17, 27], "pool": [2, 17, 27], "rg_workload_group": [2, 17], "workload": [2, 17], "sa": [2, 11, 12, 13, 17], "secur": [2, 17], "best": [2, 17], "practic": [2, 17], "sp_configur": [2, 17], "make": [2, 17], "level": [2, 17, 18, 19], "system": [2, 17], "chang": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34], "via": [2, 8, 11, 17], "sp_whoisact": [2, 17], "adam": [2, 17], "mechan": [2, 17], "spn": [2, 17], "tcp_port": [2, 17], "tcp": [2, 17], "port": [2, 4, 17, 31], "traceflag": [2, 17], "global": [2, 17], "trace": [2, 17], "flag": [2, 16, 17], "user": [2, 7, 12, 17, 20, 23, 28], "within": [2, 11, 17], "thi": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35], "i": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "part": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "version": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "2": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "3": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "It": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "includ": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "To": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "check": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "whether": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "galaxi": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "list": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "you": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "need": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "further": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "abl": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "see": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "detail": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "playbook": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "specifi": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "new": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "0": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "5": [4, 5, 26, 27], "exist": [4, 5, 6, 7, 10, 12, 13, 20, 25, 34], "below": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "host": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "dbatool": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "powershel": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "comment": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "ag_nam": [4, 5, 10, 31], "string": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "name": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "dhcp": 4, "boolean": [4, 5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 24, 25, 28, 30, 32, 33, 34], "indic": [4, 8, 10, 25], "choic": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34], "fals": [4, 5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 24, 25, 28, 30, 32, 33, 34], "default": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 34], "true": [4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 24, 25, 26, 27, 28, 30, 32, 33, 34], "ip_address": [4, 31, 32], "ip": 4, "address": [4, 32], "e": [4, 7, 11], "comma": 4, "separ": [4, 18, 25], "multipl": [4, 11, 25], "listener_nam": [4, 31], "integ": [4, 5, 7, 8, 9, 10, 11, 13, 18, 21, 22, 23, 25, 26, 27, 29, 32, 33], "number": [4, 7, 8, 9, 11, 18, 23, 25, 27, 33], "commun": 4, "1433": [4, 31, 32], "sql_instanc": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34], "modifi": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "sql_password": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34], "password": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "authent": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34], "sql_usernam": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34], "usernam": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "state": [4, 5, 6, 7, 8, 9, 10, 12, 13, 20, 25, 26, 27, 31, 34], "object": [4, 5, 6, 7, 8, 9, 10, 12, 13, 20, 21, 26, 27, 31, 34], "should": [4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 20, 21, 25, 26, 27, 31, 34], "present": [4, 5, 6, 7, 8, 9, 10, 12, 13, 20, 21, 26, 27, 31, 34], "absent": [4, 5, 6, 7, 8, 9, 10, 12, 13, 20, 26, 27, 31, 34], "subnet_ip": [4, 31], "subnet": 4, "subnet_mask": [4, 31], "mask": 4, "255": [4, 31], "support": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "descript": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "check_mod": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "full": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "can": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "statu": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "predict": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "without": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "platform": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "all": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 33, 34, 35], "o": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "famili": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "01": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "myco": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "io": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "ag_mydatabas": [4, 5, 10, 31], "ag": [4, 31], "sql_instance_primari": [4, 5, 31], "aglmydatabas": [4, 31], "10": [4, 15, 31, 32], "20": [4, 31], "1": [4, 6, 7, 8, 9, 11, 12, 13, 20, 21, 22, 23, 24, 26, 27, 29, 30, 31, 32, 33, 34], "77": [4, 31], "252": [4, 31], "common": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "field": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "uniqu": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "kei": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "data": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "dictionari": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "output": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "from": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "add": [4, 5, 9, 13, 31], "dbaaglisten": 4, "function": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "success": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "issu": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "tracker": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "repositori": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "sourc": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "join": 5, "availability_mod": [5, 10], "asynchron": [5, 10], "synchron": [5, 10], "asynchronouscommit": [5, 10], "synchronouscommit": [5, 10], "backup_prior": 5, "prioriti": 5, "50": 5, "cluster_typ": [5, 10], "cluster": [5, 10], "type": [5, 6, 8, 10, 11, 26, 27], "onli": [5, 7, 10, 11, 13, 15, 18, 19, 20, 25, 34], "2017": [5, 10], "abov": [5, 10], "wsfc": [5, 10], "extern": [5, 10, 26, 27], "none": [5, 6, 7, 10, 12], "configure_xe_sess": 5, "alwayson_health": 5, "extend": 5, "event": 5, "session": 5, "start": [5, 8, 9, 25], "automat": [5, 10, 16, 22, 32], "ssm": 5, "wizard": 5, "would": 5, "do": [5, 10], "connection_mode_in_primary_rol": 5, "which": [5, 7, 8, 9, 11, 21, 25], "connect": [5, 18, 29, 31], "made": [5, 10], "when": [5, 7, 8, 11, 13, 20, 21, 25, 28, 34], "primari": [5, 10, 13], "role": [5, 25], "allowreadintentconnectionsonli": 5, "allowallconnect": 5, "connection_mode_in_secondary_rol": 5, "secondari": [5, 10], "allownoconnect": 5, "endpoint": 5, "By": [5, 11, 25], "command": [5, 9, 11, 21], "attempt": [5, 9, 11, 18], "find": 5, "databasemirror": 5, "If": [5, 7, 8, 11, 12, 14, 15, 18, 21, 25, 30], "one": [5, 7, 8, 10, 20], "doe": [5, 6, 10, 18, 23, 33], "hadr_endpoint": 5, "endpoint_url": 5, "properti": [5, 19], "fqdn": 5, "get": [5, 12, 19, 34], "dbaendpoint": 5, "differ": [5, 10], "url": [5, 11, 12], "due": 5, "special": 5, "network": [5, 10], "failover_mod": [5, 10], "manual": [5, 10, 22], "failov": [5, 10], "read_only_routing_connection_url": 5, "read": [5, 13, 19, 29], "rout": 5, "read_only_routing_list": 5, "order": 5, "redirect": 5, "through": [5, 8, 9], "seeding_mod": [5, 10], "seed": [5, 10], "mode": [5, 10, 13, 19], "remain": [5, 10], "otherwis": [5, 10], "setup": [5, 10], "mai": [5, 7, 8, 10], "session_timeout": 5, "how": [5, 10], "mani": 5, "second": [5, 8, 18, 23, 27], "wait": [5, 10, 23, 27], "ping": 5, "respons": 5, "befor": [5, 8, 10, 23, 25], "consid": 5, "fail": [5, 9], "sql_instance_replica": 5, "where": [5, 10, 13, 18, 21], "sql_password_replica": 5, "sql_username_replica": 5, "dr": 5, "02": [5, 8], "dbaagreplica": 5, "els": 6, "noth": 6, "category_typ": 6, "localjob": 6, "multiserverjob": 6, "index": 6, "dbaagentjobcategori": 6, "remov": [6, 7, 8, 9, 12, 13, 20, 26, 27, 31, 34], "belong": 7, "must": [7, 10, 11, 14, 20, 25, 28], "alreadi": [7, 21], "ad": [7, 12, 13, 20, 23, 28, 31, 32, 34], "4": [7, 10, 16, 20, 28], "forc": [7, 8, 9, 10, 12, 14, 15, 16, 21, 30, 32], "ani": [7, 8, 11, 18, 25], "thei": [7, 20, 25, 28], "don": [7, 25], "t": [7, 11, 25], "owner_login": 7, "own": [7, 11], "Will": [7, 18, 31], "current": [7, 8], "being": [7, 13, 18], "suppli": [7, 13, 20, 21], "associ": [7, 8, 12], "per": [7, 28], "start_step_id": 7, "what": [7, 18], "begin": [7, 8], "On": [7, 10], "slower": 7, "hardwar": 7, "stale": 7, "compon": 7, "previou": [7, 18], "each": [7, 8, 18], "etc": 7, "individu": 7, "recommend": 7, "reason": 7, "myjob": [7, 8, 9], "dbaagentjob": 7, "appli": [8, 10], "more": [8, 18], "end_dat": 8, "date": 8, "stop": [8, 11, 25], "end": 8, "99991231": 8, "format": [8, 11, 13, 31], "yyyymmdd": 8, "end_tim": 8, "time": [8, 9, 10, 11, 21, 23, 27], "dai": 8, "hhmmss": 8, "24": 8, "hour": [8, 21], "clock": 8, "23": 8, "59": 8, "option": [8, 11, 14, 15, 21, 24, 25, 30], "ignor": 8, "some": [8, 11], "error": [8, 18, 33], "assum": 8, "also": [8, 18], "same": [8, 19], "specif": 8, "frequency_interv": 8, "allow": [8, 10, 25, 27], "frequency_typ": 8, "daili": 8, "everydai": 8, "between": [8, 9], "365": 8, "inclus": 8, "weekli": 8, "sundai": 8, "mondai": 8, "tuesdai": 8, "wednesdai": 8, "thursdai": 8, "fridai": 8, "saturdai": 8, "weekdai": 8, "weekend": 8, "monthli": 8, "31": 8, "month": 8, "overwrit": 8, "other": 8, "ha": [8, 11], "pass": [8, 25], "frequency_recurrence_factor": 8, "week": 8, "monthlyrel": 8, "frequency_relative_interv": 8, "A": [8, 10, 14, 15, 18, 21, 25, 30], "occurr": [8, 25], "32": 8, "unus": 8, "third": 8, "fourth": 8, "last": [8, 10, 25], "frequency_subday_interv": 8, "subdai": 8, "period": 8, "occur": [8, 25], "frequency_subday_typ": 8, "unit": [8, 11, 25], "minut": [8, 9], "onc": 8, "onetim": 8, "agentstart": 8, "autostart": 8, "idlecomput": 8, "onidl": 8, "http": [8, 12, 14, 30], "doc": [8, 17], "dbaagentschedul": 8, "usag": 8, "start_dat": 8, "start_tim": 8, "00": 8, "dailyschedul": 8, "2020": 8, "05": 8, "25": 8, "2099": 8, "010500": 8, "am": 8, "140030": 8, "30": [8, 18], "pm": 8, "dbaagentjobschedul": 8, "sqlserverag": 9, "servic": [9, 16, 29, 32], "subsystem": 9, "transact": [9, 18, 25], "master": [9, 14], "on_fail_act": 9, "action": 9, "quitwithsuccess": 9, "quitwithfailur": 9, "gotonextstep": 9, "gotostep": 9, "on_fail_step_id": 9, "id": 9, "on_success_act": 9, "succe": 9, "on_success_step_id": 9, "retry_attempt": 9, "retri": 9, "retry_interv": 9, "amount": [9, 27], "step_id": 9, "sequenc": 9, "identif": 9, "increment": [9, 11], "gap": 9, "step_nam": 9, "cmdexec": 9, "distribut": [9, 10, 14, 15, 21, 30], "logread": 9, "merg": 9, "queueread": 9, "snapshot": [9, 13], "ssi": 9, "transactsql": 9, "step1": 9, "truncat": 9, "tabl": [9, 18, 21, 23], "dbo": [9, 18, 23, 34], "testdata": 9, "dbaagentjobstep": 9, "up": [10, 11, 31], "all_ag": 10, "allow_null_backup": 10, "take": [10, 16, 18, 27, 29, 32, 33], "null": [10, 24], "automated_backup_prefer": 10, "handl": [10, 26, 27], "request": [10, 27], "secondaryonli": 10, "basic_availability_group": 10, "alias": 10, "database_nam": [10, 25], "database_health_trigg": 10, "trigger": 10, "health": 10, "dtc_support_en": 10, "dtc": 10, "failure_condition_level": 10, "condit": 10, "onanyqualifiedfailurecondit": 10, "oncriticalservererror": 10, "onmoderateservererror": 10, "onserverdown": 10, "onserverunrespons": 10, "drop": [10, 12, 21], "recreat": [10, 12, 21], "remot": [10, 29], "fresh": 10, "healthcheck_timeout": 10, "length": 10, "millisecond": 10, "dll": 10, "sp_server_diagnost": 10, "store": [10, 15, 18], "procedur": 10, "report": 10, "alwai": [10, 19, 20], "fci": 10, "unrespons": 10, "timeout": [10, 18], "effect": [10, 16, 29, 32], "immedi": [10, 33], "restart": [10, 16, 29, 32, 33], "is_distributed_ag": 10, "shared_path": 10, "share": [10, 12], "back": [10, 11, 18], "sql_instance_secondari": 10, "sql_password_secondari": 10, "sql_username_secondari": 10, "use_last_backup": 10, "log": [10, 11, 13, 18, 21, 25, 33], "dbaavailabilitygroup": 10, "8": 11, "azure_base_url": 11, "base": 11, "contain": [11, 12, 35], "azur": [11, 12, 25, 34], "storag": [11, 12, 25], "account": [11, 12, 20, 31], "write": [11, 21], "azure_credenti": [11, 25], "access": [11, 12, 25], "look": [11, 31], "match": [11, 18], "block_siz": [11, 25], "block": [11, 25], "size": [11, 25], "5kb": [11, 25], "1kb": [11, 25], "2kb": [11, 25], "4kb": [11, 25], "8kb": [11, 25], "16kb": [11, 25], "32kb": [11, 25], "64kb": [11, 25], "buffer_count": [11, 25], "buffer": [11, 25, 27], "build_path": 11, "miss": [11, 18], "path": [11, 14, 15, 18, 21, 25, 30], "switch": [11, 12, 14, 15, 21, 25, 30], "behaviour": [11, 25], "so": [11, 13], "checksum": 11, "calcul": [11, 22], "compress": 11, "edit": 11, "copy_onli": 11, "copyonli": 11, "create_fold": 11, "its": [11, 25], "subfold": 11, "process": [11, 18, 25], "encryption_algorithm": 11, "encrypt": 11, "algorithm": 11, "aes128": 11, "aes192": 11, "aes256": 11, "tripled": 11, "encryption_certif": 11, "certif": 11, "file_count": 11, "stripe": 11, "file": [11, 13, 14, 15, 18, 21, 25, 30], "file_path": 11, "databasename_yyyymmddhhmm": 11, "database1_201714022131": 11, "ignore_file_check": 11, "valid": [11, 13], "increment_prefix": 11, "prefix": [11, 25], "ie": 11, "alleg": 11, "improv": 11, "initi": 11, "media": 11, "max_transfer_s": [11, 25], "transfer": [11, 25], "no_recoveri": [11, 25], "tail": 11, "place": [11, 13, 25], "locat": [11, 21, 25], "sqlinstanc": 11, "replace_in_nam": 11, "replac": [11, 12, 25], "filepath": 11, "instancenam": 11, "servernam": 11, "dbname": 11, "timestamp": 11, "either": [11, 30], "provid": [11, 12, 18, 20, 29, 31], "backuptyp": 11, "differenti": [11, 25], "appropri": 11, "timestamp_format": 11, "yyyymmddhhmm": 11, "overridden": 11, "diff": 11, "verifi": [11, 25], "verifyonli": 11, "with_format": 11, "dir": 11, "lowlydb": [11, 13, 25, 30], "dbadatabas": [11, 13, 25], "ident": 12, "mapped_class_typ": 12, "class": 12, "cryptographicprovid": 12, "provider_nam": 12, "cryptograph": 12, "enterpris": 12, "manag": 12, "mycredenti": 12, "myident": 12, "token": 12, "signatur": 12, "blob": 12, "window": [12, 16, 20, 31, 32], "net": 12, "dbadbcredenti": 12, "joe": 12, "krilov": 12, "joey40": 12, "compat": 13, "version90": 13, "version100": 13, "dbadbcompat": 13, "data_file_path": 13, "directori": [13, 18, 21, 25, 31], "log_file_path": 13, "maxdop": [13, 27], "only_access": 13, "commit": 13, "isol": 13, "owner": 13, "rcsi": 13, "recovery_model": 13, "choos": [13, 18], "recoveri": [13, 16], "model": 13, "simpl": 13, "bulklog": 13, "secondary_maxdop": 13, "non": [13, 32], "custom": 13, "7": 14, "wrapper": [14, 15, 21, 30], "dbamultitool": 14, "fetch": [14, 15, 21, 30], "latest": [14, 15, 21, 25, 30], "local": [14, 15, 21, 30], "cach": [14, 15, 21, 30], "branch": [14, 15], "altern": [14, 15, 16, 32], "develop": 14, "download": [14, 15, 21, 30], "internet": [14, 15, 21, 30], "even": [14, 15, 21, 30], "previous": [14, 15, 21, 30], "local_fil": [14, 15, 21, 30], "zip": [14, 15, 21, 30], "maintain": [14, 15, 17, 21], "github": [14, 15, 17, 21, 30], "com": [14, 15, 17, 18, 30], "2005": 14, "higher": 14, "test": [14, 15, 18], "my": [14, 15, 18], "compani": [14, 15, 18], "dba_tool": [14, 15], "dbafirstresponderkit": 15, "main": [15, 21], "dev": [15, 34], "frk": 15, "only_script": 15, "wildcard": 15, "permit": 15, "wai": 15, "blitz": 15, "queri": [15, 23, 26, 27], "With": 15, "sp_blitz": 15, "sp_blitzfirst": 15, "sp_blitzindex": 15, "sp_blitzcach": 15, "sp_blitzwho": 15, "sp_blitzquerystor": 15, "sp_blitzanalysi": 15, "sp_blitzbackup": 15, "sp_blitzinmemoryoltp": 15, "sp_blitzlock": 15, "sp_allnightlog": 15, "sp_allnightlog_setup": 15, "sp_databaserestor": 15, "sp_ineachdb": 15, "sqlserververs": 15, "uninstal": 15, "high": [16, 27], "disast": 16, "featur": [16, 24], "dbaaghadr": 16, "restartrequir": [16, 29, 32], "collect": 17, "author": 17, "12": 17, "newer": 17, "11": 18, "dbop": 18, "installscript": 18, "connection_timeout": 18, "affect": [18, 33], "create_databas": 18, "empti": 18, "deployment_method": 18, "singletransact": 18, "wrap": 18, "deploy": 18, "singl": [18, 27], "rollback": 18, "whole": 18, "transactionperscript": 18, "case": 18, "notransact": 18, "deploi": 18, "alwaysrollback": 18, "roll": 18, "execution_timeout": 18, "abort": 18, "than": 18, "regex": 18, "verif": 18, "no_log_vers": 18, "track": 18, "That": 18, "mean": 18, "build": 18, "packag": 18, "go": 18, "regardless": [18, 19], "histori": 18, "no_recurs": 18, "output_fil": 18, "schema_version_t": 18, "hold": 18, "dure": 18, "prevent": [18, 25], "execur": 18, "twice": 18, "adventurework": 18, "dboscript": 18, "info": 19, "default_databas": 20, "languag": 20, "password_expiration_en": [20, 28], "enforc": [20, 28], "expir": [20, 28], "polici": [20, 28], "password_policy_enforc": [20, 28], "password_must_chang": [20, 28], "next": [20, 28], "complex": [20, 28], "sid": 20, "explicit": 20, "skip_password_reset": 20, "skip": [20, 25], "reset": [20, 28], "theintern": [20, 34], "reallycomplexstuff12345": 20, "dbalogin": [20, 28], "dbamaintenancesolut": 21, "backup_loc": 21, "root": 21, "cleanup_tim": 21, "after": [21, 25, 33], "delet": 21, "install_job": 21, "correspond": 21, "install_parallel": 21, "queue": 21, "queuedatabas": 21, "databasesinparallel": 21, "y": 21, "log_to_t": 21, "output_file_dir": 21, "replace_exist": 21, "portion": 21, "integritycheck": 21, "indexoptim": 21, "maintenancesolut": 21, "max": 22, "mb": 22, "util": 22, "ideal": [22, 23], "10240": 22, "dbamaxmemori": 22, "resultset": 23, "hoc": 23, "dml": 23, "query_timeout": 23, "out": 23, "60": 23, "valu": 23, "userdb": 23, "isact": 23, "classifi": 24, "classifier_funct": 24, "clear": 24, "dbaresourcegovernor": 24, "9": 25, "destination_data_directori": 25, "destination_file_prefix": 25, "destination_file_suffix": 25, "suffix": 25, "destination_filestream_directori": 25, "filestream": 25, "alongsid": 25, "destination_log_directori": 25, "directory_recurs": 25, "recurs": 25, "overrid": 25, "ignore_diff_backup": 25, "ignore_log_backup": 25, "keep_cdc": 25, "cdc": 25, "keep_repl": 25, "replic": 25, "maintenance_solution_backup": 25, "folder": 25, "structur": 25, "hallengreen": 25, "faster": 25, "pars": 25, "recov": 25, "no_xp_dir_recurs": 25, "xpdirtre": 25, "scan": 25, "desir": 25, "method": 25, "accept": 25, "replace_db_name_in_fil": 25, "origin": 25, "restore_tim": 25, "datetim": 25, "hh": 25, "mm": 25, "ss": 25, "dd": 25, "yyyi": 25, "want": [25, 31], "point": 25, "restored_database_name_prefix": 25, "reuse_source_folder_structur": 25, "destin": 25, "standby_directori": 25, "standbi": 25, "writabl": 25, "stop_after_d": 25, "stop_mark": 25, "found": 25, "chain": 25, "caus": 25, "stop_befor": 25, "mark": 25, "use_destination_default_directori": 25, "tell": 25, "try": 25, "them": 25, "verify_onli": 25, "with_replac": 25, "xp_dirtre": 25, "sysadmin": 25, "membership": 25, "work": [25, 27], "futur": 25, "lowlydb1": 25, "lowlydb2": 25, "themselv": [26, 27], "cap_cpu_perc": 26, "cap": 26, "cpu": [26, 27], "percentag": 26, "max_cpu_perc": [26, 27], "max_iops_per_vol": 26, "iop": 26, "volum": 26, "max_mem_perc": 26, "min_cpu_perc": 26, "minimum": 26, "min_iops_per_vol": 26, "min_mem_perc": 26, "resource_pool": [26, 27], "intern": [26, 27], "rg": [26, 27], "rplittl": [26, 27], "dbargresourcepool": 26, "group_max_request": 27, "simultan": 27, "import": 27, "rel": 27, "low": 27, "medium": 27, "max_dop": 27, "degre": 27, "parallel": 27, "request_max_cpu_tim": 27, "request_max_mem_grant_perc": 27, "request_mem_grant_timeout_sec": 27, "grant": 27, "becom": 27, "resource_pool_typ": 27, "workload_group": 27, "rgmygroup": 27, "dbargworkloadgroup": 27, "renam": 28, "new_nam": 28, "notthesayourelookingfor": 28, "given": 29, "dac": 29, "remotedacconnectionsen": 29, "dbaspconfigur": 29, "sudhir": [29, 33], "koduri": [29, 33], "kodurisudhir": [29, 33], "dbawhoisact": 30, "websit": 30, "expand": 30, "amachan": 30, "releas": 30, "6": 31, "comput": 31, "alia": 31, "computer_password": 31, "activ": 31, "computer_usernam": 31, "service_account": 31, "svc": 31, "dbaspn": 31, "ipv4": 32, "standard": 32, "1933": 32, "dbatcpport": 32, "persist": 33, "trace_flag": 33, "elimin": 33, "3226": 33, "dbatraceflag": 33, "default_schema": 34, "schema": 34, "external_provid": 34, "cannot": 34, "map": 34, "internproject1": 34, "dbadbus": 34, "docsit": 35, "modul": 35, "environ": 35, "variabl": 35}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"index": [0, 1, 2, 17, 35], "all": [0, 2], "collect": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35], "environ": 0, "variabl": 0, "modul": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "lowlydba": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "sqlserver": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "namespac": 3, "ag_listen": 4, "configur": [4, 5, 6, 7, 8, 9, 10, 12, 13, 20, 24, 26, 27, 28, 29, 31, 34], "an": [4, 5], "avail": [4, 5, 10], "group": [4, 5, 10, 27], "listen": 4, "synopsi": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "requir": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "paramet": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "attribut": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "exampl": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "return": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "valu": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "author": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "link": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "ag_replica": 5, "replica": 5, "agent_job_categori": 6, "sql": [6, 7, 8, 9, 12, 19, 20, 22, 24, 31, 33], "agent": [6, 7, 8, 9], "job": [6, 7, 8, 9], "categori": 6, "agent_job": 7, "note": [7, 20], "agent_job_schedul": 8, "schedul": 8, "agent_job_step": 9, "step": 9, "availability_group": 10, "": 10, "backup": 11, "perform": [11, 25], "oper": [11, 25], "credenti": 12, "server": [12, 19, 20, 22, 24, 31, 33], "databas": [13, 18, 34], "creat": 13, "dba_multitool": 14, "instal": [14, 15, 21, 30], "updat": [14, 15, 21, 30], "dba": 14, "multitool": 14, "suit": 14, "john": 14, "mccall": 14, "first_responder_kit": 15, "first": 15, "respond": 15, "kit": 15, "script": [15, 18], "hadr": 16, "enabl": [16, 33], "disabl": [16, 33], "descript": 17, "plugin": [17, 35], "install_script": 18, "run": 18, "migrat": 18, "against": 18, "instance_info": 19, "basic": 19, "inform": 19, "instanc": [19, 20, 22, 24, 29, 32, 33], "login": [20, 28], "target": 20, "maintenance_solut": 21, "mainten": 21, "solut": 21, "ola": 21, "hallengren": 21, "memori": 22, "set": [22, 32], "maximum": 22, "nonqueri": 23, "execut": 23, "gener": 23, "resource_governor": 24, "resourc": [24, 26, 27], "governor": [24, 26, 27], "restor": 25, "rg_resource_pool": 26, "pool": 26, "us": [26, 27], "rg_workload_group": 27, "workload": 27, "sa": 28, "secur": 28, "best": 28, "practic": 28, "sp_configur": 29, "make": 29, "level": 29, "system": 29, "chang": 29, "via": 29, "sp_whoisact": 30, "adam": 30, "mechan": 30, "spn": 31, "tcp_port": 32, "tcp": 32, "port": 32, "traceflag": 33, "global": 33, "trace": 33, "flag": 33, "user": 34, "within": 34, "welcom": 35, "my": 35, "ansibl": 35, "document": 35, "refer": 35}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx": 60}, "alltitles": {"Index of all Collection Environment Variables": [[0, "index-of-all-collection-environment-variables"]], "Collection Index": [[1, "collection-index"]], "Index of all Modules": [[2, "index-of-all-modules"]], "lowlydba.sqlserver": [[2, "lowlydba-sqlserver"]], "Collections in the Lowlydba Namespace": [[3, "collections-in-the-lowlydba-namespace"]], "lowlydba.sqlserver.ag_listener module \u2013 Configures an availability group listener": [[4, "lowlydba-sqlserver-ag-listener-module-configures-an-availability-group-listener"]], "Synopsis": [[4, "synopsis"], [5, "synopsis"], [6, "synopsis"], [7, "synopsis"], [8, "synopsis"], [9, "synopsis"], [10, "synopsis"], [11, "synopsis"], [12, "synopsis"], [13, "synopsis"], [14, "synopsis"], [15, "synopsis"], [16, "synopsis"], [18, "synopsis"], [19, "synopsis"], [20, "synopsis"], [21, "synopsis"], [22, "synopsis"], [23, "synopsis"], [24, "synopsis"], [25, "synopsis"], [26, "synopsis"], [27, "synopsis"], [28, "synopsis"], [29, "synopsis"], [30, "synopsis"], [31, "synopsis"], [32, "synopsis"], [33, "synopsis"], [34, "synopsis"]], "Requirements": [[4, "requirements"], [5, "requirements"], [6, "requirements"], [7, "requirements"], [8, "requirements"], [9, "requirements"], [10, "requirements"], [11, "requirements"], [12, "requirements"], [13, "requirements"], [14, "requirements"], [15, "requirements"], [16, "requirements"], [18, "requirements"], [19, "requirements"], [20, "requirements"], [21, "requirements"], [22, "requirements"], [23, "requirements"], [24, "requirements"], [25, "requirements"], [26, "requirements"], [27, "requirements"], [28, "requirements"], [29, "requirements"], [30, "requirements"], [31, "requirements"], [32, "requirements"], [33, "requirements"], [34, "requirements"]], "Parameters": [[4, "parameters"], [5, "parameters"], [6, "parameters"], [7, "parameters"], [8, "parameters"], [9, "parameters"], [10, "parameters"], [11, "parameters"], [12, "parameters"], [13, "parameters"], [14, "parameters"], [15, "parameters"], [16, "parameters"], [18, "parameters"], [19, "parameters"], [20, "parameters"], [21, "parameters"], [22, "parameters"], [23, "parameters"], [24, "parameters"], [25, "parameters"], [26, "parameters"], [27, "parameters"], [28, "parameters"], [29, "parameters"], [30, "parameters"], [31, "parameters"], [32, "parameters"], [33, "parameters"], [34, "parameters"]], "Attributes": [[4, "attributes"], [5, "attributes"], [6, "attributes"], [7, "attributes"], [8, "attributes"], [9, "attributes"], [10, "attributes"], [11, "attributes"], [12, "attributes"], [13, "attributes"], [14, "attributes"], [15, "attributes"], [16, "attributes"], [18, "attributes"], [19, "attributes"], [20, "attributes"], [21, "attributes"], [22, "attributes"], [23, "attributes"], [24, "attributes"], [25, "attributes"], [26, "attributes"], [27, "attributes"], [28, "attributes"], [29, "attributes"], [30, "attributes"], [31, "attributes"], [32, "attributes"], [33, "attributes"], [34, "attributes"]], "Examples": [[4, "examples"], [5, "examples"], [6, "examples"], [7, "examples"], [8, "examples"], [9, "examples"], [10, "examples"], [11, "examples"], [12, "examples"], [13, "examples"], [14, "examples"], [15, "examples"], [16, "examples"], [18, "examples"], [19, "examples"], [20, "examples"], [21, "examples"], [22, "examples"], [23, "examples"], [24, "examples"], [25, "examples"], [26, "examples"], [27, "examples"], [28, "examples"], [29, "examples"], [30, "examples"], [31, "examples"], [32, "examples"], [33, "examples"], [34, "examples"]], "Return Values": [[4, "return-values"], [5, "return-values"], [6, "return-values"], [7, "return-values"], [8, "return-values"], [9, "return-values"], [10, "return-values"], [11, "return-values"], [12, "return-values"], [13, "return-values"], [14, "return-values"], [15, "return-values"], [16, "return-values"], [18, "return-values"], [19, "return-values"], [20, "return-values"], [21, "return-values"], [22, "return-values"], [24, "return-values"], [25, "return-values"], [26, "return-values"], [27, "return-values"], [28, "return-values"], [29, "return-values"], [30, "return-values"], [31, "return-values"], [32, "return-values"], [33, "return-values"], [34, "return-values"]], "Authors": [[4, "authors"], [5, "authors"], [6, "authors"], [7, "authors"], [8, "authors"], [9, "authors"], [10, "authors"], [11, "authors"], [12, "authors"], [13, "authors"], [14, "authors"], [15, "authors"], [16, "authors"], [18, "authors"], [19, "authors"], [20, "authors"], [21, "authors"], [22, "authors"], [23, "authors"], [24, "authors"], [25, "authors"], [26, "authors"], [27, "authors"], [28, "authors"], [29, "authors"], [30, "authors"], [31, "authors"], [32, "authors"], [33, "authors"], [34, "authors"]], "Collection links": [[4, "collection-links"], [5, "collection-links"], [6, "collection-links"], [7, "collection-links"], [8, "collection-links"], [9, "collection-links"], [10, "collection-links"], [11, "collection-links"], [12, "collection-links"], [13, "collection-links"], [14, "collection-links"], [15, "collection-links"], [16, "collection-links"], [18, "collection-links"], [19, "collection-links"], [20, "collection-links"], [21, "collection-links"], [22, "collection-links"], [23, "collection-links"], [24, "collection-links"], [25, "collection-links"], [26, "collection-links"], [27, "collection-links"], [28, "collection-links"], [29, "collection-links"], [30, "collection-links"], [31, "collection-links"], [32, "collection-links"], [33, "collection-links"], [34, "collection-links"]], "lowlydba.sqlserver.ag_replica module \u2013 Configures an availability group replica": [[5, "lowlydba-sqlserver-ag-replica-module-configures-an-availability-group-replica"]], "lowlydba.sqlserver.agent_job_category module \u2013 Configures a SQL Agent job category": [[6, "lowlydba-sqlserver-agent-job-category-module-configures-a-sql-agent-job-category"]], "lowlydba.sqlserver.agent_job module \u2013 Configures a SQL Agent job": [[7, "lowlydba-sqlserver-agent-job-module-configures-a-sql-agent-job"]], "Notes": [[7, "notes"], [20, "notes"]], "lowlydba.sqlserver.agent_job_schedule module \u2013 Configures a SQL Agent job schedule": [[8, "lowlydba-sqlserver-agent-job-schedule-module-configures-a-sql-agent-job-schedule"]], "lowlydba.sqlserver.agent_job_step module \u2013 Configures a SQL Agent job step": [[9, "lowlydba-sqlserver-agent-job-step-module-configures-a-sql-agent-job-step"]], "lowlydba.sqlserver.availability_group module \u2013 Configures availability group(s)": [[10, "lowlydba-sqlserver-availability-group-module-configures-availability-group-s"]], "lowlydba.sqlserver.backup module \u2013 Performs a backup operation": [[11, "lowlydba-sqlserver-backup-module-performs-a-backup-operation"]], "lowlydba.sqlserver.credential module \u2013 Configures a credential on a SQL server": [[12, "lowlydba-sqlserver-credential-module-configures-a-credential-on-a-sql-server"]], "lowlydba.sqlserver.database module \u2013 Creates and configures a database": [[13, "lowlydba-sqlserver-database-module-creates-and-configures-a-database"]], "lowlydba.sqlserver.dba_multitool module \u2013 Install/update the DBA Multitool suite by John McCall": [[14, "lowlydba-sqlserver-dba-multitool-module-install-update-the-dba-multitool-suite-by-john-mccall"]], "lowlydba.sqlserver.first_responder_kit module \u2013 Install/update the First Responder Kit scripts": [[15, "lowlydba-sqlserver-first-responder-kit-module-install-update-the-first-responder-kit-scripts"]], "lowlydba.sqlserver.hadr module \u2013 Enable or disable HADR": [[16, "lowlydba-sqlserver-hadr-module-enable-or-disable-hadr"]], "Lowlydba.Sqlserver": [[17, "lowlydba-sqlserver"]], "Description": [[17, "description"]], "Plugin Index": [[17, "plugin-index"]], "Modules": [[17, "modules"]], "lowlydba.sqlserver.install_script module \u2013 Runs migration scripts against a database": [[18, "lowlydba-sqlserver-install-script-module-runs-migration-scripts-against-a-database"]], "lowlydba.sqlserver.instance_info module \u2013 Returns basic information for a SQL Server instance": [[19, "lowlydba-sqlserver-instance-info-module-returns-basic-information-for-a-sql-server-instance"]], "lowlydba.sqlserver.login module \u2013 Configures a login for the target SQL Server instance": [[20, "lowlydba-sqlserver-login-module-configures-a-login-for-the-target-sql-server-instance"]], "lowlydba.sqlserver.maintenance_solution module \u2013 Install/update Maintenance Solution by Ola Hallengren": [[21, "lowlydba-sqlserver-maintenance-solution-module-install-update-maintenance-solution-by-ola-hallengren"]], "lowlydba.sqlserver.memory module \u2013 Sets the maximum memory for a SQL Server instance": [[22, "lowlydba-sqlserver-memory-module-sets-the-maximum-memory-for-a-sql-server-instance"]], "lowlydba.sqlserver.nonquery module \u2013 Executes a generic nonquery": [[23, "lowlydba-sqlserver-nonquery-module-executes-a-generic-nonquery"]], "lowlydba.sqlserver.resource_governor module \u2013 Configures the resource governor on a SQL Server instance": [[24, "lowlydba-sqlserver-resource-governor-module-configures-the-resource-governor-on-a-sql-server-instance"]], "lowlydba.sqlserver.restore module \u2013 Performs a restore operation": [[25, "lowlydba-sqlserver-restore-module-performs-a-restore-operation"]], "lowlydba.sqlserver.rg_resource_pool module \u2013 Configures a resource pool for use by the Resource Governor": [[26, "lowlydba-sqlserver-rg-resource-pool-module-configures-a-resource-pool-for-use-by-the-resource-governor"]], "lowlydba.sqlserver.rg_workload_group module \u2013 Configures a workload group for use by the Resource Governor": [[27, "lowlydba-sqlserver-rg-workload-group-module-configures-a-workload-group-for-use-by-the-resource-governor"]], "lowlydba.sqlserver.sa module \u2013 Configure the sa login for security best practices": [[28, "lowlydba-sqlserver-sa-module-configure-the-sa-login-for-security-best-practices"]], "lowlydba.sqlserver.sp_configure module \u2013 Make instance level system configuration changes via sp_configure": [[29, "lowlydba-sqlserver-sp-configure-module-make-instance-level-system-configuration-changes-via-sp-configure"]], "lowlydba.sqlserver.sp_whoisactive module \u2013 Install/update sp_whoisactive by Adam Mechanic": [[30, "lowlydba-sqlserver-sp-whoisactive-module-install-update-sp-whoisactive-by-adam-mechanic"]], "lowlydba.sqlserver.spn module \u2013 Configures SPNs for SQL Server": [[31, "lowlydba-sqlserver-spn-module-configures-spns-for-sql-server"]], "lowlydba.sqlserver.tcp_port module \u2013 Sets the TCP port for the instance": [[32, "lowlydba-sqlserver-tcp-port-module-sets-the-tcp-port-for-the-instance"]], "lowlydba.sqlserver.traceflag module \u2013 Enable or disable global trace flags on a SQL Server instance": [[33, "lowlydba-sqlserver-traceflag-module-enable-or-disable-global-trace-flags-on-a-sql-server-instance"]], "lowlydba.sqlserver.user module \u2013 Configures a user within a database": [[34, "lowlydba-sqlserver-user-module-configures-a-user-within-a-database"]], "Welcome to my Ansible collection documentation": [[35, "welcome-to-my-ansible-collection-documentation"]], "Collections:": [[35, null]], "Plugin indexes:": [[35, null]], "Reference indexes:": [[35, null]]}, "indexentries": {}})
\ No newline at end of file
+Search.setIndex({"alltitles": {"Attributes": [[4, "attributes"], [5, "attributes"], [6, "attributes"], [7, "attributes"], [8, "attributes"], [9, "attributes"], [10, "attributes"], [11, "attributes"], [12, "attributes"], [13, "attributes"], [14, "attributes"], [15, "attributes"], [16, "attributes"], [18, "attributes"], [19, "attributes"], [20, "attributes"], [21, "attributes"], [22, "attributes"], [23, "attributes"], [24, "attributes"], [25, "attributes"], [26, "attributes"], [27, "attributes"], [28, "attributes"], [29, "attributes"], [30, "attributes"], [31, "attributes"], [32, "attributes"], [33, "attributes"], [34, "attributes"]], "Authors": [[4, "authors"], [5, "authors"], [6, "authors"], [7, "authors"], [8, "authors"], [9, "authors"], [10, "authors"], [11, "authors"], [12, "authors"], [13, "authors"], [14, "authors"], [15, "authors"], [16, "authors"], [18, "authors"], [19, "authors"], [20, "authors"], [21, "authors"], [22, "authors"], [23, "authors"], [24, "authors"], [25, "authors"], [26, "authors"], [27, "authors"], [28, "authors"], [29, "authors"], [30, "authors"], [31, "authors"], [32, "authors"], [33, "authors"], [34, "authors"]], "Collection Index": [[1, "collection-index"]], "Collection links": [[4, "collection-links"], [5, "collection-links"], [6, "collection-links"], [7, "collection-links"], [8, "collection-links"], [9, "collection-links"], [10, "collection-links"], [11, "collection-links"], [12, "collection-links"], [13, "collection-links"], [14, "collection-links"], [15, "collection-links"], [16, "collection-links"], [18, "collection-links"], [19, "collection-links"], [20, "collection-links"], [21, "collection-links"], [22, "collection-links"], [23, "collection-links"], [24, "collection-links"], [25, "collection-links"], [26, "collection-links"], [27, "collection-links"], [28, "collection-links"], [29, "collection-links"], [30, "collection-links"], [31, "collection-links"], [32, "collection-links"], [33, "collection-links"], [34, "collection-links"]], "Collections in the Lowlydba Namespace": [[3, "collections-in-the-lowlydba-namespace"]], "Collections:": [[35, null]], "Description": [[17, "description"]], "Examples": [[4, "examples"], [5, "examples"], [6, "examples"], [7, "examples"], [8, "examples"], [9, "examples"], [10, "examples"], [11, "examples"], [12, "examples"], [13, "examples"], [14, "examples"], [15, "examples"], [16, "examples"], [18, "examples"], [19, "examples"], [20, "examples"], [21, "examples"], [22, "examples"], [23, "examples"], [24, "examples"], [25, "examples"], [26, "examples"], [27, "examples"], [28, "examples"], [29, "examples"], [30, "examples"], [31, "examples"], [32, "examples"], [33, "examples"], [34, "examples"]], "Index of all Collection Environment Variables": [[0, "index-of-all-collection-environment-variables"]], "Index of all Modules": [[2, "index-of-all-modules"]], "Lowlydba.Sqlserver": [[17, "lowlydba-sqlserver"]], "Modules": [[17, "modules"]], "Notes": [[7, "notes"], [20, "notes"]], "Parameters": [[4, "parameters"], [5, "parameters"], [6, "parameters"], [7, "parameters"], [8, "parameters"], [9, "parameters"], [10, "parameters"], [11, "parameters"], [12, "parameters"], [13, "parameters"], [14, "parameters"], [15, "parameters"], [16, "parameters"], [18, "parameters"], [19, "parameters"], [20, "parameters"], [21, "parameters"], [22, "parameters"], [23, "parameters"], [24, "parameters"], [25, "parameters"], [26, "parameters"], [27, "parameters"], [28, "parameters"], [29, "parameters"], [30, "parameters"], [31, "parameters"], [32, "parameters"], [33, "parameters"], [34, "parameters"]], "Plugin Index": [[17, "plugin-index"]], "Plugin indexes:": [[35, null]], "Reference indexes:": [[35, null]], "Requirements": [[4, "requirements"], [5, "requirements"], [6, "requirements"], [7, "requirements"], [8, "requirements"], [9, "requirements"], [10, "requirements"], [11, "requirements"], [12, "requirements"], [13, "requirements"], [14, "requirements"], [15, "requirements"], [16, "requirements"], [18, "requirements"], [19, "requirements"], [20, "requirements"], [21, "requirements"], [22, "requirements"], [23, "requirements"], [24, "requirements"], [25, "requirements"], [26, "requirements"], [27, "requirements"], [28, "requirements"], [29, "requirements"], [30, "requirements"], [31, "requirements"], [32, "requirements"], [33, "requirements"], [34, "requirements"]], "Return Values": [[4, "return-values"], [5, "return-values"], [6, "return-values"], [7, "return-values"], [8, "return-values"], [9, "return-values"], [10, "return-values"], [11, "return-values"], [12, "return-values"], [13, "return-values"], [14, "return-values"], [15, "return-values"], [16, "return-values"], [18, "return-values"], [19, "return-values"], [20, "return-values"], [21, "return-values"], [22, "return-values"], [24, "return-values"], [25, "return-values"], [26, "return-values"], [27, "return-values"], [28, "return-values"], [29, "return-values"], [30, "return-values"], [31, "return-values"], [32, "return-values"], [33, "return-values"], [34, "return-values"]], "Synopsis": [[4, "synopsis"], [5, "synopsis"], [6, "synopsis"], [7, "synopsis"], [8, "synopsis"], [9, "synopsis"], [10, "synopsis"], [11, "synopsis"], [12, "synopsis"], [13, "synopsis"], [14, "synopsis"], [15, "synopsis"], [16, "synopsis"], [18, "synopsis"], [19, "synopsis"], [20, "synopsis"], [21, "synopsis"], [22, "synopsis"], [23, "synopsis"], [24, "synopsis"], [25, "synopsis"], [26, "synopsis"], [27, "synopsis"], [28, "synopsis"], [29, "synopsis"], [30, "synopsis"], [31, "synopsis"], [32, "synopsis"], [33, "synopsis"], [34, "synopsis"]], "Welcome to my Ansible collection documentation": [[35, "welcome-to-my-ansible-collection-documentation"]], "lowlydba.sqlserver": [[2, "lowlydba-sqlserver"]], "lowlydba.sqlserver.ag_listener module \u2013 Configures an availability group listener": [[4, "lowlydba-sqlserver-ag-listener-module-configures-an-availability-group-listener"]], "lowlydba.sqlserver.ag_replica module \u2013 Configures an availability group replica": [[5, "lowlydba-sqlserver-ag-replica-module-configures-an-availability-group-replica"]], "lowlydba.sqlserver.agent_job module \u2013 Configures a SQL Agent job": [[7, "lowlydba-sqlserver-agent-job-module-configures-a-sql-agent-job"]], "lowlydba.sqlserver.agent_job_category module \u2013 Configures a SQL Agent job category": [[6, "lowlydba-sqlserver-agent-job-category-module-configures-a-sql-agent-job-category"]], "lowlydba.sqlserver.agent_job_schedule module \u2013 Configures a SQL Agent job schedule": [[8, "lowlydba-sqlserver-agent-job-schedule-module-configures-a-sql-agent-job-schedule"]], "lowlydba.sqlserver.agent_job_step module \u2013 Configures a SQL Agent job step": [[9, "lowlydba-sqlserver-agent-job-step-module-configures-a-sql-agent-job-step"]], "lowlydba.sqlserver.availability_group module \u2013 Configures availability group(s)": [[10, "lowlydba-sqlserver-availability-group-module-configures-availability-group-s"]], "lowlydba.sqlserver.backup module \u2013 Performs a backup operation": [[11, "lowlydba-sqlserver-backup-module-performs-a-backup-operation"]], "lowlydba.sqlserver.credential module \u2013 Configures a credential on a SQL server": [[12, "lowlydba-sqlserver-credential-module-configures-a-credential-on-a-sql-server"]], "lowlydba.sqlserver.database module \u2013 Creates and configures a database": [[13, "lowlydba-sqlserver-database-module-creates-and-configures-a-database"]], "lowlydba.sqlserver.dba_multitool module \u2013 Install/update the DBA Multitool suite by John McCall": [[14, "lowlydba-sqlserver-dba-multitool-module-install-update-the-dba-multitool-suite-by-john-mccall"]], "lowlydba.sqlserver.first_responder_kit module \u2013 Install/update the First Responder Kit scripts": [[15, "lowlydba-sqlserver-first-responder-kit-module-install-update-the-first-responder-kit-scripts"]], "lowlydba.sqlserver.hadr module \u2013 Enable or disable HADR": [[16, "lowlydba-sqlserver-hadr-module-enable-or-disable-hadr"]], "lowlydba.sqlserver.install_script module \u2013 Runs migration scripts against a database": [[18, "lowlydba-sqlserver-install-script-module-runs-migration-scripts-against-a-database"]], "lowlydba.sqlserver.instance_info module \u2013 Returns basic information for a SQL Server instance": [[19, "lowlydba-sqlserver-instance-info-module-returns-basic-information-for-a-sql-server-instance"]], "lowlydba.sqlserver.login module \u2013 Configures a login for the target SQL Server instance": [[20, "lowlydba-sqlserver-login-module-configures-a-login-for-the-target-sql-server-instance"]], "lowlydba.sqlserver.maintenance_solution module \u2013 Install/update Maintenance Solution by Ola Hallengren": [[21, "lowlydba-sqlserver-maintenance-solution-module-install-update-maintenance-solution-by-ola-hallengren"]], "lowlydba.sqlserver.memory module \u2013 Sets the maximum memory for a SQL Server instance": [[22, "lowlydba-sqlserver-memory-module-sets-the-maximum-memory-for-a-sql-server-instance"]], "lowlydba.sqlserver.nonquery module \u2013 Executes a generic nonquery": [[23, "lowlydba-sqlserver-nonquery-module-executes-a-generic-nonquery"]], "lowlydba.sqlserver.resource_governor module \u2013 Configures the resource governor on a SQL Server instance": [[24, "lowlydba-sqlserver-resource-governor-module-configures-the-resource-governor-on-a-sql-server-instance"]], "lowlydba.sqlserver.restore module \u2013 Performs a restore operation": [[25, "lowlydba-sqlserver-restore-module-performs-a-restore-operation"]], "lowlydba.sqlserver.rg_resource_pool module \u2013 Configures a resource pool for use by the Resource Governor": [[26, "lowlydba-sqlserver-rg-resource-pool-module-configures-a-resource-pool-for-use-by-the-resource-governor"]], "lowlydba.sqlserver.rg_workload_group module \u2013 Configures a workload group for use by the Resource Governor": [[27, "lowlydba-sqlserver-rg-workload-group-module-configures-a-workload-group-for-use-by-the-resource-governor"]], "lowlydba.sqlserver.sa module \u2013 Configure the sa login for security best practices": [[28, "lowlydba-sqlserver-sa-module-configure-the-sa-login-for-security-best-practices"]], "lowlydba.sqlserver.sp_configure module \u2013 Make instance level system configuration changes via sp_configure": [[29, "lowlydba-sqlserver-sp-configure-module-make-instance-level-system-configuration-changes-via-sp-configure"]], "lowlydba.sqlserver.sp_whoisactive module \u2013 Install/update sp_whoisactive by Adam Mechanic": [[30, "lowlydba-sqlserver-sp-whoisactive-module-install-update-sp-whoisactive-by-adam-mechanic"]], "lowlydba.sqlserver.spn module \u2013 Configures SPNs for SQL Server": [[31, "lowlydba-sqlserver-spn-module-configures-spns-for-sql-server"]], "lowlydba.sqlserver.tcp_port module \u2013 Sets the TCP port for the instance": [[32, "lowlydba-sqlserver-tcp-port-module-sets-the-tcp-port-for-the-instance"]], "lowlydba.sqlserver.traceflag module \u2013 Enable or disable global trace flags on a SQL Server instance": [[33, "lowlydba-sqlserver-traceflag-module-enable-or-disable-global-trace-flags-on-a-sql-server-instance"]], "lowlydba.sqlserver.user module \u2013 Configures a user within a database": [[34, "lowlydba-sqlserver-user-module-configures-a-user-within-a-database"]]}, "docnames": ["collections/environment_variables", "collections/index", "collections/index_module", "collections/lowlydba/index", "collections/lowlydba/sqlserver/ag_listener_module", "collections/lowlydba/sqlserver/ag_replica_module", "collections/lowlydba/sqlserver/agent_job_category_module", "collections/lowlydba/sqlserver/agent_job_module", "collections/lowlydba/sqlserver/agent_job_schedule_module", "collections/lowlydba/sqlserver/agent_job_step_module", "collections/lowlydba/sqlserver/availability_group_module", "collections/lowlydba/sqlserver/backup_module", "collections/lowlydba/sqlserver/credential_module", "collections/lowlydba/sqlserver/database_module", "collections/lowlydba/sqlserver/dba_multitool_module", "collections/lowlydba/sqlserver/first_responder_kit_module", "collections/lowlydba/sqlserver/hadr_module", "collections/lowlydba/sqlserver/index", "collections/lowlydba/sqlserver/install_script_module", "collections/lowlydba/sqlserver/instance_info_module", "collections/lowlydba/sqlserver/login_module", "collections/lowlydba/sqlserver/maintenance_solution_module", "collections/lowlydba/sqlserver/memory_module", "collections/lowlydba/sqlserver/nonquery_module", "collections/lowlydba/sqlserver/resource_governor_module", "collections/lowlydba/sqlserver/restore_module", "collections/lowlydba/sqlserver/rg_resource_pool_module", "collections/lowlydba/sqlserver/rg_workload_group_module", "collections/lowlydba/sqlserver/sa_module", "collections/lowlydba/sqlserver/sp_configure_module", "collections/lowlydba/sqlserver/sp_whoisactive_module", "collections/lowlydba/sqlserver/spn_module", "collections/lowlydba/sqlserver/tcp_port_module", "collections/lowlydba/sqlserver/traceflag_module", "collections/lowlydba/sqlserver/user_module", "index"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1}, "filenames": ["collections/environment_variables.rst", "collections/index.rst", "collections/index_module.rst", "collections/lowlydba/index.rst", "collections/lowlydba/sqlserver/ag_listener_module.rst", "collections/lowlydba/sqlserver/ag_replica_module.rst", "collections/lowlydba/sqlserver/agent_job_category_module.rst", "collections/lowlydba/sqlserver/agent_job_module.rst", "collections/lowlydba/sqlserver/agent_job_schedule_module.rst", "collections/lowlydba/sqlserver/agent_job_step_module.rst", "collections/lowlydba/sqlserver/availability_group_module.rst", "collections/lowlydba/sqlserver/backup_module.rst", "collections/lowlydba/sqlserver/credential_module.rst", "collections/lowlydba/sqlserver/database_module.rst", "collections/lowlydba/sqlserver/dba_multitool_module.rst", "collections/lowlydba/sqlserver/first_responder_kit_module.rst", "collections/lowlydba/sqlserver/hadr_module.rst", "collections/lowlydba/sqlserver/index.rst", "collections/lowlydba/sqlserver/install_script_module.rst", "collections/lowlydba/sqlserver/instance_info_module.rst", "collections/lowlydba/sqlserver/login_module.rst", "collections/lowlydba/sqlserver/maintenance_solution_module.rst", "collections/lowlydba/sqlserver/memory_module.rst", "collections/lowlydba/sqlserver/nonquery_module.rst", "collections/lowlydba/sqlserver/resource_governor_module.rst", "collections/lowlydba/sqlserver/restore_module.rst", "collections/lowlydba/sqlserver/rg_resource_pool_module.rst", "collections/lowlydba/sqlserver/rg_workload_group_module.rst", "collections/lowlydba/sqlserver/sa_module.rst", "collections/lowlydba/sqlserver/sp_configure_module.rst", "collections/lowlydba/sqlserver/sp_whoisactive_module.rst", "collections/lowlydba/sqlserver/spn_module.rst", "collections/lowlydba/sqlserver/tcp_port_module.rst", "collections/lowlydba/sqlserver/traceflag_module.rst", "collections/lowlydba/sqlserver/user_module.rst", "index.rst"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [2, 4, 8, 13, 15, 17, 21, 25, 34], "0": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "00": 8, "01": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "010500": 8, "02": [5, 8], "05": 8, "1": [4, 6, 7, 8, 9, 11, 12, 13, 20, 21, 22, 23, 24, 26, 27, 29, 30, 31, 32, 33, 34], "10": [4, 15, 31, 32], "10240": 22, "11": 18, "12": 17, "140030": 8, "1433": [4, 31, 32], "16kb": [11, 25], "1933": 32, "1kb": [11, 25], "2": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "20": [4, 31], "2005": 14, "2017": [5, 10], "2020": 8, "2099": 8, "23": 8, "24": 8, "25": 8, "252": [4, 31], "255": [4, 31], "2kb": [11, 25], "3": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "30": [8, 18], "31": 8, "32": 8, "3226": 33, "32kb": [11, 25], "365": 8, "4": [7, 10, 16, 20, 28], "4kb": [11, 25], "5": [4, 5, 26, 27], "50": 5, "59": 8, "5kb": [11, 25], "6": 31, "60": 23, "64kb": [11, 25], "7": 14, "77": [4, 31], "8": 11, "8kb": [11, 25], "9": 25, "99991231": 8, "A": [8, 10, 14, 15, 18, 21, 25, 30], "By": [5, 11, 25], "If": [5, 7, 8, 11, 12, 14, 15, 18, 21, 25, 30], "It": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "No": [0, 15], "On": [7, 10], "That": 18, "The": [0, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "These": [1, 3, 17], "To": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "Will": [7, 18, 31], "With": 15, "abl": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "abort": 18, "abov": [5, 10], "absent": [4, 5, 6, 7, 8, 9, 10, 12, 13, 20, 26, 27, 31, 34], "accept": 25, "access": [11, 12, 25], "account": [11, 12, 20, 31], "action": 9, "activ": 31, "ad": [7, 12, 13, 20, 23, 28, 31, 32, 34], "adam": [2, 17], "add": [4, 5, 9, 13, 31], "address": [4, 32], "adventurework": 18, "aes128": 11, "aes192": 11, "aes256": 11, "affect": [18, 33], "after": [21, 25, 33], "ag": [4, 31], "ag_listen": [2, 17, 31], "ag_mydatabas": [4, 5, 10, 31], "ag_nam": [4, 5, 10, 31], "ag_replica": [2, 17], "against": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "agent": [2, 16, 17, 21, 32], "agent_job": [2, 8, 9, 17], "agent_job_categori": [2, 17], "agent_job_schedul": [2, 17], "agent_job_step": [2, 17], "agentstart": 8, "aglmydatabas": [4, 31], "algorithm": 11, "alia": 31, "alias": 10, "all": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 33, 34, 35], "all_ag": 10, "alleg": 11, "allow": [8, 10, 25, 27], "allow_null_backup": 10, "allowallconnect": 5, "allownoconnect": 5, "allowreadintentconnectionsonli": 5, "alongsid": 25, "alreadi": [7, 21], "also": [8, 18], "altern": [14, 15, 16, 32], "alwai": [10, 19, 20], "alwayson_health": 5, "alwaysrollback": 18, "am": 8, "amachan": 30, "amount": [9, 27], "an": [2, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 25, 31, 34], "ani": [7, 8, 11, 18, 25], "ansibl": [0, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "appli": [8, 10], "appropri": 11, "ar": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "associ": [7, 8, 12], "assum": 8, "asynchron": [5, 10], "asynchronouscommit": [5, 10], "attempt": [5, 9, 11, 18], "authent": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34], "author": 17, "automat": [5, 10, 16, 22, 32], "automated_backup_prefer": 10, "autostart": 8, "avail": [2, 13, 16, 17, 25, 27], "availability_group": [2, 4, 5, 17], "availability_mod": [5, 10], "azur": [11, 12, 25, 34], "azure_base_url": 11, "azure_credenti": [11, 25], "back": [10, 11, 18], "backup": [2, 5, 10, 12, 17, 21, 25, 33], "backup_loc": 21, "backup_prior": 5, "backuptyp": 11, "base": 11, "basic": [2, 10, 17], "basic_availability_group": 10, "becom": 27, "been": [0, 8, 11], "befor": [5, 8, 10, 23, 25], "begin": [7, 8], "behaviour": [11, 25], "being": [7, 13, 18], "belong": 7, "below": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "best": [2, 17], "between": [8, 9], "blitz": 15, "blob": 12, "block": [11, 25], "block_siz": [11, 25], "boolean": [4, 5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 24, 25, 28, 30, 32, 33, 34], "branch": [14, 15], "buffer": [11, 25, 27], "buffer_count": [11, 25], "build": 18, "build_path": 11, "bulklog": 13, "cach": [14, 15, 21, 30], "calcul": [11, 22], "can": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "cannot": 34, "cap": 26, "cap_cpu_perc": 26, "case": 18, "categori": [2, 7, 17], "category_typ": 6, "caus": 25, "cdc": 25, "certif": 11, "chain": 25, "chang": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34], "check": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "check_mod": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "checksum": 11, "choic": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34], "choos": [13, 18], "class": 12, "classifi": 24, "classifier_funct": 24, "cleanup_tim": 21, "clear": 24, "clock": 8, "cluster": [5, 10], "cluster_typ": [5, 10], "cmdexec": 9, "collect": 17, "com": [14, 15, 17, 18, 30], "comma": 4, "command": [5, 9, 11, 21], "comment": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "commit": 13, "common": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "commun": 4, "compani": [14, 15, 18], "compat": 13, "complex": [20, 28], "compon": 7, "compress": 11, "comput": 31, "computer_password": 31, "computer_usernam": 31, "condit": 10, "configur": [0, 2, 17, 21, 22, 23, 25], "configure_xe_sess": 5, "connect": [5, 18, 29, 31], "connection_mode_in_primary_rol": 5, "connection_mode_in_secondary_rol": 5, "connection_timeout": 18, "consid": 5, "contain": [11, 12, 35], "copy_onli": 11, "copyonli": 11, "core": [0, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "correspond": 21, "cpu": [26, 27], "creat": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 17, 18, 20, 21, 25, 26, 27, 31, 34], "create_databas": 18, "create_fold": 11, "credenti": [2, 11, 16, 17, 25, 31, 32], "cryptograph": 12, "cryptographicprovid": 12, "current": [7, 8], "custom": 13, "dac": 29, "dai": 8, "daili": 8, "dailyschedul": 8, "data": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "data_file_path": 13, "databas": [2, 5, 7, 9, 10, 11, 14, 15, 17, 20, 21, 23, 25, 30], "database1_201714022131": 11, "database_health_trigg": 10, "database_nam": [10, 25], "databasemirror": 5, "databasename_yyyymmddhhmm": 11, "databasesinparallel": 21, "date": 8, "datetim": 25, "dba": [2, 17], "dba_multitool": [2, 17], "dba_tool": [14, 15], "dbaagentjob": 7, "dbaagentjobcategori": 6, "dbaagentjobschedul": 8, "dbaagentjobstep": 9, "dbaagentschedul": 8, "dbaaghadr": 16, "dbaaglisten": 4, "dbaagreplica": 5, "dbaavailabilitygroup": 10, "dbadatabas": [11, 13, 25], "dbadbcompat": 13, "dbadbcredenti": 12, "dbadbus": 34, "dbaendpoint": 5, "dbafirstresponderkit": 15, "dbalogin": [20, 28], "dbamaintenancesolut": 21, "dbamaxmemori": 22, "dbamultitool": 14, "dbaresourcegovernor": 24, "dbargresourcepool": 26, "dbargworkloadgroup": 27, "dbaspconfigur": 29, "dbaspn": 31, "dbatcpport": 32, "dbatool": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "dbatraceflag": 33, "dbawhoisact": 30, "dbname": 11, "dbo": [9, 18, 23, 34], "dbop": 18, "dboscript": 18, "dd": 25, "declar": 0, "default": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 34], "default_databas": 20, "default_schema": 34, "defin": 0, "degre": 27, "delet": 21, "deploi": 18, "deploy": 18, "deployment_method": 18, "descript": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "desir": 25, "destin": 25, "destination_data_directori": 25, "destination_file_prefix": 25, "destination_file_suffix": 25, "destination_filestream_directori": 25, "destination_log_directori": 25, "detail": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "dev": [15, 34], "develop": 14, "dhcp": 4, "dictionari": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "diff": 11, "differ": [5, 10], "differenti": [11, 25], "dir": 11, "directori": [13, 18, 21, 25, 31], "directory_recurs": 25, "disabl": [2, 7, 8, 17, 20, 24, 28], "disast": 16, "distribut": [9, 10, 14, 15, 21, 30], "dll": 10, "dml": 23, "do": [5, 10], "doc": [8, 17], "docsit": 35, "document": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "doe": [5, 6, 10, 18, 23, 33], "don": [7, 25], "download": [14, 15, 21, 30], "dr": 5, "drop": [10, 12, 21], "dtc": 10, "dtc_support_en": 10, "due": 5, "dure": 18, "e": [4, 7, 11], "each": [7, 8, 18], "edit": 11, "effect": [10, 16, 29, 32], "either": [11, 30], "elimin": 33, "els": 6, "empti": 18, "enabl": [2, 7, 8, 10, 12, 13, 14, 15, 17, 20, 21, 24, 26, 27, 28, 29, 30], "encrypt": 11, "encryption_algorithm": 11, "encryption_certif": 11, "end": 8, "end_dat": 8, "end_tim": 8, "endpoint": 5, "endpoint_url": 5, "enforc": [20, 28], "enterpris": 12, "environ": 35, "error": [8, 18, 33], "etc": 7, "even": [14, 15, 21, 30], "event": 5, "everydai": 8, "execur": 18, "execut": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "execution_timeout": 18, "exist": [4, 5, 6, 7, 10, 12, 13, 20, 25, 34], "expand": 30, "expir": [20, 28], "explicit": 20, "extend": 5, "extern": [5, 10, 26, 27], "external_provid": 34, "fail": [5, 9], "failov": [5, 10], "failover_mod": [5, 10], "failure_condition_level": 10, "fals": [4, 5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 24, 25, 28, 30, 32, 33, 34], "famili": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "faster": 25, "fci": 10, "featur": [16, 24], "fetch": [14, 15, 21, 30], "field": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "file": [11, 13, 14, 15, 18, 21, 25, 30], "file_count": 11, "file_path": 11, "filepath": 11, "filestream": 25, "find": 5, "first": [2, 8, 11, 17, 18, 25], "first_responder_kit": [2, 17], "flag": [2, 16, 17], "folder": 25, "follow": [0, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "forc": [7, 8, 9, 10, 12, 14, 15, 16, 21, 30, 32], "format": [8, 11, 13, 31], "found": 25, "fourth": 8, "fqdn": 5, "frequency_interv": 8, "frequency_recurrence_factor": 8, "frequency_relative_interv": 8, "frequency_subday_interv": 8, "frequency_subday_typ": 8, "frequency_typ": 8, "fresh": 10, "fridai": 8, "frk": 15, "from": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "full": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "function": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "further": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "futur": 25, "galaxi": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "gap": 9, "gener": [2, 17], "get": [5, 12, 19, 34], "github": [14, 15, 17, 21, 30], "given": 29, "global": [2, 17], "go": 18, "gotonextstep": 9, "gotostep": 9, "governor": [2, 17], "grant": 27, "group": [2, 13, 17], "group_max_request": 27, "ha": [8, 11], "hadr": [2, 17], "hadr_endpoint": 5, "hallengreen": 25, "hallengren": [2, 17], "handl": [10, 26, 27], "hardwar": 7, "have": [0, 5, 10, 25], "health": 10, "healthcheck_timeout": 10, "here": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "hh": 25, "hhmmss": 8, "high": [16, 27], "higher": 14, "histori": 18, "hoc": 23, "hold": 18, "host": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "hour": [8, 21], "how": [5, 10], "http": [8, 12, 14, 30], "i": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "id": 9, "ideal": [22, 23], "ident": 12, "identif": 9, "idlecomput": 8, "ie": 11, "ignor": 8, "ignore_diff_backup": 25, "ignore_file_check": 11, "ignore_log_backup": 25, "immedi": [10, 33], "import": 27, "improv": 11, "includ": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "inclus": 8, "increment": [9, 11], "increment_prefix": 11, "index": 6, "indexoptim": 21, "indic": [4, 8, 10, 25], "individu": 7, "info": 19, "inform": [2, 10, 17, 25, 33], "initi": 11, "instal": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 34], "install_job": 21, "install_parallel": 21, "install_script": [2, 17], "installscript": 18, "instanc": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 21, 23, 25, 26, 27, 28, 30, 34], "instance_info": [2, 17], "instancenam": 11, "integ": [4, 5, 7, 8, 9, 10, 11, 13, 18, 21, 22, 23, 25, 26, 27, 29, 32, 33], "integritycheck": 21, "intern": [26, 27], "internet": [14, 15, 21, 30], "internproject1": 34, "io": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "iop": 26, "ip": 4, "ip_address": [4, 31, 32], "ipv4": 32, "is_distributed_ag": 10, "isact": 23, "isol": 13, "issu": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "its": [11, 25], "job": [2, 17, 21], "joe": 12, "joey40": 12, "john": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 34], "join": 5, "keep_cdc": 25, "keep_repl": 25, "kei": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "kit": [2, 17], "koduri": [29, 33], "kodurisudhir": [29, 33], "krilov": 12, "languag": 20, "last": [8, 10, 25], "latest": [14, 15, 21, 25, 30], "length": 10, "level": [2, 17, 18, 19], "list": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "listen": [2, 17, 31, 32], "listener_nam": [4, 31], "local": [14, 15, 21, 30], "local_fil": [14, 15, 21, 30], "localjob": 6, "locat": [11, 21, 25], "log": [10, 11, 13, 18, 21, 25, 33], "log_file_path": 13, "log_to_t": 21, "login": [2, 7, 13, 17, 34], "logread": 9, "look": [11, 31], "low": 27, "lowlydb": [11, 13, 25, 30], "lowlydb1": 25, "lowlydb2": 25, "lowlydba": [1, 35], "made": [5, 10], "mai": [5, 7, 8, 10], "main": [15, 21], "maintain": [14, 15, 17, 21], "mainten": [2, 6, 17, 25], "maintenance_solut": [2, 17], "maintenance_solution_backup": 25, "maintenancesolut": 21, "make": [2, 17], "manag": 12, "mani": 5, "manual": [5, 10, 22], "map": 34, "mapped_class_typ": 12, "mark": 25, "mask": 4, "master": [9, 14], "match": [11, 18], "max": 22, "max_cpu_perc": [26, 27], "max_dop": 27, "max_iops_per_vol": 26, "max_mem_perc": 26, "max_transfer_s": [11, 25], "maxdop": [13, 27], "maximum": [2, 17, 26, 27], "mb": 22, "mccall": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 34], "mean": 18, "mechan": [2, 17], "media": 11, "medium": 27, "membership": 25, "memori": [2, 17, 26, 27], "merg": 9, "method": 25, "migrat": [2, 17, 25], "millisecond": 10, "min_cpu_perc": 26, "min_iops_per_vol": 26, "min_mem_perc": 26, "minimum": 26, "minut": [8, 9], "miss": [11, 18], "mm": 25, "mode": [5, 10, 13, 19], "model": 13, "modifi": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "modul": 35, "mondai": 8, "month": 8, "monthli": 8, "monthlyrel": 8, "more": [8, 18], "multipl": [4, 11, 25], "multiserverjob": 6, "multitool": [2, 17, 21], "must": [7, 10, 11, 14, 20, 25, 28], "my": [14, 15, 18], "myco": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "mycredenti": 12, "myident": 12, "myjob": [7, 8, 9], "name": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "need": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "net": 12, "network": [5, 10], "new": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "new_nam": 28, "newer": 17, "next": [20, 28], "no_log_vers": 18, "no_recoveri": [11, 25], "no_recurs": 18, "no_xp_dir_recurs": 25, "non": [13, 32], "none": [5, 6, 7, 10, 12], "nonqueri": [2, 17], "noth": 6, "notransact": 18, "notthesayourelookingfor": 28, "null": [10, 24], "number": [4, 7, 8, 9, 11, 18, 23, 25, 27, 33], "o": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "object": [4, 5, 6, 7, 8, 9, 10, 12, 13, 20, 21, 26, 27, 31, 34], "occur": [8, 25], "occurr": [8, 25], "ola": [2, 17, 25], "on_fail_act": 9, "on_fail_step_id": 9, "on_success_act": 9, "on_success_step_id": 9, "onanyqualifiedfailurecondit": 10, "onc": 8, "oncriticalservererror": 10, "one": [5, 7, 8, 10, 20], "onetim": 8, "onidl": 8, "onli": [5, 7, 10, 11, 13, 15, 18, 19, 20, 25, 34], "only_access": 13, "only_script": 15, "onmoderateservererror": 10, "onserverdown": 10, "onserverunrespons": 10, "oper": [2, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34], "option": [8, 11, 14, 15, 21, 24, 25, 30], "order": 5, "origin": 25, "other": 8, "otherwis": [5, 10], "out": 23, "output": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "output_fil": 18, "output_file_dir": 21, "overrid": 25, "overridden": 11, "overwrit": 8, "own": [7, 11], "owner": 13, "owner_login": 7, "packag": 18, "parallel": 27, "pars": 25, "part": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "pass": [8, 25], "password": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "password_expiration_en": [20, 28], "password_must_chang": [20, 28], "password_policy_enforc": [20, 28], "path": [11, 14, 15, 18, 21, 25, 30], "per": [7, 28], "percentag": 26, "perform": [2, 9, 17], "period": 8, "permit": 15, "persist": 33, "ping": 5, "place": [11, 13, 25], "platform": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "playbook": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "plugin": 0, "pm": 8, "point": 25, "polici": [20, 28], "pool": [2, 17, 27], "port": [2, 4, 17, 31], "portion": 21, "powershel": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "practic": [2, 17], "predict": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "prefix": [11, 25], "present": [4, 5, 6, 7, 8, 9, 10, 12, 13, 20, 21, 26, 27, 31, 34], "prevent": [18, 25], "previou": [7, 18], "previous": [14, 15, 21, 30], "primari": [5, 10, 13], "prioriti": 5, "procedur": 10, "process": [11, 18, 25], "properti": [5, 19], "provid": [11, 12, 18, 20, 29, 31], "provider_nam": 12, "queri": [15, 23, 26, 27], "query_timeout": 23, "queue": 21, "queuedatabas": 21, "queueread": 9, "quitwithfailur": 9, "quitwithsuccess": 9, "rcsi": 13, "read": [5, 13, 19, 29], "read_only_routing_connection_url": 5, "read_only_routing_list": 5, "reallycomplexstuff12345": 20, "reason": 7, "recommend": 7, "recov": 25, "recoveri": [13, 16], "recovery_model": 13, "recreat": [10, 12, 21], "recurs": 25, "redirect": 5, "regardless": [18, 19], "regex": 18, "rel": 27, "releas": 30, "remain": [5, 10], "remot": [10, 29], "remotedacconnectionsen": 29, "remov": [6, 7, 8, 9, 12, 13, 20, 26, 27, 31, 34], "renam": 28, "replac": [11, 12, 25], "replace_db_name_in_fil": 25, "replace_exist": 21, "replace_in_nam": 11, "replic": 25, "replica": [2, 10, 13, 17], "report": 10, "repositori": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "request": [10, 27], "request_max_cpu_tim": 27, "request_max_mem_grant_perc": 27, "request_mem_grant_timeout_sec": 27, "reset": [20, 28], "resourc": [2, 10, 17], "resource_governor": [2, 17, 26, 27], "resource_pool": [26, 27], "resource_pool_typ": 27, "respond": [2, 17], "respons": 5, "restart": [10, 16, 29, 32, 33], "restartrequir": [16, 29, 32], "restor": [2, 10, 11, 17], "restore_tim": 25, "restored_database_name_prefix": 25, "resultset": 23, "retri": 9, "retry_attempt": 9, "retry_interv": 9, "return": [2, 17, 23], "reuse_source_folder_structur": 25, "rg": [26, 27], "rg_resource_pool": [2, 17, 27], "rg_workload_group": [2, 17], "rgmygroup": 27, "role": [5, 25], "roll": 18, "rollback": 18, "root": 21, "rout": 5, "rplittl": [26, 27], "run": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "sa": [2, 11, 12, 13, 17], "same": [8, 19], "saturdai": 8, "scan": 25, "schedul": [2, 7, 17], "schema": 34, "schema_version_t": 18, "script": [2, 14, 17, 25, 30], "second": [5, 8, 18, 23, 27], "secondari": [5, 10], "secondary_maxdop": 13, "secondaryonli": 10, "secur": [2, 17], "see": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "seed": [5, 10], "seeding_mod": [5, 10], "separ": [4, 18, 25], "sequenc": 9, "server": [2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 21, 23, 25, 26, 27, 28, 29, 30, 32, 34], "servernam": 11, "servic": [9, 16, 29, 32], "service_account": 31, "session": 5, "session_timeout": 5, "set": [0, 2, 4, 5, 7, 8, 9, 10, 11, 12, 13, 16, 17, 18, 20, 21, 23, 24, 25, 26, 27, 28, 29, 31, 33], "setup": [5, 10], "share": [10, 12], "shared_path": 10, "should": [4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 20, 21, 25, 26, 27, 31, 34], "sid": 20, "signatur": 12, "simpl": 13, "simultan": 27, "singl": [18, 27], "singletransact": 18, "size": [11, 25], "skip": [20, 25], "skip_password_reset": 20, "slower": 7, "snapshot": [9, 13], "so": [11, 13], "solut": [2, 17], "some": [8, 11], "sourc": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "sp_allnightlog": 15, "sp_allnightlog_setup": 15, "sp_blitz": 15, "sp_blitzanalysi": 15, "sp_blitzbackup": 15, "sp_blitzcach": 15, "sp_blitzfirst": 15, "sp_blitzindex": 15, "sp_blitzinmemoryoltp": 15, "sp_blitzlock": 15, "sp_blitzquerystor": 15, "sp_blitzwho": 15, "sp_configur": [2, 17], "sp_databaserestor": 15, "sp_ineachdb": 15, "sp_server_diagnost": 10, "sp_whoisact": [2, 17], "special": 5, "specif": 8, "specifi": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "spn": [2, 17], "sql": [2, 4, 5, 10, 11, 13, 14, 15, 16, 17, 18, 21, 23, 25, 26, 27, 28, 29, 30, 32, 34], "sql_instanc": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34], "sql_instance_primari": [4, 5, 31], "sql_instance_replica": 5, "sql_instance_secondari": 10, "sql_password": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34], "sql_password_replica": 5, "sql_password_secondari": 10, "sql_usernam": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34], "sql_username_replica": 5, "sql_username_secondari": 10, "sqlinstanc": 11, "sqlserver": [1, 3, 35], "sqlserverag": 9, "sqlserververs": 15, "ss": 25, "ssi": 9, "ssm": 5, "stale": 7, "standard": 32, "standbi": 25, "standby_directori": 25, "start": [5, 8, 9, 25], "start_dat": 8, "start_step_id": 7, "start_tim": 8, "state": [4, 5, 6, 7, 8, 9, 10, 12, 13, 20, 25, 26, 27, 31, 34], "statu": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "step": [2, 7, 11, 17], "step1": 9, "step_id": 9, "step_nam": 9, "stop": [8, 11, 25], "stop_after_d": 25, "stop_befor": 25, "stop_mark": 25, "storag": [11, 12, 25], "store": [10, 15, 18], "string": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "stripe": 11, "structur": 25, "subdai": 8, "subfold": 11, "subnet": 4, "subnet_ip": [4, 31], "subnet_mask": [4, 31], "subsystem": 9, "succe": 9, "success": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "sudhir": [29, 33], "suffix": 25, "suit": [2, 17], "sundai": 8, "suppli": [7, 13, 20, 21], "support": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "svc": 31, "switch": [11, 12, 14, 15, 21, 25, 30], "synchron": [5, 10], "synchronouscommit": [5, 10], "sysadmin": 25, "system": [2, 17], "t": [7, 11, 25], "tabl": [9, 18, 21, 23], "tail": 11, "take": [10, 16, 18, 27, 29, 32, 33], "target": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "tcp": [2, 17], "tcp_port": [2, 17], "tell": 25, "test": [14, 15, 18], "testdata": 9, "than": 18, "thei": [7, 20, 25, 28], "theintern": [20, 34], "them": 25, "themselv": [26, 27], "thi": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35], "third": 8, "through": [5, 8, 9], "thursdai": 8, "time": [8, 9, 10, 11, 21, 23, 27], "timeout": [10, 18], "timestamp": 11, "timestamp_format": 11, "token": 12, "trace": [2, 17], "trace_flag": 33, "traceflag": [2, 17], "track": 18, "tracker": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "transact": [9, 18, 25], "transactionperscript": 18, "transactsql": 9, "transfer": [11, 25], "trigger": 10, "tripled": 11, "true": [4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 24, 25, 26, 27, 28, 30, 32, 33, 34], "truncat": 9, "try": 25, "tuesdai": 8, "twice": 18, "type": [5, 6, 8, 10, 11, 26, 27], "uninstal": 15, "uniqu": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "unit": [8, 11, 25], "unrespons": 10, "unus": 8, "up": [10, 11, 31], "updat": [2, 17, 23, 29], "url": [5, 11, 12], "us": [0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 28, 29, 30, 31, 32, 33, 34], "usag": 8, "use_destination_default_directori": 25, "use_last_backup": 10, "user": [2, 7, 12, 17, 20, 23, 28], "userdb": 23, "usernam": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "util": 22, "valid": [11, 13], "valu": 23, "variabl": 35, "verif": 18, "verifi": [11, 25], "verify_onli": 25, "verifyonli": 11, "version": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "version100": 13, "version90": 13, "via": [2, 8, 11, 17], "volum": 26, "wai": 15, "wait": [5, 10, 23, 27], "want": [25, 31], "websit": 30, "wednesdai": 8, "week": 8, "weekdai": 8, "weekend": 8, "weekli": 8, "what": [7, 18], "when": [5, 7, 8, 11, 13, 20, 21, 25, 28, 34], "where": [5, 10, 13, 18, 21], "whether": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "which": [5, 7, 8, 9, 11, 21, 25], "whole": 18, "wildcard": 15, "window": [12, 16, 20, 31, 32], "with_format": 11, "with_replac": 25, "within": [2, 11, 17], "without": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "wizard": 5, "work": [25, 27], "workload": [2, 17], "workload_group": 27, "would": 5, "wrap": 18, "wrapper": [14, 15, 21, 30], "writabl": 25, "write": [11, 21], "wsfc": [5, 10], "xp_dirtre": 25, "xpdirtre": 25, "y": 21, "you": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "yyyi": 25, "yyyymmdd": 8, "yyyymmddhhmm": 11, "zip": [14, 15, 21, 30]}, "titles": ["Index of all Collection Environment Variables", "Collection Index", "Index of all Modules", "Collections in the Lowlydba Namespace", "lowlydba.sqlserver.ag_listener module \u2013 Configures an availability group listener", "lowlydba.sqlserver.ag_replica module \u2013 Configures an availability group replica", "lowlydba.sqlserver.agent_job_category module \u2013 Configures a SQL Agent job category", "lowlydba.sqlserver.agent_job module \u2013 Configures a SQL Agent job", "lowlydba.sqlserver.agent_job_schedule module \u2013 Configures a SQL Agent job schedule", "lowlydba.sqlserver.agent_job_step module \u2013 Configures a SQL Agent job step", "lowlydba.sqlserver.availability_group module \u2013 Configures availability group(s)", "lowlydba.sqlserver.backup module \u2013 Performs a backup operation", "lowlydba.sqlserver.credential module \u2013 Configures a credential on a SQL server", "lowlydba.sqlserver.database module \u2013 Creates and configures a database", "lowlydba.sqlserver.dba_multitool module \u2013 Install/update the DBA Multitool suite by John McCall", "lowlydba.sqlserver.first_responder_kit module \u2013 Install/update the First Responder Kit scripts", "lowlydba.sqlserver.hadr module \u2013 Enable or disable HADR", "Lowlydba.Sqlserver", "lowlydba.sqlserver.install_script module \u2013 Runs migration scripts against a database", "lowlydba.sqlserver.instance_info module \u2013 Returns basic information for a SQL Server instance", "lowlydba.sqlserver.login module \u2013 Configures a login for the target SQL Server instance", "lowlydba.sqlserver.maintenance_solution module \u2013 Install/update Maintenance Solution by Ola Hallengren", "lowlydba.sqlserver.memory module \u2013 Sets the maximum memory for a SQL Server instance", "lowlydba.sqlserver.nonquery module \u2013 Executes a generic nonquery", "lowlydba.sqlserver.resource_governor module \u2013 Configures the resource governor on a SQL Server instance", "lowlydba.sqlserver.restore module \u2013 Performs a restore operation", "lowlydba.sqlserver.rg_resource_pool module \u2013 Configures a resource pool for use by the Resource Governor", "lowlydba.sqlserver.rg_workload_group module \u2013 Configures a workload group for use by the Resource Governor", "lowlydba.sqlserver.sa module \u2013 Configure the <code class=\"docutils literal notranslate\"><span class=\"pre\">sa</span></code> login for security best practices", "lowlydba.sqlserver.sp_configure module \u2013 Make instance level system configuration changes via <code class=\"docutils literal notranslate\"><span class=\"pre\">sp_configure</span></code>", "lowlydba.sqlserver.sp_whoisactive module \u2013 Install/update <code class=\"docutils literal notranslate\"><span class=\"pre\">sp_whoisactive</span></code> by Adam Mechanic", "lowlydba.sqlserver.spn module \u2013 Configures SPNs for SQL Server", "lowlydba.sqlserver.tcp_port module \u2013 Sets the TCP port for the instance", "lowlydba.sqlserver.traceflag module \u2013 Enable or disable global trace flags on a SQL Server instance", "lowlydba.sqlserver.user module \u2013 Configures a user within a database", "Welcome to my Ansible collection documentation"], "titleterms": {"": 10, "adam": 30, "ag_listen": 4, "ag_replica": 5, "against": 18, "agent": [6, 7, 8, 9], "agent_job": 7, "agent_job_categori": 6, "agent_job_schedul": 8, "agent_job_step": 9, "all": [0, 2], "an": [4, 5], "ansibl": 35, "attribut": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "author": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "avail": [4, 5, 10], "availability_group": 10, "backup": 11, "basic": 19, "best": 28, "categori": 6, "chang": 29, "collect": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35], "configur": [4, 5, 6, 7, 8, 9, 10, 12, 13, 20, 24, 26, 27, 28, 29, 31, 34], "creat": 13, "credenti": 12, "databas": [13, 18, 34], "dba": 14, "dba_multitool": 14, "descript": 17, "disabl": [16, 33], "document": 35, "enabl": [16, 33], "environ": 0, "exampl": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "execut": 23, "first": 15, "first_responder_kit": 15, "flag": 33, "gener": 23, "global": 33, "governor": [24, 26, 27], "group": [4, 5, 10, 27], "hadr": 16, "hallengren": 21, "index": [0, 1, 2, 17, 35], "inform": 19, "instal": [14, 15, 21, 30], "install_script": 18, "instanc": [19, 20, 22, 24, 29, 32, 33], "instance_info": 19, "job": [6, 7, 8, 9], "john": 14, "kit": 15, "level": 29, "link": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "listen": 4, "login": [20, 28], "lowlydba": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "mainten": 21, "maintenance_solut": 21, "make": 29, "maximum": 22, "mccall": 14, "mechan": 30, "memori": 22, "migrat": 18, "modul": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "multitool": 14, "my": 35, "namespac": 3, "nonqueri": 23, "note": [7, 20], "ola": 21, "oper": [11, 25], "paramet": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "perform": [11, 25], "plugin": [17, 35], "pool": 26, "port": 32, "practic": 28, "refer": 35, "replica": 5, "requir": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "resourc": [24, 26, 27], "resource_governor": 24, "respond": 15, "restor": 25, "return": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "rg_resource_pool": 26, "rg_workload_group": 27, "run": 18, "sa": 28, "schedul": 8, "script": [15, 18], "secur": 28, "server": [12, 19, 20, 22, 24, 31, 33], "set": [22, 32], "solut": 21, "sp_configur": 29, "sp_whoisact": 30, "spn": 31, "sql": [6, 7, 8, 9, 12, 19, 20, 22, 24, 31, 33], "sqlserver": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "step": 9, "suit": 14, "synopsi": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "system": 29, "target": 20, "tcp": 32, "tcp_port": 32, "trace": 33, "traceflag": 33, "updat": [14, 15, 21, 30], "us": [26, 27], "user": 34, "valu": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "variabl": 0, "via": 29, "welcom": 35, "within": 34, "workload": 27}})
\ No newline at end of file