Is there a possibility to grant multiple users "select, insert, update" on a specific schema, without worrying about the number of tables inside?
I've tried
GRANT SELECT, INSERT, UPDATE
ON SCHEMA <schema-name>
TO USER <user-name1>, USER <user-name2>
Thanks
I've tried
GRANT SELECT, INSERT, UPDATE
ON SCHEMA <schema-name>
TO USER <user-name1>, USER <user-name2>
Thanks