Get Database Restore Request (classic)

 

Updated: October 5, 2016

THIS TOPIC APPLIES TO: noSQL Server yesAzure SQL DatabaseyesAzure SQL Data Warehouse noParallel Data Warehouse

Gets details for a specific database restore request.

This command uses the classic deployment model. You should use the newer Resource Manager based REST API commands located here. For more information, see Azure Resource Manager vs. classic deployment: Understand deployment models and the state of your resources.

System_CAPS_ICON_note.jpg Note


The preferred method for retrieving information about a database that is being restored is to use the Database Operation Status (classic) command.

The Get Database Restore Request must be specified as follows:

  • Replace {subscriptionId} with your subscription ID.

  • Replace {serverName} with your server name.

  • Replace {requestId} with your request ID.

MethodRequest URIHTTP Version
GEThttps://management.core.windows.net:8443/{subscriptionId}/services/sqlservers/servers/{serverName}/databaserestorestatus/{requestId}HTTP/1.1

URI Parameters

None.

Request Headers

The following table describes the required and optional request headers:

Request HeaderDescription
x-ms-versionRequired. Specifies the version of the operation to use for this request. This header should be set to 2012-03-01.

Request Body

None.

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 HeaderDescription
x-ms-request-idA 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:

<ServiceResource xmlns="http://schemas.microsoft.com/windowsazure" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">  
  <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>  

The following table describes the elements of the response body:

Element NameDescription
StateThe current state of the restore request.
SelfLinkThe URI identifier for this resource.
ParentLinkThe URI identifier for the parent of this resource (the server).
RequestIDThe ID for the restore request.
SourceDatabaseNameThe name of the database being restored.
SourceDatabaseCreationDateThe date and time when the database was created.
TargetServerNameThe name of the server to contain the restored database.
TargetDatabaseNameThe name of the new database after restore.
TargetUtcPointInTimeThe point in time the database was restored from.

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

Show: