PostgreSQL
The TMF platform has a PostgreSQL database containing data targetted at Business Intelligence. There is also a section about this in the platform docs
Create user for Postgres BI database
create a postgres user to connect and view data on the postgres database
connect to postgres database with admin
create a login
SQL: grant connect on database <database name> to <login name>
SQL: grant select on all tables in schema public to <login name>