Teradata Aster ACT grant access to functions and view installed files

505 Views Asked by At

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?

1

There are 1 best solutions below

2
On

If you use role based security scheme, grant EXECUTE on the functions to the role. Then when you create the user, assign the user to the role. The GRANT EXECUTE command requires the individual object to be specified in Aster. Alternatively, you could grant EXECUTE on the functions to PUBLIC but this may not be desirable in your production environment.