Hello!
> It seems that the user does not exist:
I haven't got your mail, I see your answer only in the thread of web mailing list.
The problem is based on that I want to set the role to the database owner from script.
My team members many times logged as "postgres" or diff user, and forget to set the role to DB owner.
I thought I can avoid the problems with changing the actual role to real owner before the changes.
Now the "set role" uses the "variable name", and not the "value of the variable".
This is what I don't like in this lang. I need to write a special variable name to "force" to use it, and not other thing.
I don't know how to force the system to use my variable value, and not my variable name in the routines.
I don't know how to force the system to use my variable value, and not my variable name in the routines.
For example $var$, or <var>, or [var], etc.
I can generate "set role" with string concat, but in PGAdmin this script would be good.
Thank you!
dd
2017-11-22 14:55 GMT+01:00 Durumdara <durumdara@xxxxxxxxx>:
Hello!May you know the way how to set role dynamically.DO$$DECLARE act_dbowner varchar(100);BEGINSELECT u.usename into act_dbowner FROM pg_database dJOIN pg_user u ON (d.datdba = u.usesysid)WHERE d.datname = (SELECT current_database());raise notice 'DB owner: %', act_dbowner;set role to act_dbowner; -- THIS LINEEND$$;-------------ERROR: role "act_dbowner" does not existCONTEXT: SQL statement "set role to act_dbowner"PL/pgSQL function inline_code_block line 10 at SQL statementI try to use $act_dbowner, but it have no effect.Thank you for your help!Best wishesdd