I am moving from the "Classic" SQL Server Database On-Premise to Azure SQL Server Database, Unfortunately, One of the procedures that I used to execute is not working for Azure SQL Server Database:
EXEC sp_removedbreplication "Database Name"
Got the following error using the SQL ADMIN user:
Only members of the sysadmin fixed server role can perform this operation.
However, I tried grant the "sysadmin" role via proc, but no success.
EXEC sp_addrolemember 'sysadmin', 'sqladmin';
Cannot alter the role 'sysadmin', because it does not exist or you do not have permission.
I could not find any Server Role directory via SQL SERVER Management studio