I need to change the owner of the table.
I created a table:
CREATE TABLE example (some columns);
Then I tried to change the owner:
ALTER TABLE database.expample OWNER TO "secondary";
and them i got this error:
ERROR: must be member of role "secondary"
Can someone help me?
Thanks in advance.
source share