Skip to content

Commit beb2257

Browse files
authored
Merge pull request #20634 from MicrosoftDocs/master
11/08 PM Publish
2 parents 0a9e0d5 + 11f625a commit beb2257

4 files changed

Lines changed: 15 additions & 18 deletions

File tree

docs/azure-data-studio/quickstart-oracle.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ To complete this quickstart, you need Azure Data Studio and access to Oracle dat
3939

4040
![New Connection Screen](./media/quickstart-oracle/new-connection-screen.png)
4141

42+
> [!NOTE]
43+
> Make sure that the Oracle database user used to connect has permissions to enumerate and access objects you are planning to explore. At least `CONNECT` and `SELECT ANY DICTIONARY` permissions should be granted to the connecting user.
44+
4245
4. Click **Connect** to establish the connection.
4346

4447
## Explore database objects

docs/mdx/operators-mdx-syntax.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: "Operators (MDX Syntax)"
33
title: "Operators (MDX Syntax) | Microsoft Docs"
4-
ms.date: 06/04/2018
4+
ms.date: 11/08/2021
55
ms.prod: sql
66
ms.technology: analysis-services
77
ms.custom: mdx
@@ -48,10 +48,6 @@ author: minewiskan
4848

4949
- IS
5050

51-
- AS
52-
53-
- DISTINCT
54-
5551
- :
5652

5753
- ^
@@ -60,8 +56,6 @@ author: minewiskan
6056

6157
- +, -
6258

63-
- EXISTING
64-
6559
- <>, >=, =, \<=, >, <
6660

6761
- NOT

docs/relational-databases/security/security-center-for-sql-server-database-engine-and-azure-sql-database.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ author: VanMSFT
2020
ms.author: vanto
2121
monikerRange: ">=aps-pdw-2016||=azuresqldb-current||=azure-sqldw-latest||>=sql-server-2016||>=sql-server-linux-2017||=azuresqldb-mi-current"
2222
---
23-
# Security Center for SQL Server Database Engine and Azure SQL Database
23+
# Security for SQL Server Database Engine and Azure SQL Database
2424
[!INCLUDE[SQL Server Azure SQL Database Synapse Analytics PDW ](../../includes/applies-to-version/sql-asdb-asdbmi-asa-pdw.md)]
2525

2626
This page provides links to help you locate the information that you need about security and protection in the [!INCLUDE[ssDEnoversion](../../includes/ssdenoversion-md.md)] and [!INCLUDE[ssSDSFull](../../includes/sssdsfull-md.md)].
@@ -91,4 +91,4 @@ monikerRange: ">=aps-pdw-2016||=azuresqldb-current||=azure-sqldw-latest||>=sql-s
9191
[Database Engine Features and Tasks](../../sql-server/what-s-new-in-sql-server-ver15.md)
9292
[Protecting Your SQL Server Intellectual Property](../../relational-databases/security/protecting-your-sql-server-intellectual-property.md)
9393

94-
[!INCLUDE[get-help-security](../../includes/get-help-security.md)]
94+
[!INCLUDE[get-help-security](../../includes/get-help-security.md)]

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -295,31 +295,31 @@ EXEC sp_addlinkedserver
295295
-- Configure the linked server
296296
-- Add one Azure SQL Database as Linked Server
297297
EXEC sp_addlinkedserver
298-
@server='myLinkedServer', -- here you can specify the name of the linked server
298+
@server='LinkedServerName', -- here you can specify the name of the linked server
299299
@srvproduct='',
300300
@provider='sqlncli', -- using SQL Server Native Client
301-
@datasrc='myServer.database.windows.net', -- add here your server name
301+
@datasrc='ServerName.database.windows.net', -- add here your server name
302302
@location='',
303303
@provstr='',
304-
@catalog='myDatabase' -- add here your database name as initial catalog (you cannot connect to the master database)
304+
@catalog='DatabaseName' -- add here your database name as initial catalog (you cannot connect to the master database)
305305

306306
-- Add credentials and options to this linked server
307307
EXEC sp_addlinkedsrvlogin
308-
@rmtsrvname = 'myLinkedServer',
308+
@rmtsrvname = 'LinkedServerName',
309309
@useself = 'false',
310-
@rmtuser = 'myLogin', -- add here your login on Azure DB
310+
@rmtuser = 'LoginName', -- add here your login on Azure DB
311311
@rmtpassword = 'myPassword' -- add here your password on Azure DB
312312

313-
EXEC sp_serveroption 'myLinkedServer', 'rpc out', true;
313+
EXEC sp_serveroption 'LinkedServerName', 'rpc out', true;
314314

315315
-- Now you can use the linked server to execute 4-part queries
316316
-- You can create a new table in the Azure DB
317-
EXEC ('CREATE TABLE t1tutut2(col1 int not null CONSTRAINT PK_col1 PRIMARY KEY CLUSTERED (col1) )') at myLinkedServer
317+
EXEC ('CREATE TABLE SchemaName.TableName(col1 int not null CONSTRAINT PK_col1 PRIMARY KEY CLUSTERED (col1) )') at LinkedServerName
318318
-- Insert data from your local SQL Server
319-
EXEC ('INSERT INTO t1tutut2 VALUES(1),(2),(3)') at myLinkedServer
319+
EXEC ('INSERT INTO SchemaName.TableName VALUES(1),(2),(3)') at LinkedServerName
320320

321321
-- Query the data using 4-part names
322-
SELECT * FROM myLinkedServer.myDatabase.dbo.myTable
322+
SELECT * FROM LinkedServerName.DatabaseName.SchemaName.TableName
323323
```
324324

325325
### H. Create SQL Managed Instance linked server with managed identity Azure AD authentication

0 commit comments

Comments
 (0)