Last active
March 29, 2019 23:26
-
-
Save bouassaba/9648b170235ab8e563d1e0c7eb5390f7 to your computer and use it in GitHub Desktop.
Oracle create schema user
This file contains 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
ALTER SESSION SET "_ORACLE_SCRIPT"= TRUE; | |
CREATE USER myuser IDENTIFIED BY myuser; | |
GRANT CONNECT, RESOURCE, DBA TO myuser; | |
GRANT CREATE SESSION TO myuser; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment