Skip to content

Instantly share code, notes, and snippets.

@rurtubia
Created April 27, 2015 21:41
Show Gist options
  • Select an option

  • Save rurtubia/3c8f355d8dfaeb3b723c to your computer and use it in GitHub Desktop.

Select an option

Save rurtubia/3c8f355d8dfaeb3b723c to your computer and use it in GitHub Desktop.
Creates a User in Oracle
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