Use the below sql query to get a list of all superusers in Redshift database.
select usename from pg_user_info where usesuper='true' and usesysid > 100;
Use the below sql query to get a list of all superusers in Redshift database.
select usename from pg_user_info where usesuper='true' and usesysid > 100;