Created
December 17, 2020 20:16
-
-
Save danielkec/90d00a0a117ed0930b558f343cb31ac1 to your computer and use it in GitHub Desktop.
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 frank identified by SuperSecretPassword1234; | |
| grant connect to frank; | |
| grant resource to frank; | |
| grant execute on dbms_aq to frank; | |
| grant execute on dbms_aqadm to frank; | |
| grant execute on dbms_aqin to frank; | |
| grant unlimited tablespace to frank; | |
| BEGIN | |
| ORDS_ADMIN.ENABLE_SCHEMA( | |
| p_enabled => TRUE, | |
| p_schema => 'FRANK', | |
| p_url_mapping_type => 'BASE_PATH', | |
| p_url_mapping_pattern => 'frank', | |
| p_auto_rest_auth => TRUE | |
| ); | |
| COMMIT; | |
| END; | |
| / |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment