Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit ddf99ff

Browse files
author
MightyPen
committed
Tweaks.
1 parent 5cb0c1b commit ddf99ff

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

docs/reporting-services/branding-the-web-portal.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,10 @@ The files must have the names listed above. The zip file can be named however yo
3333
The metadata.xml file allows you to set the name of the brand package, and has a reference entry for both your colors.json and logo.png files.
3434

3535
To change the name of your brand package, change the **name** attribute of the **SystemResourcePackage** element.
36-
36+
37+
```xml
3738
name="Multicolored example brand"
39+
```
3840

3941
You can optionally include a logo picture in your brand package. This item would be listed within the Contents element.
4042

docs/samples/wide-world-importers-dw-use-of-sql-server-features.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,11 @@ EXECUTE [Application].[Configuration_ApplyPolyBase]
3131
This will create an external table `dbo.CityPopulationStatistics` that references a public data set that contains population data for cities in the United States, hosted in Azure blob storage. You are encouraged to review the code in the stored procedure to understand the configuration process. If you want to host your own data in Azure blob storage and keep it secure from general public access, you will need to undertake additional configuration steps. The following query returns the data from that external data set:
3232

3333
```sql
34-
SELECT CityID, StateProvinceCode, CityName, YearNumber, LatestRecordedPopulation FROM dbo.CityPopulationStatistics;
34+
SELECT
35+
CityID, StateProvinceCode, CityName,
36+
YearNumber, LatestRecordedPopulation
37+
FROM
38+
dbo.CityPopulationStatistics;
3539
```
3640

3741
To understand which cities might be of interest for further expansion, the following query looks at the growth rate of cities, and returns the top 100 largest cities with significant growth, and where Wide World Importers does not have a sales presence. The query involves a join between the remote table `dbo.CityPopulationStatistics` and the local table `Dimension.City`, and a filter involving the local table `Fact.Sales`.

0 commit comments

Comments
 (0)