有没有办法以编程方式删除 Azure 中的 SQL 数据库?
我正在研究一个自动删除数据库并将其添加到 Azure 的流程。当数据库不使用时,可以将其从 Azure 中删除并以 .bacpac
形式放置在更便宜的 S3 存储中。
我正在使用 SqlPackage.exe 来自 Microsoft 作为 PowerShell 脚本,分别以任一方向从 Azure 导出和导入这些数据库。我通过 Python 脚本调用它以使用 boto3。
我遇到的问题是步骤 3 中的向下方向。顺序是:
- 将 Azure SQL DB 下载到
.bacpac
(可以使用 SqlPackage.exe 实现) - 上传此
.bacpac
到更便宜的S3存储(使用boto3 Python SDK) - 删除Azure SQL数据库(看来Azure Blob Python SDK无法帮助我,而且SQLPackage.exe似乎没有删除功能)
第3步不可能自动化一个脚本?解决方法是否可以是 SqlPackage.exe 导入一个同名的小虚拟 .bacpac
以覆盖旧的较大数据库? 谢谢。
I am working on a process to automatically remove and add databases to Azure. When the database isn't in use, it can be removed from Azure and placed in cheaper S3 storage as a .bacpac
.
I am using SqlPackage.exe from Microsoft as a PowerShell script to export and import these databases from and to Azure respectively in either direction. I invoke it via a Python script to use boto3.
The issue I have is with the down direction at step 3. The sequence would be:
- Download the Azure SQL DB to a
.bacpac
(can be achieved with SqlPackage.exe) - Upload this
.bacpac
to cheaper S3 storage (using boto3 Python SDK) - Delete the Azure SQL Database (It appears the Azure Blob Python SDK can't help me, and it appears SQLPackage.exe does not have a delete function)
Is step 3 impossible to automate with a script? Could a workaround be to SqlPackage.exe import a small dummy .bacpac
with the same name to overwrite the old bigger DB?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要使用 PowerShell 删除 Azure SQL 数据库,您需要使用
删除-AzSqlDatabase
Cmdlet。要使用 Azure CLI 删除 Azure SQL 数据库,您需要
az sql 数据库删除
。如果要在 Python 中编写代码来删除数据库,则需要使用
适用于 Python 的 Azure SDK
。To remove an Azure SQL Database using PowerShell, you will need to use
Remove-AzSqlDatabase
Cmdlet.To remove an Azure SQL Database using Azure CLI, you will need to us
az sql db delete
.If you want to write code in Python to delete the database, you will need to use
Azure SDK for Python
.