简体   繁体   English

是否可以通过Azure云托管上的SQL Server Management Studio创建.bak文件?

[英]Is it possible to create a .bak file via SQL Server Management Studio on Azure cloud hosting?

I need to create a .bak backup file of my SQL Server database on Azure hosting, because that's the only method which my new hosting supports for restoring a database. 我需要在Azure主机上创建我的SQL Server数据库的.bak备份文件,因为这是我的新主机支持还原数据库的唯一方法。

Is this even possible to do? 这甚至可能吗? In SQL Server Management Studio, there is no "Backup" option under "Tasks" when I right-click on my database. 在SQL Server Management Studio中,右键单击我的数据库时,“任务”下没有“备份”选项。 The SQL Server edition is Standard, not Express. SQL Server版本是Standard,而不是Express。

You can't create .bak files in Azure DB. 您无法在Azure DB中创建.bak文件。 You will need to perform below steps at a high level to get a .BAK file 您需要在高级别执行以下步骤才能获得.BAK文件

  1. Create a .bacpac file for database in Azure 在Azure中为数据库创建.bacpac文件
  2. Import that .bacpac file to Local SQL Server and restore it .bacpac文件导入本地SQL Server并将其还原
  3. Now you can create a .Bak file on local SQL Server 现在,您可以在本地SQL Server上创建.Bak文件

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 从没有SQL Server Management Studio(SSMS)的MDF创建BAK - Create BAK from MDF without SQL Server Management Studio (SSMS) SQL Server Management Studio 中的 database.bak 文件保存在哪里? - Where is database .bak file saved from SQL Server Management Studio? SQL Server Management Studio无法识别.bak文件 - SQL Server Management Studio can't recognize .bak file 使用 .bak 文件还原 Azure SQL Server - Azure SQL Server restore using .bak file 在SQL Server Management Studio中还原.bak文件时,信号灯超时时间已到期 - The semaphore timeout period has expired while restoring .bak file in SQL Server Management Studio SQL Server Management Studio-无法从bak和trn还原 - SQL Server Management Studio - trouble restoring from bak and trn 通过我本地计算机上的 SQL Server Management Studio 访问 Azure SQL VM 上的 Azure 服务器 - Access Azure SQL Server on Azure VM via SQL Server Management Studio on my local Machine 如何从azure sql db创建BAK文件 - How to create BAK file from azure sql db 将SQL Server .bak备份文件连接到Visual Studio - Connecting a SQL Server .bak backup file to Visual Studio 通过我的本地计算机上的SQL Server Management Studio访问Azure VM上的SQL Server - Access SQL Server on Azure VM via SQL Server Management Studio on my local Machine
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM