Create a Microsoft SQL Server user named “ra_user,” and grant permissions to the user.
use master; create login ra_user with password 'my_pass'; use <primary_database>; create user ra_user for login ra_user; EXEC sp_addsrvrolemember 'ra_user','sysadmin';