I've created a new database and installed Aster Analytics function packages (foundation, PremiumPath...etc) onto the public schema.
I know the grant function access command:
grant execute on function schema.function to user-group;
Is there a way to grant a new user execute access to all functions all at once instead of one-by-one?
Also, the user is able to see their executable functions using \dE but cannot see installed files. \dF returns with 0 results. Is there a command to give them access to view all installed files?
If you use role based security scheme, grant
EXECUTEon the functions to the role. Then when you create the user, assign the user to the role. TheGRANT EXECUTEcommand requires the individual object to be specified in Aster. Alternatively, you could grantEXECUTEon the functions toPUBLICbut this may not be desirable in your production environment.