Vertica User Management

Create testuser with read-only access to testtable in testschema.
CREATE USER testuser IDENTIFIED BY 'password123';
GRANT USAGE ON SCHEMA testschema TO testuser;
GRANT SELECT ON testschema.testtable TO testuser;

No comments:

Post a Comment