I have a server in SQL Server Management Studio, in this one when I open the "Security" folder, then "Connections" I have different user accounts already created.
I have two databases: RCE, and RCE_Finance_BI.
In the first one in the "Security" folder, then "Users" I have these accounts :

Including JeromeRCE who has write and read rights on this database.
Now in the RCE_Finance_BI database I have these users:

I would like to add to this database the JeromeRCE account and give him the same rights as in the RCE database, i.e. read and write rights.
How can I do it please?
Yes you can do it.
USE [RCE_Finance_BI]
GO
CREATE USER [JeromeRCE] FOR LOGIN [JeromeRCE] WITH DEFAULT_SCHEMA=[dbo]
GO
Or you can create the script by below steps

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With