Please explain SQL Azure “master” database

后端 未结 3 990
挽巷
挽巷 2021-01-05 06:25

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.

相关标签:
3条回答
  • 2021-01-05 06:42

    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.

    0 讨论(0)
  • 2021-01-05 06:59

    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

    0 讨论(0)
  • 2021-01-05 07:03

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

    0 讨论(0)
提交回复
热议问题