You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/sql-database/sql-database-serverless.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ ms.topic: conceptual
10
10
author: oslake
11
11
ms.author: moslake
12
12
ms.reviewer: sstein, carlrab
13
-
ms.date: 3/11/2020
13
+
ms.date: 4/3/2020
14
14
---
15
15
# Azure SQL Database serverless
16
16
@@ -145,13 +145,13 @@ The latency to autoresume and autopause a serverless database is generally order
145
145
146
146
### Customer managed transparent data encryption (BYOK)
147
147
148
-
If using [customer managed transparent data encryption](transparent-data-encryption-byok-azure-sql.md) (BYOK) and the serverless database is auto-paused when key deletion or revocation occurs, then the database remains in the auto-paused state. In this case, after the database is next resumed, the database becomes inaccessible within approximately 10 minutes. Once the database becomes inaccessible, the recovery process is the same as for provisioned compute databases. If the serverless database is online when key deletion or revocation occurs, then the database also becomes inaccessible after approximately 10 minutes or less in the same way as with provisioned compute databases.
148
+
If using [customer managed transparent data encryption](transparent-data-encryption-byok-azure-sql.md) (BYOK) and the serverless database is auto-paused when key deletion or revocation occurs, then the database remains in the auto-paused state. In this case, after the database is next resumed, the database becomes inaccessible within approximately 10 minutes. Once the database becomes inaccessible, the recovery process is the same as for provisioned compute databases. If the serverless database is online when key deletion or revocation occurs, then the database also becomes inaccessible within approximately 10 minutes in the same way as with provisioned compute databases.
149
149
150
150
## Onboarding into serverless compute tier
151
151
152
152
Creating a new database or moving an existing database into a serverless compute tier follows the same pattern as creating a new database in provisioned compute tier and involves the following two steps.
153
153
154
-
1. Specify the service objective name. The service objective prescribes the service tier, hardware generation, and max vCores. The following table shows the service objective options:
154
+
1. Specify the service objective. The service objective prescribes the service tier, hardware generation, and max vCores. The following table shows the service objective options:
@@ -170,12 +170,12 @@ Creating a new database or moving an existing database into a serverless compute
170
170
|Parameter|Value choices|Default value|
171
171
|---|---|---|---|
172
172
|Min vCores|Depends on max vCores configured - see [resource limits](sql-database-vcore-resource-limits-single-databases.md#general-purpose---serverless-compute---gen5).|0.5 vCores|
### Create new database in serverless compute tier
177
177
178
-
The following examples create a new database in the serverless compute tier. The examples explicitly specify the min vCores, max vCores, and autopause delay.
178
+
The following examples create a new database in the serverless compute tier.
179
179
180
180
#### Use Azure portal
181
181
@@ -199,7 +199,7 @@ az sql db create -g $resourceGroupName -s $serverName -n $databaseName `
199
199
200
200
#### Use Transact-SQL (T-SQL)
201
201
202
-
The following example creates a new database in the serverless compute tier.
202
+
When using T-SQL, default values are applied for the min vcores and autopause delay.
203
203
204
204
```sql
205
205
CREATEDATABASEtestdb
@@ -210,7 +210,7 @@ For details, see [CREATE DATABASE](/sql/t-sql/statements/create-database-transac
210
210
211
211
### Move database from provisioned compute tier into serverless compute tier
212
212
213
-
The following examples move a database from the provisioned compute tier into the serverless compute tier. The examples explicitly specify the min vCores, max vCores, and autopause delay.
213
+
The following examples move a database from the provisioned compute tier into the serverless compute tier.
214
214
215
215
#### Use PowerShell
216
216
@@ -231,7 +231,7 @@ az sql db update -g $resourceGroupName -s $serverName -n $databaseName `
231
231
232
232
#### Use Transact-SQL (T-SQL)
233
233
234
-
The following example moves a database from the provisioned compute tier into the serverless compute tier.
234
+
When using T-SQL, default values are applied for the min vcores and autopause delay.
0 commit comments