As snowflake documentation, I need ownership and rights to drop any object.
So someone created a user account using accountadmin role (owner of the account). When I try to delete it or transfer ownership using owner role, I can't.
Can you tell me where am I wrong ?
USE ROLE ACCOUNTADMIN;
DROP USER "[email protected]";
User '"[email protected]" ' does not exist or not authorized.
If I perform some tests with the same account :
USE ROLE ACCOUNTADMIN;
CREATE USER "[email protected]";
User with login name '[email protected]' already exists.
If I try to create and delete users with this account...
USE ROLE ACCOUNTADMIN;
CREATE USER "[email protected]";
User [email protected] successfully created.
DROP USER "[email protected]";
[email protected] successfully dropped.
Thank you in advance, I become mad with this problem :)
Regards.