ROLE成员无法创建数据库

ROLE成员无法创建数据库

本文介绍了dbmanager ROLE成员无法创建数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


  1. 在新的Azure SQL数据库中,创建一个新用户,并将用户添加到dbmanager角色。
  2. 以该用户身份连接,并尝试创建数据库。
  3. 返回错误消息...

示例代码:


使用基本管理连接:


CREATE 登录 [Markus]
WITH PASSWORD
= 'Acb123456';

解决方案

  1. In a new Azure SQL Database, create a new user, and add the user to the dbmanager role.
  2. Connect as that user, and try to create a database.
  3. Error message is returned...

Sample Code:

Using base admin connection:

CREATE LOGIN [Markus]WITH PASSWORD= 'Acb123456';

解决方案


这篇关于dbmanager ROLE成员无法创建数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-27 11:47