Skip to content

Commit e939f60

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/sql-docs-pr into sugg
2 parents 0e70280 + 4d677ec commit e939f60

123 files changed

Lines changed: 1792 additions & 1734 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/database-engine/configure-windows/configure-sql-server-encryption.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: This article describes how to configure a SQL Server instance to en
44
author: sevend2
55
ms.author: v-sidong
66
ms.reviewer: sureshka, randolphwest
7-
ms.date: 03/13/2023
7+
ms.date: 02/02/2024
88
ms.service: sql
99
ms.subservice: configuration
1010
ms.topic: conceptual
@@ -142,3 +142,21 @@ GO
142142
```
143143

144144
The `encrypt_option` column is a Boolean value indicating whether encryption is enabled for this connection. If the value is `TRUE`, the connection is securely encrypted. If the value is `FALSE`, the connection isn't encrypted.
145+
146+
### SQL Server certificate behavior with permissions
147+
148+
The SQL Server service detects and uses the certificate automatically for encryption if all of the following conditions are true:
149+
150+
- The certificate has a subject that contains the FQDN of the machine
151+
- The certificate is installed in the Local Computer's certificate store
152+
- The SQL Server service account is granted access to the certificate's private key
153+
154+
This use happens even if the certificate is not selected in SQL Server Configuration Manager.
155+
156+
To override this behavior, either:
157+
158+
- Configure another certificate to be used in the SQL Server Configuration Manager
159+
160+
or
161+
162+
- Remove the SQL Server service account permissions to the undesired certificate

docs/database-engine/install-windows/install-sql-server-using-a-configuration-file.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ Setup supports the use of the configuration file only through the [command promp
2626

2727
The configuration file can be used to track the parameters and values for each installation. This makes the configuration file useful for verifying and auditing the installations.
2828

29+
> [!TIP]
30+
> Since configuration options may change from version to version, it's best to generate a new `ConfigurationFile.ini` for each new version of SQL Server.
31+
2932
## Configuration file structure
3033

3134
The `ConfigurationFile.ini` file is a text file with parameters (name/value pair) and descriptive comments.
12.7 KB
Loading

docs/reporting-services/mobile-reports/add-a-custom-map-to-a-reporting-services-mobile-report.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,32 +17,32 @@ Custom maps require two files:
1717
* An .SHP file for shape geometries
1818
* A .DBF file for metadata
1919

20-
Read more about [custom maps in Reporting Services mobile reports](../../reporting-services/mobile-reports/custom-maps-in-reporting-services-mobile-reports.md).
20+
For more information about custom maps, see [Custom maps in Reporting Services mobile reports](../../reporting-services/mobile-reports/custom-maps-in-reporting-services-mobile-reports.md).
2121

22-
Store the two files in the same folder. The file names of the two must match (e.g., canada.shp and canada.dbf). The first column of the metadata (DBF file) is used to match with the key value of the corresponding shape's name (key), to be used when populating the map with data.
22+
Store the two files in the same folder. The file names of the two must match, for example, `canada.shp` and `canada.dbf`. The first column of the metadata in the DBF file is used to match with the key value of the corresponding shape's name, or key. This value is to be used when populating the map with data.
2323

2424
## Load a custom map
2525

2626
1. On the **Layout** tab, select a map type: **Gradient Heat Map**, **Range Stop Heat Map**, or **Bubble Map**, drag it to the design surface, and make it the size you want.
2727

28-
![SSMRP_MapsGallery](../../reporting-services/mobile-reports/media/ssmrp-mapsgallery.png)
28+
:::image type="content" source="../../reporting-services/mobile-reports/media/ssmrp-mapsgallery.png" alt-text="Screenshot of the Maps gallery with the Bubble Map highlighted.":::
2929

30-
2. In **Layout** view > **Visual Properties** panel > **Map**, select **Custom Map From File**.
30+
1. In **Layout** view, select the **Visual Properties** panel, choose **Map**, and then select **Custom Map From File**.
3131

32-
![SSMRP_SelectCustomMap](../../reporting-services/mobile-reports/media/ssmrp-selectcustommap.png)
32+
:::image type="content" source="../../reporting-services/mobile-reports/media/ssmrp-selectcustommap.png" alt-text="Screenshot of the option to select a custom map highlighted.":::
3333

34-
3. In the **Open** dialog box, browse to the location of the SHP and DBF files and select both of them.
34+
1. In the **Open** dialog, browse to the location of the SHP and DBF files and select both of them.
3535

36-
![SSMRP_SelectDBFandSHP](../../reporting-services/mobile-reports/media/ssmrp-selectdbfandshp.png)
36+
:::image type="content" source="../../reporting-services/mobile-reports/media/ssmrp-selectdbfandshp.png" alt-text="Screenshot of the selected SHP and DBF files.":::
3737

3838
## Connect data to a custom map
3939
When you first add the custom map to your report, [!INCLUDE[SS_MobileReptPub_Short](../../includes/ss-mobilereptpub-short.md)] populates it with simulated geography data.
4040

41-
![SSMRP_MapsData](../../reporting-services/mobile-reports/media/ssmrp-mapsdata.png)
41+
:::image type="content" source="../../reporting-services/mobile-reports/media/ssmrp-mapsdata.png" alt-text="Screenshot of the simulated geography table.":::
4242

4343
Displaying real data in your custom map is the same as displaying data in the built-in maps. Follow the steps in [Maps in Reporting Services mobile reports](../../reporting-services/mobile-reports/maps-in-reporting-services-mobile-reports.md) to display your data.
4444

45-
### See also
45+
### Related content
4646
- [Custom maps in Reporting Services mobile reports](../../reporting-services/mobile-reports/custom-maps-in-reporting-services-mobile-reports.md)
4747
- [Maps in Reporting Services mobile reports](../../reporting-services/mobile-reports/maps-in-reporting-services-mobile-reports.md)
4848
- [Create and publish mobile reports with SQL Server Mobile Report Publisher](../../reporting-services/mobile-reports/create-mobile-reports-with-sql-server-mobile-report-publisher.md)

docs/reporting-services/mobile-reports/add-data-grids-to-mobile-reports-reporting-services.md

Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Add data grids to mobile reports | Reporting Services"
2+
title: "Add data grids to mobile reports"
33
description: You can present data in a grid in SQL Server Mobile Report Publisher. Choose a simple data grid, an indicator data grid, or a chart data grid.
44
author: maggiesMSFT
55
ms.author: maggies
@@ -9,7 +9,7 @@ ms.subservice: mobile-reports
99
ms.topic: conceptual
1010
ms.custom: updatefrequency5
1111
---
12-
# Add data grids to mobile reports | Reporting Services
12+
# Add data grids to mobile reports
1313

1414
[!INCLUDE [ssrs-mobile-report-deprecated](../../includes/ssrs-mobile-report-deprecated.md)]
1515

@@ -19,61 +19,63 @@ Sometimes the best visualization is the data itself. Learn about the three *data
1919
* Chart data grid
2020

2121
## Simple data grid
22-
The most basic, the simple data grid, can display multiple columns of data with custom formatting and headers.
22+
The simple data grid can display multiple columns of data with custom formatting and headers.
23+
24+
:::image type="content" source="../../reporting-services/mobile-reports/media/mobile-report-simple-data-grid.png" alt-text="Screenshot of a mobile report simple data grid.":::
2325

24-
![Screenshot of a mobile report simple data grid.](../../reporting-services/mobile-reports/media/mobile-report-simple-data-grid.png)
2526

2627
After you add a data grid to the design surface, you can connect it to real data.
2728

28-
1. Drag a simple data grid from the **Layout** tab to the design grid and make it the size you want.
29+
1. Drag a data grid from the **Layout** tab to the design grid and make it the size you want.
2930

30-
2. Get [data from Excel or a shared dataset](../../reporting-services/mobile-reports/data-for-reporting-services-mobile-reports.md).
31+
1. Get [data from Excel or a shared dataset](../../reporting-services/mobile-reports/data-for-reporting-services-mobile-reports.md).
3132

32-
3. Select the **Data** tab, and in the **Data properties** pane, under **Data for the grid view** select a data table.
33+
1. Select the **Data** tab.
3334

34-
4. In the **Columns** pane, select the columns you want. Reorder and rename them and set their format and aggregation.
35+
1. In the **Data properties** pane, under **Data for the grid view**, select a data table.
36+
37+
1. In the **Columns** pane, select the columns you want. Reorder and rename them and set their format and aggregation.
3538

36-
3739
## Indicator data grid
3840
You can add columns with gauges to an indicator data grid.
3941

40-
![Screenshot of a mobile report indicator data grid.](../../reporting-services/mobile-reports/media/mobile-report-indicator-data-grid.png)
42+
:::image type="content" source="../../reporting-services/mobile-reports/media/mobile-report-indicator-data-grid.png" alt-text="Screenshot of a mobile report indicator data grid.":::
4143

4244
1. Drag an indicator data grid from the **Layout** tab to the design grid and make it the size you want.
4345

44-
2. On the **Data** tab in the **Columns** pane, select **Add gauge column**.
46+
1. On the **Data** tab in the **Columns** pane, select **Add gauge column**.
4547

46-
3. Select **Options**, then select a **Gauge type**.
48+
1. Select **Options**, then select a **Gauge type**.
4749

48-
4. Set the **Value** and **Comparison** fields and **Value direction**, just as in [gauges you add directly to your mobile report](../../reporting-services/mobile-reports/add-gauges-to-mobile-reports-reporting-services.md).
50+
1. Set the **Value** and **Comparison** fields and **Value direction**, as in [Gauges you add directly to your mobile report](../../reporting-services/mobile-reports/add-gauges-to-mobile-reports-reporting-services.md).
4951

5052
The data grid automatically feeds the gauge only the data specific to that row of the data grid.
5153

5254
## Chart data grid
5355
You can add you can add columns with either gauges or charts to a chart data grid.
5456

55-
![Screenshot of a mobile report chart data grid.](../../reporting-services/mobile-reports/media/mobile-report-chart-data-grid.png)
57+
:::image type="content" source="../../reporting-services/mobile-reports/media/mobile-report-chart-data-grid.png" alt-text="Screenshot of a mobile report chart data grid.":::
5658

5759
When you add a chart column to a data grid, you need to add a separate data table to provide data for the chart in each row. This second data table needs to share a field with the main data table, to link each row to its associated chart data.
5860

5961
1. Drag a chart data grid from the **Layout** tab to the design grid and make it the size you want.
6062

6163
2. On the **Data** tab in the **Columns** pane, select **Add chart column**.
6264

63-
3. Get [data from Excel or a shared dataset](../../reporting-services/mobile-reports/data-for-reporting-services-mobile-reports.md) to add a second data table that shares a field with the main data table, if you haven't done so already.
65+
3. Get [data from Excel or a shared dataset](../../reporting-services/mobile-reports/data-for-reporting-services-mobile-reports.md) to add a second data table that shares a field with the main data table. Do this step if you haven't already.
6466

65-
4. Under **Data properties**, select the main data table in **Data for the Grid View**, then select the second table in **Reference Data for Chart Visualizations**.
67+
4. Under **Data properties**, select the main data table in **Data for the Grid View**. Then, select the second table in **Reference Data for Chart Visualizations**.
6668

6769
5. Select **Options**, then select **Chart type**.
6870

6971
6. Select **Chart data field**, **Source lookup**, and **Destination lookup**.
7072
These three properties determine how the data grid provides data to each chart in the column.
7173

7274
* **Source lookup** is set to a field in the data table in **Data for the Grid View**. This field acts as a per-row filter applied to the chart reference data table to provide data to the embedded chart for each row.
73-
* **Destination lookup** is the field in the data table in **Reference data for chart visualizations**. The data for the chart in each row will be joined on those two fields.
75+
* **Destination lookup** is the field in the data table in **Reference data for chart visualizations**. The data for the chart in each row is joined on those two fields.
7476
* **Chart data field** determines which metric in the **Reference data for chart visualizations** data table to use as the y-axis value or series in the chart in each row.
7577

76-
## See also
78+
## Related content
7779
* [Maps in Reporting Services mobile reports](../../reporting-services/mobile-reports/maps-in-reporting-services-mobile-reports.md)
7880
* [Navigators in Reporting Services mobile reports](../../reporting-services/mobile-reports/add-navigators-to-reporting-services-mobile-reports.md)
7981
* [Visualizations in Reporting Services mobile reports](../../reporting-services/mobile-reports/add-visualizations-to-reporting-services-mobile-reports.md)

0 commit comments

Comments
 (0)