Skip to content

Commit 074a7d0

Browse files
committed
[T-SQL] clean metadata
1 parent a8ae354 commit 074a7d0

File tree

3 files changed

+39
-31
lines changed

3 files changed

+39
-31
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,7 @@ Tools/NuGet/
1111
.openpublishing.build.mdproj
1212
.openpublishing.buildcore.ps1
1313
packages.config
14+
.docIndex/*
15+
1416

1517
**/.vscode/settings.json
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,28 @@
11
---
2-
description: "System Databases"
3-
title: "System Databases | Microsoft Docs"
4-
ms.custom: ""
5-
ms.date: "01/28/2019"
2+
title: System Databases
3+
description: System Databases
64
ms.prod: sql
75
ms.prod_service: "database-engine"
8-
ms.reviewer: ""
96
ms.technology:
107
ms.topic: conceptual
118
helpviewer_keywords:
129
- "system databases [SQL Server]"
1310
- "displaying system database data"
1411
- "modifying system data"
1512
- "viewing system database data"
16-
ms.assetid: 30468a7c-4225-4d35-aa4a-ffa7da4f1282
1713
author: WilliamDAssafMSFT
1814
ms.author: wiassaf
15+
ms.reviewer: ""
16+
ms.custom: ""
17+
ms.date: "01/28/2019"
1918
monikerRange: "=azuresqldb-current||>=sql-server-2016||>=sql-server-linux-2017||=azuresqldb-mi-current"
2019
---
20+
2121
# System Databases
2222

2323
[!INCLUDE [SQL Server Azure SQL Database](../../includes/applies-to-version/sql-asdb.md)]
24-
[!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] includes the following system databases.
24+
25+
[!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] includes the following system databases.
2526

2627
|System database|Description|
2728
|---------------------|-----------------|
@@ -35,41 +36,45 @@ monikerRange: "=azuresqldb-current||>=sql-server-2016||>=sql-server-linux-2017||
3536
> For Azure SQL Database single databases and elastic pools, only master Database and tempdb Database apply. For more information, see [What is an Azure SQL Database server](/azure/sql-database/sql-database-servers#what-is-an-azure-sql-database-server). For a discussion of tempdb in the context of Azure SQL Database, see [tempdb Database in Azure SQL Database](tempdb-database.md#tempdb-database-in-sql-database). For Azure SQL Managed Instance, all system databases apply. For more information on Managed Instances in Azure SQL Database, see [What is a Managed Instance](/azure/sql-database/sql-database-managed-instance)
3637
3738
## Modifying System Data
38-
[!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] does not support users directly updating the information in system objects such as system tables, system stored procedures, and catalog views. Instead, [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] provides a complete set of administrative tools that let users fully administer their system and manage all users and objects in a database. These include the following:
39+
40+
[!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] does not support users directly updating the information in system objects such as system tables, system stored procedures, and catalog views. Instead, [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] provides a complete set of administrative tools that let users fully administer their system and manage all users and objects in a database. These include the following:
3941

40-
- Administration utilities, such as [!INCLUDE[ssManStudioFull](../../includes/ssmanstudiofull-md.md)].
42+
- Administration utilities, such as [!INCLUDE[ssManStudioFull](../../includes/ssmanstudiofull-md.md)].
4143

42-
- SQL-SMO API. This lets programmers include complete functionality for administering [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] in their applications.
44+
- SQL-SMO API. This lets programmers include complete functionality for administering [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] in their applications.
4345

44-
- [!INCLUDE[tsql](../../includes/tsql-md.md)] scripts and stored procedures. These can use system stored procedures and [!INCLUDE[tsql](../../includes/tsql-md.md)] DDL statements.
46+
- [!INCLUDE[tsql](../../includes/tsql-md.md)] scripts and stored procedures. These can use system stored procedures and [!INCLUDE[tsql](../../includes/tsql-md.md)] DDL statements.
4547

46-
These tools shield applications from changes in the system objects. For example, [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] sometimes has to change the system tables in new versions of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] to support new functionality that is being added in that version. Applications issuing SELECT statements that directly reference system tables are frequently dependent on the old format of the system tables. Sites may not be able to upgrade to a new version of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] until they have rewritten applications that are selecting from system tables. [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] considers the system stored procedures, DDL, and SQL-SMO published interfaces, and works to maintain the backward compatibility of these interfaces.
48+
These tools shield applications from changes in the system objects. For example, [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] sometimes has to change the system tables in new versions of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] to support new functionality that is being added in that version. Applications issuing SELECT statements that directly reference system tables are frequently dependent on the old format of the system tables. Sites may not be able to upgrade to a new version of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] until they have rewritten applications that are selecting from system tables. [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] considers the system stored procedures, DDL, and SQL-SMO published interfaces, and works to maintain the backward compatibility of these interfaces.
4749

48-
[!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] does not support triggers defined on the system tables, because they might modify the operation of the system.
50+
[!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] does not support triggers defined on the system tables, because they might modify the operation of the system.
4951

5052
> [!NOTE]
51-
> System databases cannot reside on UNC share directories.
53+
> System databases cannot reside on UNC share directories.
5254
5355
## Viewing System Database Data
54-
You should not code [!INCLUDE[tsql](../../includes/tsql-md.md)] statements that directly query the system tables, unless that is the only way to obtain the information that is required by the application. Instead, applications should obtain catalog and system information by using the following:
56+
57+
You should not code [!INCLUDE[tsql](../../includes/tsql-md.md)] statements that directly query the system tables, unless that is the only way to obtain the information that is required by the application. Instead, applications should obtain catalog and system information by using the following:
5558

56-
- System catalog views
59+
- System catalog views
5760

58-
- SQL-SMO
61+
- SQL-SMO
5962

60-
- Windows Management Instrumentation (WMI) interface
63+
- Windows Management Instrumentation (WMI) interface
6164

62-
- Catalog functions, methods, attributes, or properties of the data API used in the application, such as ADO, OLE DB, or ODBC.
65+
- Catalog functions, methods, attributes, or properties of the data API used in the application, such as ADO, OLE DB, or ODBC.
6366

64-
- [!INCLUDE[tsql](../../includes/tsql-md.md)] system stored procedures and built-in functions.
67+
- [!INCLUDE[tsql](../../includes/tsql-md.md)] system stored procedures and built-in functions.
6568

6669
## Related Tasks
67-
[Back Up and Restore of System Databases (SQL Server)](../../relational-databases/backup-restore/back-up-and-restore-of-system-databases-sql-server.md)
70+
71+
- [Back Up and Restore of System Databases (SQL Server)](../../relational-databases/backup-restore/back-up-and-restore-of-system-databases-sql-server.md)
6872

69-
[Hide System Objects in Object Explorer](../../ssms/object/hide-system-objects-in-object-explorer.md)
73+
- [Hide System Objects in Object Explorer](../../ssms/object/hide-system-objects-in-object-explorer.md)
7074

7175
## Related Content
72-
[Catalog Views (Transact-SQL)](../../relational-databases/system-catalog-views/catalog-views-transact-sql.md)
76+
77+
- [Catalog Views (Transact-SQL)](../../relational-databases/system-catalog-views/catalog-views-transact-sql.md)
7378

74-
[Databases](../../relational-databases/databases/databases.md)
79+
- [Databases](../../relational-databases/databases/databases.md)
7580

docs/relational-databases/system-stored-procedures/sp-dropmergefilter-transact-sql.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
---
2+
title: sp_dropmergefilter (Transact-SQL)
23
description: "sp_dropmergefilter (Transact-SQL)"
3-
title: "sp_dropmergefilter (Transact-SQL) | Microsoft Docs"
4-
ms.custom: ""
5-
ms.date: "03/06/2017"
64
ms.prod: sql
75
ms.prod_service: "database-engine"
8-
ms.reviewer: ""
96
ms.technology: replication
107
ms.topic: "reference"
118
dev_langs:
@@ -15,16 +12,20 @@ f1_keywords:
1512
- "sp_dropmergefilter"
1613
helpviewer_keywords:
1714
- "sp_dropmergefilter"
18-
ms.assetid: 798586d7-05f3-4a5e-bea8-a34b7b52d0fd
1915
author: markingmyname
2016
ms.author: maghan
17+
ms.reviewer: ""
18+
ms.custom: ""
19+
ms.date: "03/06/2017"
2120
---
21+
2222
# sp_dropmergefilter (Transact-SQL)
23+
2324
[!INCLUDE [SQL Server](../../includes/applies-to-version/sqlserver.md)]
2425

25-
Drops a merge filter. **sp_dropmergefilter** drops all the merge filter columns defined on the merge filter that is to be dropped. This stored procedure is executed at the Publisher on the publication database.
26+
Drops a merge filter. **sp_dropmergefilter** drops all the merge filter columns defined on the merge filter that is to be dropped. This stored procedure is executed at the Publisher on the publication database.
2627

27-
![Topic link icon](../../database-engine/configure-windows/media/topic-link.gif "Topic link icon") [Transact-SQL Syntax Conventions](../../t-sql/language-elements/transact-sql-syntax-conventions-transact-sql.md)
28+
![Topic link icon](../../database-engine/configure-windows/media/topic-link.gif "Topic link icon") [Transact-SQL Syntax Conventions](../../t-sql/language-elements/transact-sql-syntax-conventions-transact-sql.md)
2829

2930
## Syntax
3031

0 commit comments

Comments
 (0)