Created
April 27, 2015 21:41
-
-
Save rurtubia/3c8f355d8dfaeb3b723c to your computer and use it in GitHub Desktop.
Creates a User in Oracle
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 NOMBRE_CUENTA | |
| identified by CONTRASEÑA | |
| default tablespace NOMBRE_ESPACIO_DE_TABLA; | |
| SQL>create user MUSICAL | |
| 2 identified by MIMUSICA | |
| 3 default tablespace USERS; | |
| SQL>Grant connect to MUSICAL; | |
| SQL>Grant resource to MUSICAL; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment