@@ -29,22 +29,22 @@ Database performance analysis allows you to monitor your SQL queries within your
2929 For each database you want to monitor, run the following SQL command:
3030
3131 ``` sql
32- ALTER DATABASE DATABASE_NAME SET QUERY_STORE = ON ( QUERY_CAPTURE_MODE = ALL, DATA_FLUSH_INTERVAL_SECONDS = 900 )
32+ ALTER DATABASE DATABASE_NAME SET QUERY_STORE = ON ( QUERY_CAPTURE_MODE = ALL, DATA_FLUSH_INTERVAL_SECONDS = 900 )
3333 ```
3434
3535 * ** Important:** Replace ` [YOUR_DATABASE_NAME] ` with the actual name of your database.
3636
3737 3 . To confirm Query Store is active for a specific database, run the following SQL command:
3838
3939 ``` sql
40- SELECT is_query_store_on FROM sys .databases where physical_database_name = DATABASE_NAME
40+ SELECT is_query_store_on FROM sys .databases WHERE physical_database_name = DATABASE_NAME
4141 ```
4242
4343 If the output is ` 1 ` , Query Store is enabled for that database.
4444
4545 4 . To change the directory to the integration configuration folder, run:
46- ``` cmd
47- cd "C:\Program Files\New Relic\newrelic-infra\integrations.d\"
46+ ``` bash
47+ cd " C:\Program Files\New Relic\newrelic-infra\integrations.d\"
4848 ` ` `
4949 5. Edit the [` mssql-config.yml` ](# basic-config) file for database performance monitoring:
5050 < table>
@@ -90,18 +90,18 @@ Database performance analysis allows you to monitor your SQL queries within your
9090 For each database you want to monitor, run the following SQL command:
9191
9292 ```sql
93- ALTER DATABASE DATABASE_NAME SET QUERY_STORE = ON ( QUERY_CAPTURE_MODE = ALL, DATA_FLUSH_INTERVAL_SECONDS = 900 )
93+ ALTER DATABASE DATABASE_NAME SET QUERY_STORE = ON ( QUERY_CAPTURE_MODE = ALL, DATA_FLUSH_INTERVAL_SECONDS = 900 )
9494 ```
9595 3. To confirm Query Store is active for a specific database, run the following SQL command:
9696
9797 ```sql
98- SELECT is_query_store_on FROM sys .databases where name = DATABASE_NAME
98+ SELECT is_query_store_on FROM sys.databases WHERE name = DATABASE_NAME
9999 ```
100100
101101 If the output is `1`, Query Store is enabled.
102102 4. To change the directory to the integration configuration folder, run:
103103 ```bash
104- cd " C:\Program Files\New Relic\newrelic-infra\integrations.d\"
104+ cd "C:\Program Files\New Relic\newrelic-infra\integrations.d\"
105105 ```
106106 5. Edit the [`mssql-config.yml`](#basic-config) file for database performance monitoring:
107107 <table>
@@ -129,4 +129,4 @@ Database performance analysis allows you to monitor your SQL queries within your
129129
130130 </Collapser>
131131
132- < /CollapserGroup>
132+ </CollapserGroup>
0 commit comments