You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/analysis-services/instances/high-availability-and-scalability-in-analysis-services.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,7 @@ manager: kfile
79
79
|Multidimensional models using MOLAP storage|Choose a balanced configuration that accommodates disk IO for loading data quickly and sufficient RAM for cached data.|
80
80
|Multidimensional models using ROLAP storage.|Maximize disk IO and minimize network latency.|
81
81
82
-
## Highly availability and redundancy through WSFC
82
+
## High availability and redundancy through WSFC
83
83
Analysis Services can be installed into an existing Windows Server Failover Cluster (WSFC) to achieve high availability that restores service within the shortest time possible.
84
84
85
85
Failover clusters provide full access (read and writeback) to the database, but only one node at a time. Secondary databases run on additional nodes in the cluster, as replacement servers if the first node goes down.
Copy file name to clipboardExpand all lines: docs/reporting-services/report-builder/rendering-to-html-report-builder-and-ssrs.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,9 +20,7 @@ manager: "kfile"
20
20
---
21
21
# Rendering to HTML (Report Builder and SSRS)
22
22
The HTML rendering extension renders a paginated report in HTML format. The rendering extension can also produce fully formed HTML pages or fragments of HTML to embed in other HTML pages. All HTML is generated with UTF-8 encoding.
23
-
24
-
The HTML rendering extension is the default rendering extension for reports that are viewed in a browser, including when run in the [!INCLUDE[ssRSCurrent](../../includes/ssrscurrent-md.md)] web portal.
25
-
23
+
26
24
The HTML rendering extension is the default rendering extension for reports that are viewed in a browser, including when run in the [!INCLUDE[ssRSCurrent](../../includes/ssrscurrent-md.md)] web portal. The HTML rendering extension can render HTML as a fragment or as a full HTML document. If the HTML is a fragment, the **HEAD**, **HTML**, and **BODY** tags of the HTML document are removed. Only the contents of the **BODY** tag are rendered. This is useful for embedding the HTML in the HTML produced by another application.
27
25
28
26
In some scenarios, report parameters can be used to launch script injection attacks when rendering reports to HTML. For more information about securing reports, see [Secure Reports and Resources](../../reporting-services/security/secure-reports-and-resources.md).
Returns a **datetimeoffset** value for the specified date and time and with the specified offsets and precision.
30
+
This function returns a **datetimeoffset** value for the specified date and time arguments. The returned value has a precision specified by the precision argument, and offsets determined by the hour and minute offset arguments.
31
31
32
32
[Transact-SQL Syntax Conventions](../../t-sql/language-elements/transact-sql-syntax-conventions-transact-sql.md)
An integer expression that specifies a fractional value.
61
61
62
62
*hour_offset*
63
-
Integer expression specifying the hour portion of the time zone offset.
63
+
An integer expression that specifies the hour portion of the time zone offset.
64
64
65
65
*minute_offset*
66
-
Integer expression specifying the minute portion of the time zone offset.
66
+
An integer expression that specifies the minute portion of the time zone offset.
67
67
68
68
*precision*
69
-
Integer literal specifying the precision of the **datetimeoffset** value to be returned.
69
+
An integer literal that specifies the precision of the **datetimeoffset** value that `DATETIMEOFFSETFROMPARTS` will return.
70
70
71
71
## Return types
72
72
**datetimeoffset(***precision***)**
73
73
74
74
## Remarks
75
-
**DATETIMEOFFSETFROMPARTS** returns a fully initialized **datetimeoffset** data type. The offset arguments are used to represent the time zone offset. If the offset arguments are omitted, then the time zone offset is assumed to be 00:00, that is, there is no time zone offset. If the offset arguments are specified, then both arguments must be present and both must be positive or negative. If *minute_offset* is specified without *hour_offset*, an error is raised. If other arguments are not valid, then an error is raised. If required arguments are null, then a null is returned. However, if the *precision* argument is null, then an error is raised.
76
-
77
-
The *fractions* argument depends on the *precision* argument. For example, if *precision* is 7, then each fraction represents 100 nanoseconds; if *precision* is 3, then each fraction represents a millisecond. If the value of *precision* is zero, then the value of *fractions* must also be zero; otherwise, an error is raised.
75
+
`DATETIMEOFFSETFROMPARTS` returns a fully initialized **datetimeoffset** data type. `DATETIMEOFFSETFROMPARTS` uses the offset arguments to represent the time zone offset. If the offset arguments are omitted, `DATETIMEOFFSETFROMPARTS` assumes a time zone offset of 00:00 - in other words, no time zone offset at all. For specified offset arguments, `DATETIMEOFFSETFROMPARTS` expects values for both arguments, and either both positive or both negative values for those arguments. For a specified *minute_offset* without a specified *hour_offset* value, `DATETIMEOFFSETFROMPARTS` will raise an error. If other arguments have invalid values, `DATETIMEOFFSETFROMPARTS` will raise an error. `DATETIMEOFFSETFROMPARTS` returns null if at least one required argument has a null value. However, if the *precision* argument has a null value, `DATETIMEOFFSETFROMPARTS` will raise an error.
78
76
79
-
This function is capable of being remoted to [!INCLUDE[ssCurrent](../../includes/sscurrent-md.md)] servers and above. It will not be remoted to servers that have a version below [!INCLUDE[ssCurrent](../../includes/sscurrent-md.md)].
77
+
The *fractions* argument depends on the *precision* argument. For example, for a *precision* value of 7, each fraction represents 100 nanoseconds; for a *precision* of 3, each fraction represents a millisecond. For a *precision* value of zero, the value of *fractions* must also be zero; otherwise, `DATETIMEOFFSETFROMPARTS` will raise an error.
78
+
79
+
his function supports remoting to [!INCLUDE[ssCurrent](../../includes/sscurrent-md.md)] servers and above. It will not support remoting to servers that have a version below [!INCLUDE[ssCurrent](../../includes/sscurrent-md.md)].
80
80
81
81
## Examples
82
82
83
-
### A. Simple example without fractions of a second
0 commit comments