Skip to content

Commit 12822b4

Browse files
authored
Merge pull request #26518 from rwestMSFT/rw-0323-typo-ad-hoc
[BULK] Fix common typos (ad-hoc)
2 parents 7f937c7 + caaa441 commit 12822b4

40 files changed

Lines changed: 64 additions & 64 deletions

File tree

azure-sql/database/connect-query-ssms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Completing this quickstart requires the following items:
4444
> [!IMPORTANT]
4545
> The scripts in this article are written to use the Adventure Works database. With a managed instance, you must either import the Adventure Works database into an instance database or modify the scripts in this article to use the Wide World Importers database.
4646
47-
If you simply want to run some ad-hoc queries without installing SSMS, use [the Azure portal's query editor to query a database in Azure SQL Database](query-editor.md).
47+
If you simply want to run some ad hoc queries without installing SSMS, use [the Azure portal's query editor to query a database in Azure SQL Database](query-editor.md).
4848

4949
## Get server connection information
5050

azure-sql/database/security-best-practice.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ Separation of Duties is not limited to the data in a database, but includes appl
374374

375375
- Make sure the person conducting the review is an individual other than the originating code author and knowledgeable in code-reviews and secure coding.
376376

377-
- Be sure to know all sources of code-changes. Code can be in T-SQL Scripts. It can be ad-hoc commands to be executed or be deployed in forms of Views, Functions, Triggers, and Stored Procedures. It can be part of SQL Agent Job definitions (Steps). It can also be executed from within SSIS packages, Azure Data Factory, and other services.
377+
- Be sure to know all sources of code-changes. Code can be in T-SQL Scripts. It can be ad hoc commands to be executed or be deployed in forms of Views, Functions, Triggers, and Stored Procedures. It can be part of SQL Agent Job definitions (Steps). It can also be executed from within SSIS packages, Azure Data Factory, and other services.
378378

379379
## Data protection
380380

@@ -487,7 +487,7 @@ Another technique for preventing unauthorized users from viewing data is to obfu
487487
> [!NOTE]
488488
> Dynamic Data Masking cannot be used to protect data from high-privilege users. Masking policies do not apply to users with administrative access like db_owner.
489489
490-
- Don't permit app users to run ad-hoc queries (as they may be able to work around Dynamic Data Masking).
490+
- Don't permit app users to run ad hoc queries (as they may be able to work around Dynamic Data Masking).
491491
- See the article, [Bypassing masking using inference or brute-force techniques](/sql/relational-databases/security/dynamic-data-masking#security-note-bypassing-masking-using-inference-or-brute-force-techniques) for details.
492492

493493
- Use a proper access control policy (via SQL permissions, roles, RLS) to limit user permissions to make updates in the masked columns. Creating a mask on a column doesn't prevent updates to that column. Users that receive masked data when querying the masked column, can update the data if they have write-permissions.

azure-sql/managed-instance/data-virtualization-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The data virtualization feature of Azure SQL Managed Instance allows you to exec
2121

2222
Data virtualization provides two ways of querying files intended for different sets of scenarios:
2323

24-
- [OPENROWSET syntax](#query-data-sources-using-openrowset) – optimized for ad-hoc querying of files. Typically used to quickly explore the content and the structure of a new set of files.
24+
- [OPENROWSET syntax](#query-data-sources-using-openrowset) – optimized for ad hoc querying of files. Typically used to quickly explore the content and the structure of a new set of files.
2525
- [CREATE EXTERNAL TABLE syntax](#external-tables) – optimized for repetitive querying of files using identical syntax as if data were stored locally in the database. External tables require several preparation steps compared to the OPENROWSET syntax, but allow for more control over data access. External tables are typically used for analytical workloads and reporting.
2626

2727
In either case, an [external data source](#external-data-source) must be created using the [CREATE EXTERNAL DATA SOURCE](/sql/t-sql/statements/create-external-data-source-transact-sql?view=azuresqldb-mi-current&preserve-view=true) T-SQL syntax, as demonstrated below.
@@ -144,7 +144,7 @@ WITH (
144144

145145
## Query data sources using OPENROWSET
146146

147-
The [OPENROWSET](/sql/t-sql/functions/openrowset-transact-sql) syntax enables instant ad-hoc querying while only creating the minimal number of database objects necessary.
147+
The [OPENROWSET](/sql/t-sql/functions/openrowset-transact-sql) syntax enables instant ad hoc querying while only creating the minimal number of database objects necessary.
148148

149149
`OPENROWSET` only requires creating the external data source (and possibly the credential) as opposed to the external table approach, which requires an [external file format](/sql/t-sql/statements/create-external-file-format-transact-sql?view=azuresqldb-mi-current&preserve-view=true) and the [external table]](/sql/t-sql/statements/create-external-table-transact-sql?view=azuresqldb-mi-current&preserve-view=true) itself.
150150

azure-sql/migration-guides/database/db2-to-sql-database-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Validate the default data type mappings, and change them based on requirements i
7474

7575
To convert the schema, follow these steps:
7676

77-
1. (Optional) Add dynamic or ad-hoc queries to statements. Right-click the node, and then choose **Add statements**.
77+
1. (Optional) Add dynamic or ad hoc queries to statements. Right-click the node, and then choose **Add statements**.
7878
1. Select **Connect to Azure SQL Database**.
7979
1. Enter connection details to connect your database in Azure SQL Database.
8080
1. Choose your target SQL Database from the drop-down list, or provide a new name, in which case a database will be created on the target server.

azure-sql/migration-guides/database/oracle-to-sql-database-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Validate the default data type mappings and change them based on requirements if
7777

7878
To convert the schema:
7979

80-
1. (Optional) Add dynamic or ad-hoc queries to statements. Right-click the node, and then select **Add statements**.
80+
1. (Optional) Add dynamic or ad hoc queries to statements. Right-click the node, and then select **Add statements**.
8181
1. Select the **Connect to Azure SQL Database** tab.
8282
1. In **SQL Database**, enter connection details to connect your database.
8383
1. Select your target SQL Database instance from the drop-down list, or enter a new name, in which case a database will be created on the target server.

azure-sql/migration-guides/managed-instance/db2-to-managed-instance-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Validate the default data type mappings, and change them based on requirements i
7474

7575
To convert the schema, follow these steps:
7676

77-
1. (Optional) Add dynamic or ad-hoc queries to statements. Right-click the node, and then choose **Add statements**.
77+
1. (Optional) Add dynamic or ad hoc queries to statements. Right-click the node, and then choose **Add statements**.
7878
1. Select **Connect to Azure SQL Managed Instance**.
7979
1. Enter connection details to connect to Azure SQL Managed Instance.
8080
1. Choose your target database from the drop-down list, or provide a new name, in which case a database will be created on the target server.

azure-sql/migration-guides/managed-instance/oracle-to-managed-instance-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Validate the default data type mappings and change them based on requirements if
7575

7676
To convert the schema:
7777

78-
1. (Optional) Add dynamic or ad-hoc queries to statements. Right-click the node, and then select **Add statements**.
78+
1. (Optional) Add dynamic or ad hoc queries to statements. Right-click the node, and then select **Add statements**.
7979
1. Select the **Connect to Azure SQL Managed Instance** tab.
8080
1. Enter connection details to connect your database in **SQL Database Managed Instance**.
8181
1. Select your target database from the drop-down list, or enter a new name, in which case a database will be created on the target server.

azure-sql/migration-guides/modernization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Whenever a Platform-as-a-Service (PaaS) solution doesn't fit your workload, Azur
9090

9191
#### Scenario 5: Meeting regulatory compliance: How does Azure SQL help meet regulatory compliance requirements?
9292

93-
[Azure Policy](/azure/governance/policy/overview) has built-in policies that help organizations meet regulatory compliance. Ad-hoc and customized policies can also be created. For more information, see [Azure Policy Regulatory Compliance controls for Azure SQL Database and SQL Managed Instance](../database/security-controls-policy.md). For an overview of compliance offerings, you can consult [Azure compliance documentation](/azure/compliance/).
93+
[Azure Policy](/azure/governance/policy/overview) has built-in policies that help organizations meet regulatory compliance. Ad hoc and customized policies can also be created. For more information, see [Azure Policy Regulatory Compliance controls for Azure SQL Database and SQL Managed Instance](../database/security-controls-policy.md). For an overview of compliance offerings, you can consult [Azure compliance documentation](/azure/compliance/).
9494

9595
### Getting started, the holistic approach
9696

azure-sql/migration-guides/virtual-machines/oracle-to-sql-on-azure-vm-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Validate the default data type mappings and change them based on requirements, i
135135

136136
To convert the schema, follow these steps:
137137

138-
1. (Optional) To convert dynamic or ad-hoc queries, right-click the node and select **Add statement**.
138+
1. (Optional) To convert dynamic or ad hoc queries, right-click the node and select **Add statement**.
139139

140140
1. Select **Connect to SQL Server** in the top menu.
141141
1. Enter connection details for your SQL Server on Azure VM.

azure-sql/toc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@
583583
href: database/cost-management.md
584584
- name: Connect and query
585585
items:
586-
- name: Connect and run ad-hoc queries
586+
- name: Connect and run ad hoc queries
587587
items:
588588
- name: Azure Data Studio
589589
href: /sql/azure-data-studio/quickstart-sql-database
@@ -877,7 +877,7 @@
877877
href: database/saas-multitenantdb-provision-and-catalog.md
878878
- name: Monitor database performance
879879
href: database/saas-multitenantdb-performance-monitoring.md
880-
- name: Run ad-hoc queries
880+
- name: Run ad hoc queries
881881
href: database/saas-multitenantdb-adhoc-reporting.md
882882
- name: Manage tenant schema
883883
href: database/saas-multitenantdb-schema-management.md

0 commit comments

Comments
 (0)