我正在尝试将Azure数据库备份到本地计算机,然后使用Powershell还原到Azure中的其他位置。我使用的脚本是
# Define clear text string for username and password
[string]$userName = '<username>'
[string]$userPassword = '<password>'
# Convert to SecureString
[securestring]$secStringPassword = ConvertTo-SecureString $userPassword -AsPlainText -Force
[pscredential]$credObject = New-Object System.Management.Automation.PSCredential ($userName,
$secStringPassword)
Backup-SqlDatabase -ServerInstance "<server>.database.windows.net" -Database "TestDB" -
BackupFile "c:testbackup.bak" -Credential $credObject
但我得到了错误:
Backup-SqlDatabase : System.Data.SqlClient.SqlError: Statement 'BACKUP DATABASE' is not
supported in this version of SQL Server.
是否有不同的命令来备份使用Powershell的任何版本的Azure数据库?
如果您使用的是Azure SQL数据库,则BACKUP命令对您不可用,因为根据文档,您只有自动备份,而没有用户启动的备份,如果您使用Azure SQL托管实例,则您确实有该命令。
您可以在这个功能比较页面上看到两者之间的差异此处