Created
August 3, 2018 16:31
-
-
Save marcosvidolin/ab6c04c340dbe9768f528c4ed9b5bdae to your computer and use it in GitHub Desktop.
Create a Oracle User & Grants
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
create user <USER> identified by <PASSWorD>; | |
grant connect to <USER>; | |
grant create session, create table, resource, connect, create procedure, create sequence, create synonym, create trigger, create view, debug connect session, unlimited tablespace to <USER>; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment