In SQL Azure, I want to assign login name [login1] to user [dbo].
I am currently logged in with [login1] account, and try this:
ALTER USER [dbo] WITH LOGIN = [login1] But it is saying:
Cannot alter the user 'dbo'.
I have also tried this:
ALTER AUTHORIZATION ON SCHEMA::[dbo] TO [login1] But it is saying:
Cannot find the user 'login1', because it does not exist or you do not have permission.
I am able to create new table like [dbo].[MyTable], but can not see it in the table list even though it existed.
Any ideas?