Skip to content

Commit bdaab63

Browse files
Clarified supportability with PE configured
1 parent 99742c1 commit bdaab63

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
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 configured, and public network access is disabled. If private endpoint is configured but public network access is enabled, 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 disabled.
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 & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,9 @@ 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]
91+
>
9292
> 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-
93+
If private endpoint is configured but public network access is enabled, 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 disabled.
9794

9895
> [!IMPORTANT]
9996
> Selecting backup storage redundancy when using T-SQL CREATE DATABASE ... AS COPY OF command is not supported yet.
@@ -136,7 +133,7 @@ CREATE DATABASE Database2 AS COPY OF server1.Database1;
136133
```
137134

138135
> [!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.
136+
> 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;`
140137
141138
### Copy to a different subscription
142139

0 commit comments

Comments
 (0)