List Server Database Restore Requests (classic)
THIS TOPIC APPLIES TO: SQL Server Azure SQL DatabaseAzure SQL Data Warehouse Parallel Data Warehouse
Gets a list of database restore requests for an Azure SQL Database server.
Important
The recommended REST commands to work with SQL Database are the Resource Manager based Azure SQL Database REST API. While there is no change to SQL Database, be aware that the classic deployment model command in this article is scheduled for deprecation on December 1, 2019. For a table providing links to the specific new commands you should use, see Operations for Azure SQL Databases.
Note
The preferred method for retrieving information about databases that are being restored is to use the Database Operation Status (classic) command.
Request
The List Server Database Restore Requests request must be specified as follows:
Replace {subscriptionId} with your subscription ID.
Replace {serverName} with the name of the server to query.
Method | Request URI | HTTP Version |
---|---|---|
GET | https://management.core.windows.net:8443/{subscriptionId}/services/sqlservers/servers/{serverName}/databaserestorestatus?contentview=generic | HTTP/1.1 |
URI Parameters
None.
Request Headers
The following table describes the required and optional request headers:
Request Header | Description |
---|---|
x-ms-version | Required. Specifies the version of the operation to use for this request. This header should be set to 2012-03-01. |
Request Body
None.
Response
The response includes an HTTP status code, a set of response headers, and a response body.
Status Code
Response Headers
The response for this operation includes the following headers. The response may also include additional standard HTTP headers. All standard headers conform to the HTTP/1.1 protocol specification.
Response Header | Description |
---|---|
x-ms-request-id | A value that uniquely identifies a request made against the database management service. This request id is used for request tracking. If a failure occurs that requires the user to contact Microsoft Support, the request id should be provided to Microsoft to assist in tracking and resolving the failure for the request. |
Response Body
The following is an example response body:
<ServiceResources xmlns="https://schemas.microsoft.com/windowsazure" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<ServiceResource>
<Name />
<Type>Microsoft.SqlAzure.RestoreDatabaseOperation</Type>
<State>Created</State>
<SelfLink>https://management.core.windows.net/2eae7c21-ffd1-49e4-ac22-39095e0b9f02/services/sqlservers/servers/bpr0d6li5t/restoredatabaseoperations/885315a9-4b52-418f-8fb9-988c1d5e9972</SelfLink>
<ParentLink>https://management.core.windows.net/2eae7c21-ffd1-49e4-ac22-39095e0b9f02/services/sqlservers/servers/bpr0d6li5t</ParentLink>
<RequestID>885315a9-4b52-418f-8fb9-988c1d5e9972</RequestID>
<SourceDatabaseName>testdb2</SourceDatabaseName>
<SourceDatabaseCreationDate>2013-08-29T21:38:54.5330000</SourceDatabaseCreationDate>
<TargetServerName>bpr0d6li5t</TargetServerName>
<TargetDatabaseName>testdb3</TargetDatabaseName>
<TargetUtcPointInTime>2013-09-03T00:00:00.0000000Z</TargetUtcPointInTime>
</ServiceResource>
</ServiceResources>
The following table describes the elements in the response body:
Element Name | Description |
---|---|
Name | The name of this service resource. |
Type | The type of the service resource; Microsoft.SqlAzure.RestoreDatabaseOperation. |
State | The state of the restore request. |
SelfLink | The URI identifier for this resource. |
ParentLink | The URI identifier for the parent of this resource (the server). |
RequestID | The identifier from the original restore request. |
SourceDatabaseName | The name of the database being restored. |
SourceDatabaseCreationDate | The date and time the original database was created. |
TargetServerName | The name of the server where the database is being restored to. |
TargetDatabaseName | The name of the new database after restore. |
TargetUtcPointInTime | The point in time the database was restored from. |
See Also
Common REST API Error Codes
Azure SQL Database
Operations for Azure SQL Databases
Copying Databases in Azure SQL Database
Geo-Replication in Azure SQL Database
Azure SQL Database Cmdlets