惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

T
Threat Research - Cisco Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
V
Vulnerabilities – Threatpost
GbyAI
GbyAI
P
Proofpoint News Feed
L
LINUX DO - 热门话题
P
Palo Alto Networks Blog
A
About on SuperTechFans
T
Tenable Blog
M
MIT News - Artificial intelligence
IT之家
IT之家
I
Intezer
D
DataBreaches.Net
爱范儿
爱范儿
T
Threatpost
C
CERT Recently Published Vulnerability Notes
云风的 BLOG
云风的 BLOG
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
K
Kaspersky official blog
大猫的无限游戏
大猫的无限游戏
A
Arctic Wolf
Y
Y Combinator Blog
Cyberwarzone
Cyberwarzone
酷 壳 – CoolShell
酷 壳 – CoolShell
D
Darknet – Hacking Tools, Hacker News & Cyber Security
H
Help Net Security
Microsoft Security Blog
Microsoft Security Blog
Spread Privacy
Spread Privacy
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
AWS News Blog
AWS News Blog
博客园 - 聂微东
C
Check Point Blog
S
Securelist
有赞技术团队
有赞技术团队
雷峰网
雷峰网
aimingoo的专栏
aimingoo的专栏
Last Week in AI
Last Week in AI
Stack Overflow Blog
Stack Overflow Blog
MongoDB | Blog
MongoDB | Blog
D
Docker
G
GRAHAM CLULEY
T
The Exploit Database - CXSecurity.com
C
Cybersecurity and Infrastructure Security Agency CISA
T
Tailwind CSS Blog
L
Lohrmann on Cybersecurity
G
Google Developers Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
L
LangChain Blog

博客园 - EricWen

IntelliJ IDEA 2024 安装与激活全攻略 Excel高手秘籍:50招助你效率翻倍 Navicat与DBeaver:数据库管理工具界的“蝙蝠侠”与“钢铁侠” 十年沉淀,重启开发之路 外网不能访问部署在虚机的NodeJs网站(80端口) Common Issues Which Cause Roles to Recycle How to remove a batch of VMs and related Disks How to create a batch of VMs with PowerShell How to build windows azure PowerShell Source Code 如何快速从一个Storage Account拷贝到另一个账号 比较Windows Azure 网站(Web Sites), 云服务(Cloud Services)and 虚机(Virtual Machines) Windows Azure 云服务角色架构 如何批量删除虚拟机及其关联的存储(Windows Azure) PowerShell Script to Deploy Multiple VM on Azure in Parallel #azure #powershell Use Windows Azure AD to create SSO projects 怎样提高Windows Azure Cloud Service中的WebRole的文件访问权限 Windows Azure 名词定义(Glossary) 自动备份SQL数据库到云存储Storage 数据库SQL Server DAC 导入导出数据到SQL Azure问题
怎样将SQL Azure数据库备份到本地或者Storage
EricWen · 2013-11-26 · via 博客园 - EricWen

怎样备份SQL Azure数据库到本地或者云存储Storage,可以使用SQL Database Import Export 的功能。

具体操作如下:

  1. 用SSMS链接SQL Azure数据库

clip_image001

注意:服务器名称可以从管理网站上获得,登录名不要加@服务器名。

  1. 右键要导出的数据库名称,选择任务(Task)->导出数据(Export Data-tier Application)

clip_image002

  1. 出现导出向导,按下一步,到导出设置页面。在这里可以选择保存到本地,或者保存到云存储Storage中。然后目前SQL Server Management Studio的版本不支持连接中国的云存储(China Azure Storage)。

clip_image003

  1. 然后下一步直到完成。这样bacpac文件就保存到本地了。如果上传到China Azure Storage 可以写个上传程序或者使用工具:http://chinastorage.blob.core.chinacloudapi.cn/tools/AzureStorageExplorer.zip 上传到Storage。这个下载地址有可能过期,如果需要的话也可以联系我。

注意在添加中国云Storage Account的时候需要加前缀mc/ (这个功能是根据开源的Storage Explore改的,因为那个支持全球的Azure,不支持中国Windows Azure)

clip_image004

数据库还原操作不能再在原有的数据库上更新操作,而是可以通过Deploy or Import Data-tier application 操作来部署一个新的Azure SQL Database。然后把原来的删除掉。

具体可以参考Windows Azure SQL Database Backup and Restore, 这里面有的功能中国Windows Azure还没有更新

如自动从管理界面导出服务。

image