有没有办法以编程方式删除 Azure 中的 SQL 数据库?

发布于 2025-01-11 14:36:24 字数 704 浏览 0 评论 0原文

我正在研究一个自动删除数据库并将其添加到 Azure 的流程。当数据库不使用时,可以将其从 Azure 中删除并以 .bacpac 形式放置在更便宜的 S3 存储中。

我正在使用 SqlPackage.exe 来自 Microsoft 作为 PowerShell 脚本,分别以任一方向从 Azure 导出和导入这些数据库。我通过 Python 脚本调用它以使用 boto3。

我遇到的问题是步骤 3 中的向下方向。顺序是:

  1. 将 Azure SQL DB 下载到 .bacpac(可以使用 SqlPackage.exe 实现)
  2. 上传此 .bacpac 到更便宜的S3存储(使用boto3 Python SDK)
  3. 删除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:

  1. Download the Azure SQL DB to a .bacpac (can be achieved with SqlPackage.exe)
  2. Upload this .bacpac to cheaper S3 storage (using boto3 Python SDK)
  3. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

虚拟世界 2025-01-18 14:36:24

要使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文