请解释一下 SQL Azure“master”数据库
SQL Azure 中的“主”数据库有什么用?我刚刚创建了一个订阅,一旦创建了“新 SQL Server”,我立即获得了 1GB 大小的“主”数据库。该数据库无法删除 - 管理门户中的“删除”按钮未激活。
当我尝试部署 .dbproj 项目时,Visual Studio 说它“无法部署到系统数据库”。
我可以使用该数据库来存储我的数据吗?我是否要创建一个新数据库?
What's the "master" database in SQL Azure for? I just created a subscription and once I created a "new SQL Server" I immediately got "master" database with 1GB size. That database can't be deleted - "delete" button is not active in the management portal.
When I tried to deploy a .dbproj project there Visual Studio said it "couldn't deploy to a system database".
Can I use that database for storing my data? Do I create a new database instead?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请注意:您无需为主数据库付费。
Just a note: you will not be charged for the master DB.
master
是必需的系统数据库,负责保存有关服务器实例上所有其他数据库、系统指标/配置、管理登录和登录的信息。数据库创建等,其只读且无法删除。您将需要创建一个新数据库并部署到该数据库。
master
is a required system database that's responsible for holding info about all the the other database on the server instance, system metrics/config, managing logins & database creation etc, its read-only and can't be removed.You will need to create a new database and deploy to that.
master数据库记录了SQL Server系统的所有系统级信息。这包括实例范围的元数据,例如登录帐户、端点、链接服务器和系统配置设置
The master database records all the system-level information for a SQL Server system. This includes instance-wide metadata such as logon accounts, endpoints, linked servers, and system configuration settings