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

Commit 7076fcb

Browse files
authored
Merge pull request #7368 from MicrosoftDocs/master
9/19 AM Publish
2 parents 4b8dc15 + 904d3a9 commit 7076fcb

14 files changed

Lines changed: 137 additions & 107 deletions

docs/relational-databases/indexes/create-filtered-indexes.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,9 @@ monikerRange: "=azuresqldb-current||>=sql-server-2016||=sqlallproducts-allversio
6767

6868
### <a name="Restrictions"></a> Limitations and Restrictions
6969

70-
- You cannot create a filtered index on a view. However, the query optimizer can benefit from a filtered index defined on a table that is referenced in a view. The query optimizer considers a filtered index for a query that selects from a view if the query results will be correct.
70+
- You cannot create a filtered index on a view. However, the query optimizer can benefit from a filtered index defined on a table that is referenced in a view. The query optimizer considers a filtered index for a query that selects from a view if the query results will be correct.
71+
72+
- You cannot create a filtered index on a table when the column accessed in the filter expression is of a CLR data type.
7173

7274
- Filtered indexes have the following advantages over indexed views:
7375

docs/relational-databases/system-catalog-views/sys-soap-endpoints-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ manager: craigg
3939
|**is_sql_language_enabled**|**bit**|1 = BATCHES = ENABLED option was specified, meaning that ad-hoc SQL batches are allowed on the endpoint.|
4040
|**wsdl_generator_procedure**|**nvarchar(776)**|The three-part name of the stored procedure that implements this method.<br /><br /> Names of methods require strict three-part syntax. one, two, or four-part names are not allowed.|
4141
|**default_database**|**sysname**|The name of the default database given in the DATABASE = option.<br /><br /> NULL = DEFAULT was specified.|
42-
|**default_namespace**|**nvarchar(384)**|The default namespace specified in the NAMESPACE = option, or 'http://tempuri.org' if DEFAULT was specified instead.|
42+
|**default_namespace**|**nvarchar(384)**|The default namespace specified in the NAMESPACE = option, or `http://tempuri.org` if DEFAULT was specified instead.|
4343
|**default_result_schema**|**tinyint**|The default value of the SCHEMA = option.<br /><br /> 0 = NONE<br /><br /> 1 = STANDARD|
4444
|**default_result_schema_desc**|**nvarchar(60)**|Description of the default value of the SCHEMA = option.<br /><br /> NONE<br /><br /> STANDARD|
4545
|**is_xml_charset_enforced**|**bit**|0 = CHARACTER_SET = SQL option was specified.<br /><br /> 1 = CHARACTER_SET = XML option was specified.|

docs/reporting-services/application-integration/integrating-reporting-services-into-applications.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Integrating Reporting Services into Applications | Microsoft Docs"
3-
ms.date: 10/19/2017
3+
ms.date: 09/18/2018
44
ms.prod: reporting-services
55
ms.prod_service: "reporting-services-native"
66
ms.technology: application-integration
@@ -23,26 +23,26 @@ monikerRange: "= sql-server-2016 || = sqlallproducts-allversions"
2323
> [!NOTE]
2424
> Starting with SQL Server 2017 Reporting Services, REST API access is available for developing solutions. SOAP API access has been deprecated. For more information, see [Develop with the REST APIs for Reporting Services](../developer/rest-api.md).
2525
26-
There are three options for integrating [!INCLUDE[ssRSnoversion](../../includes/ssrsnoversion-md.md)] into custom applications: the Report Server Web service, also known as the [!INCLUDE[ssRSnoversion](../../includes/ssrsnoversion-md.md)] SOAP API, the ReportViewer controls for [!INCLUDE[msCoName](../../includes/msconame-md.md)] [!INCLUDE[vsprvs](../../includes/vsprvs-md.md)], and URL access. Each option provides a different approach for integrating [!INCLUDE[ssRSnoversion](../../includes/ssrsnoversion-md.md)] into your applications.
26+
There are three options for integrating [!INCLUDE[ssRSnoversion](../../includes/ssrsnoversion-md.md)] into custom applications: the Report Server Web service, also known as the [!INCLUDE[ssRSnoversion](../../includes/ssrsnoversion-md.md)] SOAP API, the Report Viewer controls for [!INCLUDE[msCoName](../../includes/msconame-md.md)] [!INCLUDE[vsprvs](../../includes/vsprvs-md.md)], and URL access. Each option provides a different approach for integrating [!INCLUDE[ssRSnoversion](../../includes/ssrsnoversion-md.md)] into your applications.
2727

2828
## Report server web service
2929

3030
The Report Server Web service is the primary interface for developing against [!INCLUDE[ssRSnoversion](../../includes/ssrsnoversion-md.md)]. Whether you are developing code to manage your report catalog or developing code to render reports to a supported format, the Web service exposes all the necessary methods to integrate [!INCLUDE[ssRSnoversion](../../includes/ssrsnoversion-md.md)] into your applications. An example of one such application is Report Manager, which is included with [!INCLUDE[ssRSnoversion](../../includes/ssrsnoversion-md.md)]; it uses the Web service to manage the report server database.
3131

32-
## ReportViewer controls for Visual Studio
32+
## Report Viewer controls for Visual Studio
3333

34-
The ReportViewer controls available for [!INCLUDE[vsprvs](../../includes/vsprvs-md.md)] are used for integrating report viewing into your applications. There are two controls: one for Windows Forms-based applications and one for Web Forms applications. Each control provides the capability for viewing reports that have been deployed to a report server as well as the ability to render reports that exist in an environment where a report server has not been installed.
34+
The Report Viewer controls available for [!INCLUDE[vsprvs](../../includes/vsprvs-md.md)] are used for integrating report viewing into your applications. There are two controls: one for Windows Forms-based applications and one for Web Forms applications. Each control provides the capability for viewing reports that have been deployed to a report server as well as the ability to render reports that exist in an environment where a report server has not been installed.
3535

3636
## URL access
37-
URL access is another option for integrating report viewing into your applications if the ReportViewer controls are not an option. In addition, URL access is useful for sending links to reports to users via e-mail.
37+
URL access is another option for integrating report viewing into your applications if the Report Viewer controls are not an option. In addition, URL access is useful for sending links to reports to users via e-mail.
3838

3939
## In this section
4040

4141
[Integrating Reporting Services Using SOAP](../../reporting-services/application-integration/integrating-reporting-services-using-soap.md)
4242
Describes how to integrate [!INCLUDE[ssRSnoversion](../../includes/ssrsnoversion-md.md)] report navigation and management into your existing business applications using the Report Server Web service.
4343

44-
[Integrating Reporting Services Using the ReportViewer Controls](../../reporting-services/application-integration/integrating-reporting-services-using-reportviewer-controls.md)
45-
Describes how to integrate report viewing into your existing applications using the ReportViewer controls.
44+
[Integrating Reporting Services Using the Report Viewer Controls](../../reporting-services/application-integration/integrating-reporting-services-using-reportviewer-controls.md)
45+
Describes how to integrate report viewing into your existing applications using the Report Viewer controls.
4646

4747
[Integrating Reporting Services Using URL Access](../../reporting-services/application-integration/integrating-reporting-services-using-url-access.md)
4848
Describes how to integrate [!INCLUDE[ssRSnoversion](../../includes/ssrsnoversion-md.md)] report navigation into your existing business applications using URL access.
Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Data collection in ReportViewer Control 2016 | Microsoft Docs"
3-
ms.date: 09/06/2016
3+
ms.date: 09/18/2018
44
ms.prod: reporting-services
55
ms.prod_service: "reporting-services-native"
66
ms.technology: application-integration
@@ -13,20 +13,21 @@ author: markingmyname
1313
ms.author: maghan
1414
---
1515
# Integrating Reporting Services Using ReportViewer Controls - Data Collection
16-
By default, the ReportViewer Control collects anonymous usage information in order for Microsoft to better understand how customers are making use of the control. By creating a better understanding of how customers are deploying and using the Viewer Control, future development can be focused on improvements that deliver the most value to customers.
1716

18-
For an explanation of the user data collection and use practices for Microsoft SQL Server 2016 releases and any other products and services, please refer to this [privacy statement]((http://go.microsoft.com/fwlink/?LinkID=868444)).
17+
Anonymous usage data is collected by the control to better understand how customers make use of the product. Usage data enables future development to be focused on improvements that are most relevant to customers.
1918

20-
## Opting out of telemetry
19+
An explanation of the data collection and usage practices of Microsoft SQL Server and Report Viewer are available in the [privacy statement]((http://go.microsoft.com/fwlink/?LinkID=868444)).
2120

22-
Telemetry can be disabled programmatically through the “EnableTelemetry”. This can be done by editing the .aspx page hosting the control
21+
## Opting out of data collection
22+
23+
Collection of usage data can be disabled through the ```EnableTelemetry``` property.
2324

2425
```
25-
\<rsweb:ReportViewer ID="ReportViewer1" runat="server" EnableTelemetry="false">
26-
\</rsweb:ReportViewer>
26+
<rsweb:ReportViewer ID="ReportViewer1" runat="server" EnableTelemetry="false">
27+
</rsweb:ReportViewer>
2728
```
2829

29-
Or, pragmatically before the control is rendered such as in the hosting page’s Page_Load call.
30+
Or pragmatically before the control is rendered.
3031

3132
```
3233
protected void Page_Load(object sender, EventArgs e)
@@ -36,8 +37,8 @@ protected void Page_Load(object sender, EventArgs e)
3637
```
3738
## See also
3839

39-
[Using the WebForms ReportViewer Control](../../reporting-services/application-integration/using-the-webforms-reportviewer-control.md)
40-
[Integrating Reporting Services Using the ReportViewer Controls](../../reporting-services/application-integration/integrating-reporting-services-using-reportviewer-controls.md)
40+
[Using the WebForms Report Viewer Control](../../reporting-services/application-integration/using-the-webforms-reportviewer-control.md)
41+
[Integrating Reporting Services Using the Report Viewer Controls](../../reporting-services/application-integration/integrating-reporting-services-using-reportviewer-controls.md)
4142

4243

4344

0 commit comments

Comments
 (0)