Skip to content

Commit 78779e2

Browse files
authored
Merge pull request #13649 from MicrosoftDocs/FromPublicRepo
Confirm merge from FromPublicRepo to master to sync with https://github.com/MicrosoftDocs/sql-docs (branch live)
2 parents 9e194e1 + 3c90ab5 commit 78779e2

96 files changed

Lines changed: 107 additions & 107 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/2014/analysis-services/instances/install-windows/checklist-use-powershell-to-verify-power-pivot-for-sharepoint.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ Category : Data Refresh
296296
EventID : 43
297297
Level : High
298298
Correlation : 5755879c-7cab-e097-8f80-f27895d44a77
299-
Message : The following error occured when working with the service application, Default PowerPivot Service Application. Skipping the service application..
299+
Message : The following error occurred when working with the service application, Default PowerPivot Service Application. Skipping the service application..
300300
301301
Timestamp : 4/14/2014 7:15:02 PM
302302
Area : PowerPivot Service
@@ -452,7 +452,7 @@ Get-SPExcelServiceApplication | Select typename, DisplayName, status
452452
#Write-Host ""
453453
Write-Host -ForegroundColor Green "PowerPivot Service Application pool"
454454
Write-Host -ForegroundColor Green ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
455-
# the following assumes there is only 1 PowerPivot Service Application, and returns that applicaitons pool name. if you have more than one, use the 2nd version
455+
# the following assumes there is only 1 PowerPivot Service Application, and returns that application's pool name. if you have more than one, use the 2nd version
456456
$poolname = [string](Get-PowerPivotServiceApplication | Select -Property applicationpool)
457457
$position = $poolname.lastindexof("=")
458458
$poolname = $poolname.substring($position+1)

docs/2014/analysis-services/tabular-model-programming-compatibility-levels-1050-1103/representation/relationship-representation-tabular.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ private Boolean createRelationship(string PKTableName, string PKColumnName, stri
4444
//Make sure PKTableName.PKColumnName is set as PK ==> <attribute>.usage == AMO.AttributeUsage.Key
4545
if (tabularDb.Dimensions[PKTableName].Attributes[PKColumnName].Usage != AMO.AttributeUsage.Key)
4646
{
47-
//... here we are 'fixing', if there is an issue with PKTableName.PKColumnName not beeing the PK of the table
47+
//... here we are 'fixing', if there is an issue with PKTableName.PKColumnName not being the PK of the table
4848
setPKColumn(tabularDb, PKTableName, PKColumnName);
4949
}
5050

docs/2014/database-engine/availability-groups/windows/specify-replicas-page-new-availability-group-wizard-add-replica-wizard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ manager: craigg
125125
Displays the name of the instance of [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] that hosts the availability replica.
126126

127127
**Backup Priority (Lowest=1, Highest=100)**
128-
Assign the priority for backups being performed on this replica relative to the other replicas in the same availability group. The default value is 50. You can select any other integer in the range of 0..100. 1 indicates the lowest priority, and 100 indicates the highest priority. If you set **Backup Priority** to 1, the availability replica will be choosen for performing backups only if no higher priority availability replica is currently available.
128+
Assign the priority for backups being performed on this replica relative to the other replicas in the same availability group. The default value is 50. You can select any other integer in the range of 0..100. 1 indicates the lowest priority, and 100 indicates the highest priority. If you set **Backup Priority** to 1, the availability replica will be chosen for performing backups only if no higher priority availability replica is currently available.
129129

130130
**Exclude Replica**
131131
To prevent this availability replica from ever being be chosen for performing backups. This is useful, for example, for a remote availability replica to which you never want backups to fail over.

docs/2014/database-engine/dev-guide/calendar-aware-date-and-time-udt-sample.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ manager: craigg
175175
private static readonly char[] allowedDoublePatternChars = new char[] { 'g', '\\' };
176176
177177
/// <summary>
178-
/// Each tick is 100 nanoseconds. This conversion factor when multipled by the number of
178+
/// Each tick is 100 nanoseconds. This conversion factor when multiplied by the number of
179179
/// days yields the number of ticks which make up that day. Ticks are interesting as they
180180
/// can be used to construct DateTime instances in order to perform various date based computations.
181181
/// </summary>

docs/2014/database-engine/dev-guide/supplementary-aware-string-manipulation-sample.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ if (length < 0)
145145
if ((start + length) <= 1)
146146
return (String.Empty);
147147
148-
// The 2 if statements below guarentee that the result will match the substring function in
148+
// The 2 if statements below guarantee that the result will match the substring function in
149149
// Transact-SQL which will initialize start to 1 by subtracting from the length.
150150
if (start <= 0 && length > 0)
151151
length--;
@@ -346,7 +346,7 @@ Public NotInheritable Class SurrogateStringFunction
346346
Return String.Empty
347347
End If
348348
349-
' The 2 if statements below guarentee that the result will match the substring function in
349+
' The 2 if statements below guarantee that the result will match the substring function in
350350
' Transact-SQL which will initialize start to 1 by subtracting from the length.
351351
If start <= 0 AndAlso length > 0 Then
352352
length -= 1

docs/2014/database-engine/invoke-sqlcmd-cmdlet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Invoke-Sqlcmd "SELECT DB_NAME() AS DatabaseName;"
9595
Invoke-Sqlcmd -Query "PRINT N'abc';" -Verbose
9696
```
9797

98-
Not all of the **sqlcmd** parameters are needed in a PowerShell environment. For example, Windows PowerShell formats all output from cmdlets, so the **sqlcmd** parameters specifying formatting options are not implemented in **Invoke-Sqlcmd**. The follwoing table shows the relationship between the **Invoke-Sqlcmd** parameters and **sqlcmd** options:
98+
Not all of the **sqlcmd** parameters are needed in a PowerShell environment. For example, Windows PowerShell formats all output from cmdlets, so the **sqlcmd** parameters specifying formatting options are not implemented in **Invoke-Sqlcmd**. The following table shows the relationship between the **Invoke-Sqlcmd** parameters and **sqlcmd** options:
9999

100100
|Description|sqlcmd option|Invoke-Sqlcmd parameter|
101101
|-----------------|-------------------|------------------------------|

docs/2014/database-engine/troubleshooting-sql-server-managed-backup-to-windows-azure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ manager: craigg
7676

7777
SmartBackupAdminXevent with the following messages/message prefixes:
7878

79-
*"An internal error occured while configuring SQL Server Managed Backup to Azure default settings for instance. Error might be transient."*
79+
*"An internal error occurred while configuring SQL Server Managed Backup to Azure default settings for instance. Error might be transient."*
8080

8181
*"Probably experiencing connectivity issues with SQL Server. Skipping database in the current iteration."*
8282

docs/2014/relational-databases/blob/create-alter-and-drop-filetables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ GO
169169
|Check constraints|The system-defined check constraints enforce the following requirements:<br /><br /> Valid filenames.<br /><br /> Valid file attributes.<br /><br /> Parent object must be a directory.<br /><br /> Namespace hierarchy is locked during file manipulation.|
170170

171171
**Naming convention for the system-defined constraints**
172-
The system-defined constaints described above are named in the format **\<constraintType>_\<tablename>[\_\<columnname>]\_\<uniquifier>** where:
172+
The system-defined constraints described above are named in the format **\<constraintType>_\<tablename>[\_\<columnname>]\_\<uniquifier>** where:
173173

174174
- *<constraint_type>* is CK (check constraint), DF (default constraint), FK (foreign key), PK (primary key), or UQ (unique constraint).
175175

docs/2014/relational-databases/clr-integration-database-objects-user-defined-types/creating-user-defined-types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public struct Point : INullable
7878
public override string ToString()
7979
{
8080
// Since InvokeIfReceiverIsNull defaults to 'true'
81-
// this test is unneccesary if Point is only being called
81+
// this test is unnecessary if Point is only being called
8282
// from SQL.
8383
if (this.IsNull)
8484
return "NULL";
@@ -227,7 +227,7 @@ Imports System.Text
227227
' Use StringBuilder to provide string representation of UDT.
228228
Public Overrides Function ToString() As String
229229
' Since InvokeIfReceiverIsNull defaults to 'true'
230-
' this test is unneccesary if Point is only being called
230+
' this test is unnecessary if Point is only being called
231231
' from SQL.
232232
If Me.IsNull Then
233233
Return "NULL"

docs/2014/relational-databases/databases/manage-metadata-when-making-a-database-available-on-another-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ manager: craigg
5050

5151
Some applications depend on information, entities, and/or objects that are outside of the scope of a single user database. Typically, an application has dependencies on the **master** and **msdb** databases, and also on the user database. Anything stored outside of a user database that is required for the correct functioning of that database must be made available on the destination server instance. For example, the logins for an application are stored as metadata in the **master** database, and they must be re-created on the destination server. If an application or database maintenance plan depends on [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Agent jobs, whose metadata is stored in the **msdb** database, you must re-create those jobs on the destination server instance. Similarly, the metadata for a server-level trigger is stored in **master**.
5252

53-
When you move the database for an application to another server instance, you must re-create all the metadata of the dependant entities and objects in **master** and **msdb** on the destination server instance. For example, if a database application uses server-level triggers, just attaching or restoring the database on the new system is not enough. The database will not work as expected unless you manually re-create the metadata for those triggers in the **master** database.
53+
When you move the database for an application to another server instance, you must re-create all the metadata of the dependent entities and objects in **master** and **msdb** on the destination server instance. For example, if a database application uses server-level triggers, just attaching or restoring the database on the new system is not enough. The database will not work as expected unless you manually re-create the metadata for those triggers in the **master** database.
5454

5555
## <a name="information_entities_and_objects"></a> Information, Entities, and Objects That Are Stored Outside of User Databases
5656
The remainder of this topic summarizes the potential issues that might affect a database that is being made available on another server instance. You might have to re-create one or more of the types of information, entities, or objects listed in the following list. To see a summary, click the link for the item.

0 commit comments

Comments
 (0)