Created
September 28, 2017 06:51
-
-
Save anonymous/09b75fc08d593ec370bcd251513b0498 to your computer and use it in GitHub Desktop.
angl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE USER van_user1 | |
IDENTIFIED BY pass; | |
CREATE USER van_user2 | |
IDENTIFIED BY word; | |
CREATE ROLE van_role; | |
GRANT van_role TO van_user1, van_user2; | |
GRANT CONNECT TO van_role; | |
GRANT CREATE TABLE, CREATE VIEW, CREATE SEQUENCE, CREATE PROCEDURE TO van_role; | |
GRANT SELECT ON VAN_8K51_INFO TO van_role; | |
GRANT EXECUTE ON UPD_BAT_STAT TO van_role; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment