examen psiquico
Prácticas Laboratorio
BASE DE DATOS III
SIS 306
Ing. Marcelo Arancibia
Sucre – 2012
Práctica 1
1. Crear el esquema privado donde debe estar incluida la tablacliente y gerente
2. Crear el dominio teléfono que restrinja los datos entre 6400000 y 6499999
3. Crear las siguientes tablas según las especificaciones indicadas.
GERENTE
ATRIBUTO
TIPOCONDICION
VALOR POR DEFECTO
DESCRIPCION
id_gerente
int
PRIMARY KEY
SECUENCIA(cod_ger)
llave primaria
nombre
varchar(25)
NOT NULL
datos personales
ap_pat
varchar(25)
datos personalesap_mat
varchar(25)
datos personales
dir_gerente
varchar(25)
datos personales
tel_gerente
telefono *
datos personales
login
varchar(15)
UNIQUE
nombre de usuarioNOT NULL
pass
varchar(15)
UNIQUE
password
NOT NULL
CLIENTE
ATRIBUTO
TIPO
CONDICION
VALOR POR DEFECTO
DESCRIPCION
id_cliente
int
PRIMARY KEY
SECUENCIA(cod_cli)
llaveprimaria
nombre
varchar(25)
NOT NULL
datos personales
ap_pat
varchar(25)
datos personales
ap_mat
varchar(25)
datos personales
dir_cliente
varchar(25)
NOT NULL
datospersonales
tel_cliente
telefono *
datos personales
CI
int
UNIQUE
datos personales
NOT NULL
NIT
int
UNIQUE
password
NOT NULL
SUCURSAL
ATRIBUTO
TIPO
CONDICIONVALOR POR DEFECTO
DESCRIPCION
id_sucursal
int
PRIMARY KEY
SECUENCIA(cod_suc)
llave primaria
ciudad_sucursal
varchar(15)
NOT NULL
datos sucursal
dir_sucursal
varchar(25)
NOT NULL
datos sucursal
tel_sucursal
telefono*
> 6400000 y < 650000
datos sucursal
capital_disp
float
dinero disponible
id_gerente
int
FOREIGN KEY
llave gerente
CUENTA
ATRIBUTO
TIPOCONDICION
VALOR POR DEFECTO
DESCRIPCION
id_cuenta
int
PRIMARY KEY
SECUENCIA(cod_cue)
llave primaria
id_sucursal
int
FOREIGN KEY
llave sucursal
id_cliente
int
FOREIGN KEY
llave...
Regístrate para leer el documento completo.