下面是使用Azure管理库创建数据库的方法,我想知道如何将现有数据库还原到Azure上的时间点。
// Crate Authenticate
var credentials = SdkContext.AzureCredentialsFactory.FromServicePrincipal("{clientId}", "{client-secret}", "{teantId}", AzureEnvironment.AzureGlobalCloud);
// Connect Azure
var azure = Azure
.Configure()
.WithLogLevel(HttpLoggingDelegatingHandler.Level.Basic)
.Authenticate(credentials)
.WithDefaultSubscription();
// Create TestDB
var sqlServer = azure.SqlServers.GetById("{sql-server-Id}");
sqlServer.Databases.Define("TestDB").Create();
// Point-in-time restore ???
答案 0 :(得分:4)
解决了自己。使用Microsoft.Azure.Management.Sql而不是Microsoft.Azure.Management.Sql.Fluent。
using Microsoft.Azure.Management.Sql.Models;
using Microsoft.Azure.Management.Sql;
using Microsoft.IdentityModel.Clients.ActiveDirectory;
private void RestoreToPointInTime()
{
var token = GetToken("{tenantId}", "{applicationId}", "{appliactionSecret}");
var sqlMgmtClient = new SqlManagementClient(new Microsoft.Rest.TokenCredentials(token.AccessToken)) { SubscriptionId = "{SubscriptionId}" };
var myDb = sqlMgmtClient.Databases.Get("RestoreTest", "testsqlserver", "TestDB");
var newDb = new Database
{
Location = myDb.Location,
CreateMode = CreateMode.PointInTimeRestore,
RestorePointInTime = myDb.EarliestRestoreDate.Value,
SourceDatabaseId = myDb.Id
};
sqlMgmtClient.Databases.CreateOrUpdate("RestoreTest", "testsqlserver", "TestNewDB", newDb);
}
private static AuthenticationResult GetToken(string tenantId, string applicationId, string applicationSecret)
{
AuthenticationContext authContext = new AuthenticationContext("https://login.windows.net/" + tenantId);
return authContext.AcquireToken("https://management.core.windows.net/", new ClientCredential(applicationId, applicationSecret));
}
答案 1 :(得分:0)
您是否愿意使用REST API?
https://docs.microsoft.com/es-es/rest/api/sql/databases%20-%20restore%20points
希望这有帮助。
此致
Alberto Morillo