Skip to content

Commit 67a26e1

Browse files
authored
Merge pull request #178217 from dimitri-furman/dimitri-furman-1
Clarified supportability with PE configured
2 parents f98037d + ecb2eab commit 67a26e1

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

articles/azure-sql/database/active-geo-replication-overview.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,8 @@ To create a geo-secondary in a subscription different from the subscription of t
199199
> [!NOTE]
200200
> Cross-subscription geo-replication operations including setup and geo-failover are only supported using T-SQL commands.
201201
>
202+
> Adding a geo-secondary using T-SQL is not supported when the primary and/or secondary servers have a [private endpoint](private-endpoint-overview.md) configured, and [public network access is denied](connectivity-settings.md#deny-public-network-access). If private endpoint is configured but public network access is allowed, adding a geo-secondary when connected to the primary server from a public IP address is supported. Once a geo-secondary is added, public access can be denied.
203+
>
202204
> Creating a geo-secondary on a logical server in a different Azure tenant is not supported when [Azure Active Directory only](https://techcommunity.microsoft.com/t5/azure-sql/azure-active-directory-only-authentication-for-azure-sql/ba-p/2417673) authentication for Azure SQL is active (enabled) on either primary or secondary logical server.
203205
204206
## <a name="keeping-credentials-and-firewall-rules-in-sync"></a> Keep credentials and firewall rules in sync

articles/azure-sql/database/database-copy.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,8 @@ Start copying the source database with the [CREATE DATABASE ... AS COPY OF](/sql
8888

8989
> [!NOTE]
9090
> Terminating the T-SQL statement does not terminate the database copy operation. To terminate the operation, drop the target database.
91-
> [!NOTE]
92-
> Database copy is not supported when the source and/or destination servers have a private endpoint configured and public network access is disabled.
93-
If private endpoint is configured but public network access is allowed, initiating database copy when connected to the destination server from a public IP address will succeed.
94-
To determine the source IP address of current connection, execute `SELECT client_net_address FROM sys.dm_exec_connections WHERE session_id = @@SPID;`
95-
96-
91+
>
92+
> Database copy is not supported when the source and/or destination servers have a [private endpoint](private-endpoint-overview.md) configured and [public network access is denied](connectivity-settings.md#deny-public-network-access). If private endpoint is configured but public network access is allowed, initiating database copy when connected to the destination server from a public IP address is supported. Once the copy operation completes, public access can be denied.
9793
9894
> [!IMPORTANT]
9995
> Selecting backup storage redundancy when using T-SQL CREATE DATABASE ... AS COPY OF command is not supported yet.
@@ -136,7 +132,7 @@ CREATE DATABASE Database2 AS COPY OF server1.Database1;
136132
```
137133

138134
> [!IMPORTANT]
139-
> Both servers' firewalls must be configured to allow inbound connection from the IP of the client issuing the T-SQL CREATE DATABASE ... AS COPY OF command.
135+
> Both servers' firewalls must be configured to allow inbound connection from the IP of the client issuing the T-SQL CREATE DATABASE ... AS COPY OF command. To determine the source IP address of current connection, execute `SELECT client_net_address FROM sys.dm_exec_connections WHERE session_id = @@SPID;`
140136
141137
### Copy to a different subscription
142138

0 commit comments

Comments
 (0)