请解释一下 SQL Azure“master”数据库

发布于 2024-11-19 11:14:02 字数 206 浏览 3 评论 0原文

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 技术交流群。

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

发布评论

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

评论(3

江城子 2024-11-26 11:14:03

请注意:您无需为主数据库付费。

Just a note: you will not be charged for the master DB.

停滞 2024-11-26 11:14:03

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.

離人涙 2024-11-26 11:14:03

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

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