Databases - Export
匯出資料庫。
POST https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/export?api-version=2021-11-01
URI 參數
名稱 | 位於 | 必要 | 類型 | Description |
---|---|---|---|---|
database
|
path | True |
string |
資料庫的名稱。 |
resource
|
path | True |
string |
包含資源的資源群組名稱。 您可以從 Azure 資源管理員 API 或入口網站取得這個值。 |
server
|
path | True |
string |
伺服器的名稱。 |
subscription
|
path | True |
string |
可識別 Azure 訂用帳戶的訂用帳戶識別碼。 |
api-version
|
query | True |
string |
要用於要求的 API 版本。 |
要求本文
名稱 | 必要 | 類型 | Description |
---|---|---|---|
administratorLogin | True |
string |
系統管理員登入名稱。 |
administratorLoginPassword | True |
string |
系統管理員登入密碼。 |
storageKey | True |
string |
記憶體金鑰。 |
storageKeyType | True |
儲存器金鑰類型。 |
|
storageUri | True |
string |
記憶體 URI。 |
authenticationType |
string |
驗證類型。 |
|
networkIsolation |
選擇性資源資訊,可啟用要求的網路隔離。 |
回應
名稱 | 類型 | Description |
---|---|---|
200 OK |
已成功匯出資料庫。 |
|
202 Accepted |
正在匯出資料庫。 |
|
Other Status Codes |
錯誤回應: ≦
|
範例
Exports a database, using private link to communicate with SQL server and storage account. |
Exports a database. |
Exports a database, using private link to communicate with SQL server and storage account.
範例要求
POST https://management.azure.com/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/export?api-version=2021-11-01
{
"storageKeyType": "StorageAccessKey",
"storageKey": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx==",
"storageUri": "https://test.blob.core.windows.net/test.bacpac",
"administratorLogin": "login",
"administratorLoginPassword": "password",
"authenticationType": "Sql",
"networkIsolation": {
"sqlServerResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr",
"storageAccountResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Storage/storageAccounts/test-privatelink"
}
}
範例回覆
{
"properties": {
"requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4",
"requestType": "Export",
"queuedTime": "2/2/2020 8:33:27 PM",
"lastModifiedTime": "2/2/2020 8:34:47 PM",
"blobUri": "https://test.blob.core.windows.net/test.bacpac",
"serverName": "testsvr.database.windows.net",
"databaseName": "testdb",
"status": "Completed"
},
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4",
"name": "9d9a794a-5cec-4f23-af70-d29511b522a4",
"type": "Microsoft.Sql/servers/databases/importExportOperationResults"
}
Exports a database.
範例要求
POST https://management.azure.com/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/export?api-version=2021-11-01
{
"storageKeyType": "StorageAccessKey",
"storageKey": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx==",
"storageUri": "https://test.blob.core.windows.net/test.bacpac",
"administratorLogin": "login",
"administratorLoginPassword": "password",
"authenticationType": "Sql"
}
範例回覆
{
"properties": {
"requestId": "9d9a794a-5cec-4f23-af70-d29511b522a4",
"requestType": "Export",
"queuedTime": "2/2/2020 8:33:27 PM",
"lastModifiedTime": "2/2/2020 8:34:47 PM",
"blobUri": "https://test.blob.core.windows.net/test.bacpac",
"serverName": "testsvr.database.windows.net",
"databaseName": "testdb",
"status": "Completed"
},
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/testsvr/databases/testdb/importExportOperationResults/9d9a794a-5cec-4f23-af70-d29511b522a4",
"name": "9d9a794a-5cec-4f23-af70-d29511b522a4",
"type": "Microsoft.Sql/servers/databases/importExportOperationResults"
}
定義
名稱 | Description |
---|---|
Export |
包含執行匯出資料庫作業所需的資訊。 |
Import |
ImportExport 作業結果資源。 |
Network |
包含要為其建立私人端點連線的 ARM 資源。 |
Private |
包含私人端點連線要求狀態。 |
Storage |
儲存器金鑰類型。 |
ExportDatabaseDefinition
包含執行匯出資料庫作業所需的資訊。
名稱 | 類型 | Description |
---|---|---|
administratorLogin |
string |
系統管理員登入名稱。 |
administratorLoginPassword |
string |
系統管理員登入密碼。 |
authenticationType |
string |
驗證類型。 |
networkIsolation |
選擇性資源資訊,可啟用要求的網路隔離。 |
|
storageKey |
string |
記憶體金鑰。 |
storageKeyType |
儲存器金鑰類型。 |
|
storageUri |
string |
記憶體 URI。 |
ImportExportOperationResult
ImportExport 作業結果資源。
名稱 | 類型 | Description |
---|---|---|
id |
string |
資源識別碼。 |
name |
string |
資源名稱。 |
properties.blobUri |
string |
Blob URI。 |
properties.databaseName |
string |
資料庫名稱。 |
properties.errorMessage |
string |
錯誤訊息。 |
properties.lastModifiedTime |
string |
上次修改時間。 |
properties.privateEndpointConnections |
取得與此要求相關聯的私人端點狀態。 |
|
properties.queuedTime |
string |
已排入佇列的時間。 |
properties.requestId |
string |
要求標識碼。 |
properties.requestType |
string |
要求類型。 |
properties.serverName |
string |
伺服器名稱。 |
properties.status |
string |
作業狀態。 |
type |
string |
資源類型。 |
NetworkIsolationSettings
包含要為其建立私人端點連線的 ARM 資源。
名稱 | 類型 | Description |
---|---|---|
sqlServerResourceId |
string |
SQL Server 的資源標識碼,這是此要求的目標。 如果設定,將會為 SQL Server 建立私人端點連線。 必須符合作業目標的伺服器。 |
storageAccountResourceId |
string |
用來儲存 BACPAC 檔案之記憶體帳戶的資源識別碼。 如果設定,將會為記憶體帳戶建立私人端點連線。 必須符合用於 StorageUri 參數的記憶體帳戶。 |
PrivateEndpointConnectionRequestStatus
包含私人端點連線要求狀態。
名稱 | 類型 | Description |
---|---|---|
privateEndpointConnectionName |
string |
私人端點的連接名稱。 |
privateLinkServiceId |
string |
建立私人端點的資源標識碼。 |
status |
string |
此私人端點連線的狀態。 |
StorageKeyType
儲存器金鑰類型。
名稱 | 類型 | Description |
---|---|---|
SharedAccessKey |
string |
|
StorageAccessKey |
string |