AWS RDS - MsSql - 在“master"中创建架构、用户或角色或“msdb"数据库

我使用的是 AWS RDS MsSql express V13.我正在尝试使用我在 RDS 设置期间创建的 root 用户创建架构、用户和角色,但不能.我正在使用 SQL 客户端.

I'm using AWS RDS MsSql express V13. I'm trying to create a schema, user and role using the root user I created during the RDS setup but can't. I'm using SQL client.

例如:

use [master]
CREATE USER [my_user] FOR LOGIN [my_login] WITH DEFAULT_SCHEMA=[dbo] 

返回:用户无权执行此操作."

returns: "User does not have permission to perform this action."

推荐答案

AWS RDS 限制对 master 数据库的权限,因此您无法在那里创建架构、角色、用户或登录名.

AWS RDS restricts permissions on the master database, so you can't create schemas, roles, users, or logins there.

您需要创建第二个数据库,然后才能按预期创建架构、用户和角色.

You need to create a second database, which will then allow you to create schemas, users, and roles as expected.

-- use the master database to create your new database:
USE master;  
CREATE DATABASE db_test;

-- then, use your new database to create your schema, login, and user:
USE db_test;
CREATE SCHEMA yourschema;
CREATE LOGIN [youruser] WITH PASSWORD = '<PASSWORD>';
CREATE USER [youruser] FOR LOGIN [youruser] WITH DEFAULT_SCHEMA = [yourschema];

相关文章