GRANT on TO <User/Group>
-- Grant Privilege on Database
GRANT SELECT, MODIFY, READ_METADATA, CREATE on SCHEMA hr_db TO hr_team;
-- Grant Privilege on Table
GRANT SELECT ON TABLE my_table to user_1@company.com
-- Grant Privilege on View
GRANT SELECT ON VIEW hr_db.paris_employees_vw to 'admin@mycompany.com';
Data Explorer is really useful and powerful tool to manage your data objects.
SELECT * FROM schema.table
To
Select * FROM catalog.schema.table