Skip to content

BASE DE DATOS

  • Tutora => Laura Plaza Ruiz

MÉTODOS DE ACCESO

  • Secuencial => Encadenado

  • Secuencial indexado

  • Directo => Accesso directo, Acceso indexado, Acceso calculado (Hash)


TIPOS DE FICHEROS

  • FICHEROS SECUENCIALES

  • FICHEROS DE ACCESO DIRECTO


ORACLE DATABASE

/* BASIC COMMANDS */

/* Connect to sqlplus */
sqlplus sys as sysdba

/*PASSWORD resina */

/* Show user */
show user con_name

/* Create user */
create user c##antjrobles identified by anjrobles default tablespace users;

/* Grant access */  /* IMPORTANT, when asked for password must be different from the root password. This is the the password for that specific user. Usually same as user, for exmaple antjrobles */
grant connect, resource, DBA to c##antjrobles;

/* Connect to user */
CONNECT c##antjrobles
show user con_ name /* to check connection success */