AWS RDS - MsSql - 在“master"中创建架构、用户或角色或“msdb"数据库 [英] AWS RDS - MsSql - Create schema, user or role in "master" or "msdb" databases

查看:42
本文介绍了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];

这篇关于AWS RDS - MsSql - 在“master"中创建架构、用户或角色或“msdb"数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆