The database name listed in the installer varies depending on the current Vantage platform:
- VantageCore and VantageCloud Enterprise version 3.0 and earlier: mldb
- VantageCore, VantageCloud Enterprise, and VantageCloud Lake version 3.1 and later: TD_MLDB.
Use the following commands to grant users access to BYOMPredict functions with VantageCloud Enterprise or VantageCore:
| User | Command |
|---|---|
| Single user | GRANT EXECUTE FUNCTION ON mldb TO user; |
| User group | GRANT EXECUTE FUNCTION ON mldb TO user_group; |
| Public | GRANT EXECUTE FUNCTION ON mldb TO public; |
Use the following commands to grant users access to BYOMPredict functions with VantageCloud Lake:
| User | Command |
|---|---|
| Single user | GRANT EXECUTE FUNCTION ON td_mldb TO user; |
| User group | GRANT EXECUTE FUNCTION ON td_mldb TO user_group; |
| Public | GRANT EXECUTE FUNCTION ON td_mldb TO public; |