You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
279 B
Plaintext

6 years ago
--Grant on a table
5 years ago
GRANT SELECT, INSERT ON TABLE tbl1 TO user
6 years ago
--Grant execution on a stored procedure
5 years ago
GRANT EXECUTE ON PROCEDURE prc1(INT, DATE) TO USER jdoe
GRANT EXECUTE ON SPECIFIC PROCEDURE mypr TO GROUP admins
6 years ago
--Revoke on a table
5 years ago
REVOKE DELETE ON TABLE mytable FROM recur