Setup Sysadmin role in RDS SQL Server

0

Hi there

I have added the master account while creating the RDS Microsoft SQL Server with Dev/Test option. However I need an account with Sysadmin role. Could you please guide me how can I add/create a new user with Sysadmin role? Do I need to create a different type type of RDS SQL Server? Thanks in advanve.

Best Musharrif

asked a year ago3252 views
1 Answer
1

the 'sysadmin' role itself is reserved for the 'rdsa' internal SQL Server account, which is managed by the Amazon RDS service and not accessible to users.

you can create a new user and assign db_owner role

CREATE LOGIN [NewUserName] WITH PASSWORD = 'NewUserPassword';
GO

USE [YourDatabaseName];
GO

CREATE USER [NewUserName] FOR LOGIN [NewUserName];
GO

EXEC sp_addrolemember 'db_owner', 'NewUserName';
GO

profile picture
EXPERT
answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions