I know I can't make my user in RDS a sysadmin...but can I at least change the database owner from rdsa to my own user? If I use SSMS and go to change the Owner in the database properties, I get the message:
The proposed new database owner is already a user or aliased in the database
Why do I want to do this instead of just adding my user to the db_owner role?
I have indexed views I want to create, and when trying to do so, I get the error
Index cannot be created on view '...' because the underlying object '...' has a different owner.
I know that I can manually use ALTER AUTHORIZATION on the underlying objects to allow this, as described here: https://dba.stackexchange.com/questions/9436/sql-server-2008-cannot-create-index-on-indexed-view. But I really don't want to do that for every single object referenced by every one of my indexed views.
I'm certainly open to suggestions on alternative approaches.
Thanks.