CREATE SCHEMA IF NOT EXISTS `FIV` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci ; USE `FIV` ;

Size: px
Start display at page:

Download "CREATE SCHEMA IF NOT EXISTS `FIV` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci ; USE `FIV` ;"

Transcription

1 SET UNIQUE_CHECKS=0; SET FOREIGN_KEY_CHECKS=0; SET SQL_MODE='TRADITIONAL'; CREATE SCHEMA IF NOT EXISTS `FIV` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci ; USE `FIV` ; -- Table `FIV`.`USUARIOS` CREATE TABLE IF NOT EXISTS `FIV`.`USUARIOS` ( `USER` VARCHAR(7) NOT NULL, `PASSWORD` VARCHAR(128) NULL DEFAULT NULL, `ROL` VARCHAR(1) NULL DEFAULT NULL, `SALT` VARCHAR(128) NULL, PRIMARY KEY (`USER`) ) ENGINE = InnoDB COMMENT = 'Tabla que almacena la informacion de los usuarios registrado' /* comment truncated */ ; -- Table `FIV`.`ACCESOS` CREATE TABLE IF NOT EXISTS `FIV`.`ACCESOS` ( `USER` VARCHAR(7) NOT NULL, `FECHA` DATETIME NOT NULL, `RESULTADO` VARCHAR(2) NULL, PRIMARY KEY (`USER`, `FECHA`), INDEX `fk_accesos_usuarios` (`USER` ASC), CONSTRAINT `fk_accesos_usuarios` FOREIGN KEY (`USER` ) REFERENCES `FIV`.`USUARIOS` (`USER` ) ON DELETE CASCADE ENGINE = InnoDB, COMMENT = 'Tabla que almacena los accesos al sistema de los distintos u' /* comment truncated */ ; -- Table `FIV`.`CONSULTAS` CREATE TABLE IF NOT EXISTS `FIV`.`CONSULTAS` ( `USER` VARCHAR(7) NOT NULL, `FECHA` DATETIME NOT NULL, `TABLA` VARCHAR(20) NULL, `CLAVE` VARCHAR(20) NULL, `TIPOACCESO` VARCHAR(1) NULL, PRIMARY KEY (`USER`, `FECHA`), INDEX `fk_consultas_usuarios` (`USER` ASC), CONSTRAINT `fk_consultas_usuarios` FOREIGN KEY (`USER` ) REFERENCES `FIV`.`USUARIOS` (`USER` ) -- Table `FIV`.`PACIENTES` CREATE TABLE IF NOT EXISTS `FIV`.`PACIENTES` ( `IDPACIENTES` INT NOT NULL AUTO_INCREMENT, `DNI` VARCHAR(9) NULL, `NOMBRE` VARCHAR(20) NULL, `APELLIDOS` VARCHAR(50) NULL, `FECHA NACIMIENTO` DATE NULL,

2 `FECHA REGISTRO` DATETIME NULL, `USUARIO REGISTRO` VARCHAR(7) NULL, `DIRECCION` VARCHAR(60) NULL, `CIUDAD` VARCHAR(20) NULL, `PROVINCIA` VARCHAR(20) NULL, `CP` VARCHAR(5) NULL, `PAIS` VARCHAR(20) NULL, `SEXO` VARCHAR(1) NULL, `TELEFONO` VARCHAR(9) NULL, `GRUPO SANGUINEO` VARCHAR(2) NULL, `RH` VARCHAR(1) NULL, `FECHA ULTIMA ACTUALIZACION` DATETIME NULL, `USUARIO MODIFICACION` VARCHAR(7) NULL, PRIMARY KEY (`IDPACIENTES`), INDEX `USUARIO_REGISTRO` (`USUARIO REGISTRO` ASC), INDEX `USUARIO_MODIFICACION` (`USUARIO MODIFICACION` ASC), CONSTRAINT `USUARIO_REGISTRO` FOREIGN KEY (`USUARIO REGISTRO` ) REFERENCES `FIV`.`USUARIOS` (`USER` ) CONSTRAINT `USUARIO_MODIFICACION` FOREIGN KEY (`USUARIO MODIFICACION` ) REFERENCES `FIV`.`USUARIOS` (`USER` ) ENGINE = InnoDB, COMMENT = 'Tabla que registra la informacion de los pacientes' ; -- Table `FIV`.`ANTECEDENTES` CREATE TABLE IF NOT EXISTS `FIV`.`ANTECEDENTES` ( `IDPACIENTES` INT NOT NULL, `PROFESION` VARCHAR(20) NULL, `ANT. FAMILIARES` VARCHAR(60) NULL, `ANT. PERSONALES` VARCHAR(60) NULL, `ANT. QUIRURGICOS` VARCHAR(60) NULL, `ALERGIAS` VARCHAR(60) NULL, `HABITOS TOXICOS` VARCHAR(60) NULL, PRIMARY KEY (`IDPACIENTES`), INDEX `fk_antecedentes_pacientes` (`IDPACIENTES` ASC), CONSTRAINT `fk_antecedentes_pacientes` FOREIGN KEY (`IDPACIENTES` ) -- Table `FIV`.`ANTGINECOLOGICOS` CREATE TABLE IF NOT EXISTS `FIV`.`ANTGINECOLOGICOS` ( `IDPACIENTES` INT NOT NULL, `MENARQUIA` INT NULL, `TM` VARCHAR(5) NULL, `CANTIDAD` VARCHAR(10) NULL, `DISMENORREA` VARCHAR(10) NULL, `PLANIF. FAMILIAR` VARCHAR(10) NULL, `GAV` VARCHAR(6) NULL, `ULTIMA REVISION` DATE NULL, `PATOLOGIA` VARCHAR(45) NULL, PRIMARY KEY (`IDPACIENTES`), INDEX `fk_antginec_pacientes` (`IDPACIENTES` ASC), CONSTRAINT `fk_antginec_pacientes` FOREIGN KEY (`IDPACIENTES` )

3 -- Table `FIV`.`ANAMNESIS` CREATE TABLE IF NOT EXISTS `FIV`.`ANAMNESIS` ( `IDANAMNESIS` INT NOT NULL AUTO_INCREMENT, `IDPACIENTE` INT NOT NULL, `MOTIVO` VARCHAR(100) NULL, `DIAGNOSTICO` VARCHAR(100) NULL, `TRATAMIENTO` VARCHAR(100) NULL, PRIMARY KEY (`IDANAMNESIS`), INDEX `fk_anamnesis_pacientes` (`IDPACIENTE` ASC), CONSTRAINT `fk_anamnesis_pacientes` FOREIGN KEY (`IDPACIENTE` ) -- Table `FIV`.`EXPLORACION_FEM` CREATE TABLE IF NOT EXISTS `FIV`.`EXPLORACION_FEM` ( `ABDOMEN` VARCHAR(45) NULL, `MAMAS` VARCHAR(45) NULL, `HSG` VARCHAR(45) NULL, `RESUMEN` VARCHAR(45) NULL, INDEX `fk_expfem_anamnesis` (`IDANAMNESIS` ASC), CONSTRAINT `fk_expfem_anamnesis` -- Table `FIV`.`EXPLORACION_MAS` CREATE TABLE IF NOT EXISTS `FIV`.`EXPLORACION_MAS` ( `TESTICULO_I` VARCHAR(45) NULL, `TESTICULO_D` VARCHAR(45) NULL, `DEFERENTES` VARCHAR(45) NULL, `RESUMEN` VARCHAR(45) NULL, `DOCTOR` DATETIME NULL, INDEX `fk_expmasc_anamnesis` (`IDANAMNESIS` ASC), CONSTRAINT `fk_expmasc_anamnesis` -- Table `FIV`.`ECOGRAFIA`

4 CREATE TABLE IF NOT EXISTS `FIV`.`ECOGRAFIA` ( `OD` VARCHAR(45) NULL, `OI` VARCHAR(45) NULL, `UTERO` VARCHAR(45) NULL, INDEX `fk_ecografia_anamnesis` (`IDANAMNESIS` ASC), CONSTRAINT `fk_ecografia_anamnesis` -- Table `FIV`.`CITOLOGIA` CREATE TABLE IF NOT EXISTS `FIV`.`CITOLOGIA` ( `RESULTADO` VARCHAR(45) NULL, `COMENTARIOS` VARCHAR(45) NULL, INDEX `fk_citologia_anamnesis` (`IDANAMNESIS` ASC), CONSTRAINT `fk_citologia_anamnesis` -- Table `FIV`.`SEROLOGIA` CREATE TABLE IF NOT EXISTS `FIV`.`SEROLOGIA` ( `VHB` VARCHAR(1) NULL, `VIH` VARCHAR(1) NULL, `VHC` VARCHAR(1) NULL, `SIFILIS` VARCHAR(1) NULL, `RUBEOLA` VARCHAR(1) NULL, `TOXOPLASMOSIS` VARCHAR(1) NULL, INDEX `fk_serologia_anamnesis` (`IDANAMNESIS` ASC), CONSTRAINT `fk_serologia_anamnesis` -- Table `FIV`.`PAREJAS` CREATE TABLE IF NOT EXISTS `FIV`.`PAREJAS` ( `MUJER` INT NOT NULL, `HOMBRE` INT NOT NULL, PRIMARY KEY (`MUJER`, `HOMBRE`), INDEX `fk_matrimonios_pacientes` (`MUJER` ASC), CONSTRAINT `fk_matrimonios_pacientes` FOREIGN KEY (`MUJER` )

5 -- Table `FIV`.`MUESTRA` CREATE TABLE IF NOT EXISTS `FIV`.`MUESTRA` ( `IDMUESTRASEMEN` INT NOT NULL, `IDPACIENTES` INT NOT NULL, `DIAGNOSTICO` VARCHAR(45) NULL, `OBSERVACIONES` VARCHAR(100) NULL, `FECHA_MUESTRA` DATE NULL, `MUESTRA_CONGELADA` TINYINT(1) NULL, `VIH` TINYINT(1) NULL, `VHC` TINYINT(1) NULL, `DIAS_ABSTINENCIA` INT NULL, `PROCEDENCIA` VARCHAR(10) NULL, `CONTENEDOR` VARCHAR(10) NULL, `VARILLA` INT NULL, `PORTA` INT NULL, `CRIOTUBOS` INT NULL, PRIMARY KEY (`IDMUESTRASEMEN`), INDEX `fk_muestra_pacientes` (`IDPACIENTES` ASC), CONSTRAINT `fk_muestra_pacientes` FOREIGN KEY (`IDPACIENTES` ) -- Table `FIV`.`SEMINOGRAMA` CREATE TABLE IF NOT EXISTS `FIV`.`SEMINOGRAMA` ( `IDMUESTRA` INT NOT NULL, `PH` FLOAT NULL, `TIEMPO_LICUEFACCION` INT NULL, `VISCOSIDAD` VARCHAR(1) NULL, `VOLUMEN` INT NULL, `CONCENTRACION_ESPERMATICA` FLOAT NULL, `MOTILIDAD_A` INT NULL, `MOTILIDAD_B` INT NULL, `MOTILIDAD_C` INT NULL, `TMS` INT NULL, `ALTERACIONES_CABEZA` INT NULL, `ALTERACIONES_CUELLO` INT NULL, `ALTERACIONES_COLA` INT NULL, `ALTERACIONES_MIXTAS` INT NULL, `TEST_VITALIDAD` VARCHAR(1) NULL, `INDICE_VITALIDAD` FLOAT NULL, `TEST_CAPTACION` VARCHAR(1) NULL, `REM` INT NULL, PRIMARY KEY (`IDMUESTRA`, `FECHA`), CONSTRAINT `fk_seminograma_muestra` FOREIGN KEY (`IDMUESTRA` ) REFERENCES `FIV`.`MUESTRA` (`IDMUESTRASEMEN` ) -- Table `FIV`.`BIOPSIA` CREATE TABLE IF NOT EXISTS `FIV`.`BIOPSIA` ( `IDMUESTRA` INT NOT NULL,

6 `UROLOGO` VARCHAR(45) NULL, `DEFERENTES` TINYINT(1) NULL, `FSH` INT NULL, `TAMAÑO_TESTICULAR` VARCHAR(1) NULL, `INDICACION_BIOPSIA` VARCHAR(1) NULL, `PIEZAS_OBTENIDAS` INT NULL, `ASPECTO_TEJIDO` VARCHAR(1) NULL, `PRESENCIA_ESPERMATICA` TINYINT(1) NULL, `PRESENCIA_ESPERMATICA_MOVIL` TINYINT(1) NULL, PRIMARY KEY (`IDMUESTRA`, `FECHA`), INDEX `fk_biopsia_muestra` (`IDMUESTRA` ASC), CONSTRAINT `fk_biopsia_muestra` FOREIGN KEY (`IDMUESTRA` ) REFERENCES `FIV`.`MUESTRA` (`IDMUESTRASEMEN` ) -- Table `FIV`.`INSEMINACIONES` CREATE TABLE IF NOT EXISTS `FIV`.`INSEMINACIONES` ( `IDINSEMINACION` INT NOT NULL, `IDPACIENTE` INT NOT NULL, `IDMUESTRA` INT NOT NULL, `INTENTO` INT NULL, `OBSERVACIONES` VARCHAR(100) NULL, PRIMARY KEY (`IDINSEMINACION`), INDEX `fk_inseminacion_pacientes` (`IDPACIENTE` ASC), INDEX `fk_inseminacion_muestra` (`IDMUESTRA` ASC), CONSTRAINT `fk_inseminacion_pacientes` FOREIGN KEY (`IDPACIENTE` ) CONSTRAINT `fk_inseminacion_muestra` FOREIGN KEY (`IDMUESTRA` ) REFERENCES `FIV`.`MUESTRA` (`IDMUESTRASEMEN` ) -- Table `FIV`.`ESTIMULACIONES` CREATE TABLE IF NOT EXISTS `FIV`.`ESTIMULACIONES` ( `IDESTIMULACION` INT NOT NULL, `IDPACIENTES` INT NOT NULL, `FECHA_INICIO` DATE NULL, `OBSERVACIONES` VARCHAR(100) NULL, PRIMARY KEY (`IDESTIMULACION`), INDEX `fk_estimulaciones_pacientes` (`IDPACIENTES` ASC), CONSTRAINT `fk_estimulaciones_pacientes` FOREIGN KEY (`IDPACIENTES` ) -- Table `FIV`.`EMBRION` CREATE TABLE IF NOT EXISTS `FIV`.`EMBRION` ( `IDEMBRION` INT NOT NULL, `IDMUESTRASEMEN` INT NOT NULL,

7 `IDPACIENTE` INT NOT NULL, `CONGELADO` TINYINT(1) NULL, `DONANTE` TINYINT(1) NULL, `DESTINO` VARCHAR(45) NULL, `GRADO` INT NULL, `CLASIFICACION` VARCHAR(45) NULL, `INCIDENCIAS` VARCHAR(100) NULL, PRIMARY KEY (`IDEMBRION`), INDEX `fk_embrion_semen` (`IDMUESTRASEMEN` ASC), INDEX `fk_embrion_paciente` (`IDPACIENTE` ASC), CONSTRAINT `fk_embrion_semen` FOREIGN KEY (`IDMUESTRASEMEN` ) REFERENCES `FIV`.`MUESTRA` (`IDMUESTRASEMEN` ) CONSTRAINT `fk_embrion_paciente` FOREIGN KEY (`IDPACIENTE` ) ON DELETE CASCADE ON UPDATE CASCADE) -- Table `FIV`.`CICLO` CREATE TABLE IF NOT EXISTS `FIV`.`CICLO` ( `IDCICLO` INT NOT NULL, `IDPACIENTE` INT NOT NULL, `IDEMBRION` INT NOT NULL, `TIPO` VARCHAR(1) NULL, `CATETER` VARCHAR(1) NULL, `FECHA_TRANSFERENCIA` DATE NULL, `MEDIO` VARCHAR(1) NULL, `CULTIVO_EMBRIONES` VARCHAR(1) NULL, `CULTIVO_BLASTOCITOS` VARCHAR(1) NULL, `NUMERO_CONGELADOS` INT NULL, PRIMARY KEY (`IDCICLO`), INDEX `fk_ciclo_paciente` (`IDPACIENTE` ASC), INDEX `fk_ciclo_embrion` (`IDEMBRION` ASC), CONSTRAINT `fk_ciclo_paciente` FOREIGN KEY (`IDPACIENTE` ) CONSTRAINT `fk_ciclo_embrion` FOREIGN KEY (`IDEMBRION` ) REFERENCES `FIV`.`EMBRION` (`IDEMBRION` ) -- Table `FIV`.`GESTACION` CREATE TABLE IF NOT EXISTS `FIV`.`GESTACION` ( `IDGESTACION` INT NOT NULL, `IDCICLO` INT NULL, `IDINSEMINACION` INT NULL, `IDESTIMULACION` INT NULL, `EBQ` TINYINT(1) NULL, `ECL` TINYINT(1) NULL, `NUM_SSGG` INT NULL, `HCG` INT NULL, `OBSERVACIONES` VARCHAR(100) NULL,

8 PRIMARY KEY (`IDGESTACION`), INDEX `fk_gestacion_inseminacion` (`IDINSEMINACION` ASC), INDEX `fk_gestacion_estimulacion` (`IDESTIMULACION` ASC), CONSTRAINT `fk_gestacion_ciclo` FOREIGN KEY (`IDCICLO` ) REFERENCES `FIV`.`CICLO` (`IDCICLO` ) CONSTRAINT `fk_gestacion_inseminacion` FOREIGN KEY (`IDINSEMINACION` ) REFERENCES `FIV`.`INSEMINACIONES` (`IDINSEMINACION` ) CONSTRAINT `fk_gestacion_estimulacion` FOREIGN KEY (`IDESTIMULACION` ) REFERENCES `FIV`.`ESTIMULACIONES` (`IDESTIMULACION` ) -- Table `FIV`.`MEDICACION` CREATE TABLE IF NOT EXISTS `FIV`.`MEDICACION` ( `IDESTIMULACION` INT NOT NULL, `MEDICAMENTO` VARCHAR(45) NOT NULL, `DOSIS` FLOAT NULL, PRIMARY KEY (`IDESTIMULACION`, `MEDICAMENTO`, `FECHA`), INDEX `fkestimulacion_estimulaciones` (`IDESTIMULACION` ASC), CONSTRAINT `fkestimulacion_estimulaciones` FOREIGN KEY (`IDESTIMULACION` ) REFERENCES `FIV`.`ESTIMULACIONES` (`IDESTIMULACION` ) -- Table `FIV`.`INCUBADOR` CREATE TABLE IF NOT EXISTS `FIV`.`INCUBADOR` ( `IDEMBRION` INT NOT NULL, `CO2` INT NOT NULL, `TEMPERATURA` INT NOT NULL, PRIMARY KEY (`IDEMBRION`, `CO2`, `TEMPERATURA`), INDEX `fkincubador_embrion` (`IDEMBRION` ASC), CONSTRAINT `fkincubador_embrion` FOREIGN KEY (`IDEMBRION` ) REFERENCES `FIV`.`EMBRION` (`IDEMBRION` ) -- Table `FIV`.`EVOLUCION_EMBRION` CREATE TABLE IF NOT EXISTS `FIV`.`EVOLUCION_EMBRION` ( `IDEMBRION` INT NOT NULL, `NUMERO_CELULAS` INT NOT NULL, `GRADO_CELULAS` INT NOT NULL, PRIMARY KEY (`IDEMBRION`, `NUMERO_CELULAS`, `GRADO_CELULAS`), INDEX `fk_evolucion_embrion` (`IDEMBRION` ASC), CONSTRAINT `fk_evolucion_embrion` FOREIGN KEY (`IDEMBRION` ) REFERENCES `FIV`.`EMBRION` (`IDEMBRION` )

9 -- Table `FIV`.`FETO` CREATE TABLE IF NOT EXISTS `FIV`.`FETO` ( `IDGESTACION` INT NOT NULL, `SEXO` VARCHAR(1) NOT NULL, `INCIDENCIAS` VARCHAR(45) NOT NULL, PRIMARY KEY (`IDGESTACION`, `SEXO`, `INCIDENCIAS`), INDEX `fk_feto_gestacion` (`IDGESTACION` ASC), CONSTRAINT `fk_feto_gestacion` FOREIGN KEY (`IDGESTACION` ) REFERENCES `FIV`.`GESTACION` (`IDGESTACION` ) SET SQL_MODE=@OLD_SQL_MODE; SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;

Estructura de aplicación en PHP para System i

Estructura de aplicación en PHP para System i Estructura de aplicación en PHP para System i La aplicación esta diseñada para IBM DB2 en System i, UNIX y Windows. Se trata de la gestión de una entidad deportiva. A modo de ejemplo de como está desarrollada

More information

How To Get A Venezuela Business Visa

How To Get A Venezuela Business Visa Venezuela Business visa Application Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned in time for your travel: Venezuela business visa checklist

More information

Venezuela Official visa Application

Venezuela Official visa Application Venezuela Official visa Application Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned in time for your travel: Venezuela official visa checklist

More information

DAMAR MEDICAL CENTER, INC

DAMAR MEDICAL CENTER, INC PATIENT INFORMATION TODAY S DATE: / / (INFORMACION DEL PACIENTE) MES/DIA /AÑO: / / PATIENT S NAME: NOMBRE Y APELLIDO: D.O.B.: / / FECHA DE NACIMIENTO / / ADDRESS: CITY: ZIP CODE DIRECCION CIUDAD: CODIGO

More information

Venezuela Business visa Application

Venezuela Business visa Application Venezuela Business visa Application IMPORTANT: Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned in time for your travel: Venezuela business

More information

Using SQL Server Management Studio

Using SQL Server Management Studio Using SQL Server Management Studio Microsoft SQL Server Management Studio 2005 is a graphical tool for database designer or programmer. With SQL Server Management Studio 2005 you can: Create databases

More information

Mi MCS BASIC GUIDE FOR THE INSURED

Mi MCS BASIC GUIDE FOR THE INSURED Mi MCS BASIC GUIDE FOR THE INSURED Mi MCS We are currently working on the English version of our website in order to provide better access to our products and services, and to help make your browsing easier.

More information

Relational Schema of Database:

Relational Schema of Database: Relational Schema of Database: DDL Commands(with an instance example used for testing the page): phpmyadmin SQL Dump version 3.4.10.1deb1 http://www.phpmyadmin.net Servidor: localhost Tiempo de generación:

More information

Auditing 11-78-2 Scripts

Auditing 11-78-2 Scripts Puerto Rico Department of Education PHASE 6-SIE Employees_SIE_notin_STAFF Auditing 11-78-2 Scripts 15/MAR/2013 Auditing 11-78-2 Scripts Project Auditing 11-78-2 Scripts Version Information Version number

More information

!"# $ %& '( ! %& $ ' &)* + ! * $, $ (, ( '! -,) (# www.mysql.org!./0 *&23. mysql> select * from from clienti;

!# $ %& '( ! %& $ ' &)* + ! * $, $ (, ( '! -,) (# www.mysql.org!./0 *&23. mysql> select * from from clienti; ! "# $ %& '(! %& $ ' &)* +! * $, $ (, ( '! -,) (# www.mysql.org!./0 *&23 mysql> select * from from clienti; " "!"# $!" 1 1 5#',! INTEGER [(N)] [UNSIGNED] $ - 6$ 17 8 17 79 $ - 6: 1 79 $.;0'

More information

Ecuador Official visa Application

Ecuador Official visa Application Ecuador Official visa Application Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned in time for your travel: Ecuador official visa checklist

More information

Rare Donor Program in Spain: experience and challenges

Rare Donor Program in Spain: experience and challenges Rare Donor Program in Spain: experience and challenges Dr E Muñiz-Diaz Banc de Sang i Teixits Barcelona (Spain) Political and administrative organization of Spain Spain is divided into 17 autonomous regions

More information

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";! SET time_zone = "+00:00";!

SET SQL_MODE = NO_AUTO_VALUE_ON_ZERO;! SET time_zone = +00:00;! -- phpmyadmin SQL Dump -- version 4.1.3 -- http://www.phpmyadmin.net -- -- Client : localhost -- Généré le : Lun 19 Mai 2014 à 15:06 -- Version du serveur : 5.6.15 -- Version de PHP : 5.4.24 SET SQL_MODE

More information

Impreso de Solicitud / Application Form

Impreso de Solicitud / Application Form Fotografía/ Photograph Impreso de Solicitud / Application Form Sistema Europeo de Transferencia de Créditos / European Credit Transfer System Datos del estudiante / Student s personal data Apellido 1 /

More information

PROFEX REGISTRATION IN THE SYSTEM FOR LANGUAGE ASSISTANTS

PROFEX REGISTRATION IN THE SYSTEM FOR LANGUAGE ASSISTANTS PROFEX REGISTRATION IN THE SYSTEM FOR LANGUAGE ASSISTANTS 1. What is Profex? Profex is an online web service application designed to enable teachers and language assistants to submit their applications

More information

A basic create statement for a simple student table would look like the following.

A basic create statement for a simple student table would look like the following. Creating Tables A basic create statement for a simple student table would look like the following. create table Student (SID varchar(10), FirstName varchar(30), LastName varchar(30), EmailAddress varchar(30));

More information

Otra información Importante / Other relevant information Como conoció el programa / How did you learn about the programme

Otra información Importante / Other relevant information Como conoció el programa / How did you learn about the programme COMPLETAR EL SIGUIENTE FORMULARIO Y MANDARLO A / COMPLETE THE FOLLOWING FORM AND SEND IT TO: EMAIL: study.abroad@uab.es FAX. +34 93 433 50 26 POST: Fundació UAB (Àrea Internacional) Sant Antoni Maria Claret,

More information

Customer Bank Account Management System Technical Specification Document

Customer Bank Account Management System Technical Specification Document Customer Bank Account Management System Technical Specification Document Technical Specification Document Page 1 of 15 Table of Contents Contents 1 Introduction 3 2 Design Overview 4 3 Topology Diagram.6

More information

New words to remember

New words to remember Finanza Toolbox Materials Checking Accounts When you open a checking account you put money in the bank. Then you buy a book of checks from the bank. Using checks keeps you from having to carry cash with

More information

USER MANUAL MONITORING MODULE

USER MANUAL MONITORING MODULE USER MANUAL 2 MONITORING MODULE MONITOR is an integrated information system that allows ongoing monitoring of activities financed by USAID/Colombia. As explained in the environmental module, MONITOR is

More information

Tourist Visa Application Form

Tourist Visa Application Form Introduction Tourist Visa Application Form This document contains the official visa application form issued by the Immigration and Naturalization Services of Costa Rica (Direccion General de Migracion)

More information

families about going to college May 16, 2012

families about going to college May 16, 2012 Tu Futuro Online Course: Educating Spanish-speaking speaking families about going to college May 16, 2012 TG & Tecnológico de Monterrey Collaboration TG promotes educational access and success so that

More information

PONTIFICIA UNIVERSIDAD CATÓLICA DEL PERÚ

PONTIFICIA UNIVERSIDAD CATÓLICA DEL PERÚ PONTIFICIA UNIVERSIDAD CATÓLICA DEL PERÚ FACULTAD DE CIENCIAS E INGENIERÍA DISEÑO E IMPLEMENTACIÓN DE UNA APLICACIÓN MÓVIL BASADA EN LA TECNOLOGÍA NFC PARA ACCESO A INFORMACIÓN DE LAS PIEZAS DE ARTE EN

More information

New words to remember

New words to remember Finanza Toolbox Materials When you open a checking account you put money in the bank. Then you buy a book of checks from the bank. Using checks keeps you from having to carry cash with you. You can use

More information

Best Practices Benchmarking Participant Assessment Meeting

Best Practices Benchmarking Participant Assessment Meeting Best Practices Benchmarking Participant Assessment Meeting Application of Best Practices Benchmarking Techniques to Characterize Profitability and Improve Performance of Calf Raising Processes on NY Dairy

More information

Database Administration with MySQL

Database Administration with MySQL Database Administration with MySQL Suitable For: Database administrators and system administrators who need to manage MySQL based services. Prerequisites: Practical knowledge of SQL Some knowledge of relational

More information

Passenger Service Charter

Passenger Service Charter Page 2 Caring for the environment, safety and continuous improvement in the quality of its services are the criteria that characterize every one of its activities. The state-run company Aena, S.A., currently

More information

How To Create A Table In Sql 2.5.2.2 (Ahem)

How To Create A Table In Sql 2.5.2.2 (Ahem) Database Systems Unit 5 Database Implementation: SQL Data Definition Language Learning Goals In this unit you will learn how to transfer a logical data model into a physical database, how to extend or

More information

8- Management of large data volumes

8- Management of large data volumes (Herramientas Computacionales Avanzadas para la Inves6gación Aplicada) Rafael Palacios, Jaime Boal Contents Storage systems 1. Introduc;on 2. Database descrip;on 3. Database management systems 4. SQL 5.

More information

Extracting META information from Interbase/Firebird SQL (INFORMATION_SCHEMA)

Extracting META information from Interbase/Firebird SQL (INFORMATION_SCHEMA) 13 November 2007 22:30 Extracting META information from Interbase/Firebird SQL (INFORMATION_SCHEMA) By: http://www.alberton.info/firebird_sql_meta_info.html The SQL 2003 Standard introduced a new schema

More information

The named boxes in Spanish of the form are included in italics inside parentheses. MINISTERIO DE ECONOMÍA Y COMPETITIVIDAD

The named boxes in Spanish of the form are included in italics inside parentheses. MINISTERIO DE ECONOMÍA Y COMPETITIVIDAD SECRETARÍA DE ESTADO DE COMERCIO DIRECCIÓN GENERAL DE COMERCIO E INVERSIONES S. G. DE COMERCIO INTERNACIONAL DE SERVICIOS E INVERSIONES This is a translation, from Spanish, of instructions for filling

More information

CSC 443 Data Base Management Systems. Basic SQL

CSC 443 Data Base Management Systems. Basic SQL CSC 443 Data Base Management Systems Lecture 6 SQL As A Data Definition Language Basic SQL SQL language Considered one of the major reasons for the commercial success of relational databases SQL Structured

More information

A Brief Introduction to MySQL

A Brief Introduction to MySQL A Brief Introduction to MySQL by Derek Schuurman Introduction to Databases A database is a structured collection of logically related data. One common type of database is the relational database, a term

More information

Patient Information NAME SOCIAL SECURITY # (NOMBRE) LAST/APELLIDO FIRST/PRIMER INITIAL (SEGURO SOCIAL)

Patient Information NAME SOCIAL SECURITY # (NOMBRE) LAST/APELLIDO FIRST/PRIMER INITIAL (SEGURO SOCIAL) 7887 North Kendall Drive Suite 210 Miami, Florida 33156 305.598.1555 office 305.598.1155 fax www.vascularandspine.com Patient Information NAME SOCIAL SECURITY # (NOMBRE) LAST/APELLIDO FIRST/PRIMER INITIAL

More information

Online shopping cart. Tarik Guelzim Graduate school of computer science at Monmouth University. CS517 Database management systems Project 2

Online shopping cart. Tarik Guelzim Graduate school of computer science at Monmouth University. CS517 Database management systems Project 2 Tarik Guelzim Graduate school of computer science at Monmouth University CS517 Database management systems Project 2 Page 1 of 9 Database Schema Page 2 of 9 Table name Indexed fields reason Page 3 of 9

More information

FORMULARIO DE INSCRIPCIÓN

FORMULARIO DE INSCRIPCIÓN INFORMACIÓN PERSONAL PERSONAL DATA APELLIDOS / SURNAME MBRE / NAME FECHA DE NACIMIENTO (D/M/A) / BIRTHDATE (D/M/Y) NACIONALIDAD / CITIZENSHIP NÚMERO DE PASAPORTE / PASSPORT NUMBER HOMBRE / MALE MUJER /

More information

MS ACCESS DATABASE DATA TYPES

MS ACCESS DATABASE DATA TYPES MS ACCESS DATABASE DATA TYPES Data Type Use For Size Text Memo Number Text or combinations of text and numbers, such as addresses. Also numbers that do not require calculations, such as phone numbers,

More information

CA Dream Application References

CA Dream Application References CA Dream Application References 2014 California High School Counselor Workshop Guide Page 171 California Nonresident Tuition Exemption For Eligible California High School Graduates (The law passed by

More information

The named boxes in Spanish of the form are included in italics inside parentheses. MINISTERIO DE ECONOMÍA Y COMPETITIVIDAD

The named boxes in Spanish of the form are included in italics inside parentheses. MINISTERIO DE ECONOMÍA Y COMPETITIVIDAD SECRETARÍA DE ESTADO DE COMERCIO DIRECCIÓN GENERAL DE COMERCIO E INVERSIONES S. G. DE COMERCIO INTERNACIONAL DE SERVICIOS E INVERSIONES This is a translation, from Spanish, of instructions for filling

More information

CREATE TABLE FUNCAO ( idfuncao INTEGER NOT NULL, DESCRICAO VARCHAR NULL, PRIMARY KEY(idFUNCAO) );

CREATE TABLE FUNCAO ( idfuncao INTEGER NOT NULL, DESCRICAO VARCHAR NULL, PRIMARY KEY(idFUNCAO) ); create database syslog CREATE TABLE GRUPO_PRODUTO ( idgrupo_produto INTEGER NOT NULL, PRIMARY KEY(idGRUPO_PRODUTO) CREATE TABLE FUNCAO ( idfuncao INTEGER NOT NULL, PRIMARY KEY(idFUNCAO) CREATE TABLE FORNECEDOR

More information

Formato de Checklist de Auditoría a Entidad de Formación Basado en EN 9104-3 TPAB AUDIT. Ref. EN 9104-003 6.1 6.1 6.2 6.2 6.2 6.2 6.

Formato de Checklist de Auditoría a Entidad de Formación Basado en EN 9104-3 TPAB AUDIT. Ref. EN 9104-003 6.1 6.1 6.2 6.2 6.2 6.2 6. Spanish B Formato de Checklist de uditoría a Entidad de Formación Basado en EN 9104-3 TEDE-B-005 Rev.01 (04/11/2009) TPB UDIT Nº Item 1 Ref. EN 9104-003 CLSS SIZE, TTENDNCE Number of students shall be

More information

C o u n t y o f F a i r f a x, V i r g i n i a IMPORTANT

C o u n t y o f F a i r f a x, V i r g i n i a IMPORTANT C o u n t y o f F a i r f a x, V i r g i n i a To protect and enrich the quality of life for the people, neighborhoods and diverse communities of Fairfax County IMPORTANT Please use this as a checklist

More information

CSCE 156H/RAIK 184H Assignment 4 - Project Phase III Database Design

CSCE 156H/RAIK 184H Assignment 4 - Project Phase III Database Design CSCE 156H/RAIK 184H Assignment 4 - Project Phase III Database Design Dr. Chris Bourke Spring 2016 1 Introduction In the previous phase of this project, you built an application framework that modeled the

More information

Update a MS2.2 20060817

Update a MS2.2 20060817 Los cambios a realizar en la base de datos son los siguientes. Se ejecutarán en el phpmyadmin del servidor. A ser posible sobre una base de datos replicada, por si hay algún error. Si no se trata de una

More information

Temario- speakers. Management of the axilla in local and / or regional recurrence Manejo de la axila en la recurrencia local y / regional.

Temario- speakers. Management of the axilla in local and / or regional recurrence Manejo de la axila en la recurrencia local y / regional. 16.08.11 Henry Kuerer MD, PhD, FACS Director Breast SurgicalOncology University of Texas MD Anderson Cancer Center. Houston, TX Re-excision in local recurrence after conservative therapy Retumorectomía

More information

TECNOLÓGICO DE MONTERREY TRAINEESHIP PROGRAM FOR FULL-TIME STUDENTS IN PARIS, FRANCE ORGANIZATION FOR ECONOMIC CO-OPERATION AND DEVELOPMENT (OECD)

TECNOLÓGICO DE MONTERREY TRAINEESHIP PROGRAM FOR FULL-TIME STUDENTS IN PARIS, FRANCE ORGANIZATION FOR ECONOMIC CO-OPERATION AND DEVELOPMENT (OECD) TECNOLÓGICO DE MONTERREY TRAINEESHIP PROGRAM FOR FULL-TIME STUDENTS IN PARIS, FRANCE AT ORGANIZATION FOR ECONOMIC CO-OPERATION AND DEVELOPMENT (OECD) Terms of reference Autumn Round: January-May 2015 Vice-presidency

More information

Fecha: 04/12/2010. New standard treatment for breast cancer at early stages established

Fecha: 04/12/2010. New standard treatment for breast cancer at early stages established New standard treatment for breast cancer at early stages established London December 04, 2010 12:01:13 AM IST Spanish Oncology has established a new standard treatment for breast cancer at early stages,

More information

THE FOUR AMBASSADORS ASSOCIATION, INC.

THE FOUR AMBASSADORS ASSOCIATION, INC. THE FOUR AMBASSADORS ASSOCIATION, INC. INSTRUCTIONS 1. Please complete the application in full. Be sure to fill in your name exactly as it should appear on the approval form. In order to expedite the approval

More information

MY CHILD HAS A MEDICAL CONDITION WHICH MAY REQUIRE ATTENTION AT SCHOOL (MEDIC ALERT)

MY CHILD HAS A MEDICAL CONDITION WHICH MAY REQUIRE ATTENTION AT SCHOOL (MEDIC ALERT) TILLAMOOK School District #9 Teacher: Grade: HEALTH QUESTIONAIRE STUDENT S NAME: BIRTHDATE: COUNTRY OF BIRTH: STUDENT S ADDRESS: PHONE: CELL: MY CHILD HAS A MEDICAL CONDITION WHICH MAY REQUIRE ATTENTION

More information

Introducción a las bases de datos SQL Libro de referencia

Introducción a las bases de datos SQL Libro de referencia Introducción a las bases de datos SQL 1 Libro de referencia Java How To Program 3ed Edition Deitel&Deitel Prentice Hall, 1999 2 Introduction Relational-Database Model Relational Database Overview: The

More information

NORTH AMERICAN LANGUAGE AND CULTURE ASSISTANTS IN SPAIN

NORTH AMERICAN LANGUAGE AND CULTURE ASSISTANTS IN SPAIN 2015-2016 School Year How to register online your application NORTH AMERICAN LANGUAGE AND CULTURE ASSISTANTS IN SPAIN Updated: December 17, 2014 North American Language and Culture Assistants in Spain

More information

Programa llamado insert.html

Programa llamado insert.html Programa llamado insert.html datos generales registro de Producto

More information

RIGGING CONDITIONS AND PROCEDURES

RIGGING CONDITIONS AND PROCEDURES RIGGING CONDITIONS AND PROCEDURES 1. ESTIMATE BUDGET PROCEDURES 1.1 Rigging Order The exhibitor should fill in the form Quotation Order Form (enclosed in the next section) in order to elaborate the suitable

More information

Propiedades del esquema del Documento XML de envío:

Propiedades del esquema del Documento XML de envío: Web Services Envio y Respuesta DIPS Courier Tipo Operación: 122-DIPS CURRIER/NORMAL 123-DIPS CURRIER/ANTICIP Los datos a considerar para el Servicio Web DIN que se encuentra en aduana son los siguientes:

More information

PATIENT'S INFORMATION REGISTRATION SHEET / INFORMACION DEL PACIENTE

PATIENT'S INFORMATION REGISTRATION SHEET / INFORMACION DEL PACIENTE DAN S. COHEN, M.D PATIENT'S INFORMATION REGISTRATION SHEET / INFORMACION DEL PACIENTE PLEASE PRINT CLEARLY / POR FAVOR ESCRIBA LEGIBLEMENTE TODAY S DATE / FECHA DE HOY: PATIENT'S NAME/NOMBRE DEL PACIENTE:

More information

Introduction This document s purpose is to define Microsoft SQL server database design standards.

Introduction This document s purpose is to define Microsoft SQL server database design standards. Introduction This document s purpose is to define Microsoft SQL server database design standards. The database being developed or changed should be depicted in an ERD (Entity Relationship Diagram). The

More information

Curso SQL Server 2012 para Desarrolladores

Curso SQL Server 2012 para Desarrolladores Curso SQL Server 2012 para Desarrolladores Objetivos: Obtener una introducción al diseño de Bases de Datos Relacionales y a SQL Usar el Management Studio y las características de SQL Server 2012 para desarrallodores.

More information

types, but key declarations and constraints Similar CREATE X commands for other schema ëdrop X name" deletes the created element of beer VARCHARè20è,

types, but key declarations and constraints Similar CREATE X commands for other schema ëdrop X name deletes the created element of beer VARCHARè20è, Dening a Database Schema CREATE TABLE name èlist of elementsè. Principal elements are attributes and their types, but key declarations and constraints also appear. Similar CREATE X commands for other schema

More information

How To Know If An Ipod Is Compatible With An Ipo Or Ipo 2.1.1 (Sanyo)

How To Know If An Ipod Is Compatible With An Ipo Or Ipo 2.1.1 (Sanyo) IntesisBox PA-RC2-xxx-1 SANYO compatibilities In this document the compatible SANYO models with the following IntesisBox RC2 interfaces are listed: / En éste documento se listan los modelos SANYO compatibles

More information

Information sheet on the main Schengen rules, why a ban can be imposed and how to limit a ban imposed by Germany March 2011

Information sheet on the main Schengen rules, why a ban can be imposed and how to limit a ban imposed by Germany March 2011 Information sheet on the main Schengen rules, why a ban can be imposed and how to limit a ban imposed by Germany March 2011 Every year the Embassy receives numerous calls and letters asking about how to

More information

Database Migration : An In Depth look!!

Database Migration : An In Depth look!! Database Migration : An In Depth look!! By Anil Mahadev anilm001@gmail.com As most of you are aware of the fact that just like operating System migrations are taking place, databases are no different.

More information

When replying please quote: Ref.: NT-N1.17.2 EMX0943 20 October 2015

When replying please quote: Ref.: NT-N1.17.2 EMX0943 20 October 2015 When replying please quote: Ref.: NT-N1.17.2 EMX0943 20 October 2015 To: States, Territories and International Organizations Subject: Invitation Twelfth Information Analysis Team Meeting (IAT/12) and Twenty-

More information

Peru Business visa Application

Peru Business visa Application Peru Business visa Application Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned in time for your travel: Peru business visa checklist Filled

More information

SQL Server Table Design - Best Practices

SQL Server Table Design - Best Practices CwJ Consulting Ltd SQL Server Table Design - Best Practices Author: Andy Hogg Date: 20 th February 2015 Version: 1.11 SQL Server Table Design Best Practices 1 Contents 1. Introduction... 3 What is a table?...

More information

Link. Links. Links. Links. Network. Links. Currículum - Portafolio. Content. Community. Community. Online. Feedback. Feedback. Twitter.

Link. Links. Links. Links. Network. Links. Currículum - Portafolio. Content. Community. Community. Online. Feedback. Feedback. Twitter. Username manager Facebook Currículum - Portafolio manager Facebook Comunication CV Username manager Facebook manager Facebook Comunication Facebook Comunication Información Personal Soy Periodista y Comunicador

More information

Database Query 1: SQL Basics

Database Query 1: SQL Basics Database Query 1: SQL Basics CIS 3730 Designing and Managing Data J.G. Zheng Fall 2010 1 Overview Using Structured Query Language (SQL) to get the data you want from relational databases Learning basic

More information

Database Migration from MySQL to RDM Server

Database Migration from MySQL to RDM Server MIGRATION GUIDE Database Migration from MySQL to RDM Server A Birdstep Technology, Inc. Raima Embedded Database Division Migration Guide Published: May, 2009 Author: Daigoro F. Toyama Senior Software Engineer

More information

Curso SQL Server 2008 for Developers

Curso SQL Server 2008 for Developers Curso SQL Server 2008 for Developers Objetivos: Aprenderás a crear joins interiores y exteriores complejos, consultas agrupadas, y subconsultas Aprenderás a manejar los diferentes tipos de datos y sabrás

More information

DDL is short name of Data Definition Language, which deals with database schemas and descriptions, of how the data should reside in the database.

DDL is short name of Data Definition Language, which deals with database schemas and descriptions, of how the data should reside in the database. Snippets Datenmanagement Version: 1.1.0 Study: 2. Semester, Bachelor in Business and Computer Science School: Hochschule Luzern - Wirtschaft Author: Janik von Rotz (http://janikvonrotz.ch) Source: https://gist.github.com/janikvonrotz/6e27788f662fcdbba3fb

More information

Oracle Database 10g Express

Oracle Database 10g Express Oracle Database 10g Express This tutorial prepares the Oracle Database 10g Express Edition Developer to perform common development and administrative tasks of Oracle Database 10g Express Edition. Objectives

More information

Annex A How to register online

Annex A How to register online North American Language and Culture Assistants in Spain How to register on line 2012 2013 School Year Updated: November/2011 Annex A How to register online Use a PC and the internet Explorer browser for

More information

Nicholas C. Lambrou, M.D., LLC 6200 Sunset Drive, STE 502, Miami, Florida 33143 4306 Alton Road, 3 rd Floor, Miami Beach, Florida 33140

Nicholas C. Lambrou, M.D., LLC 6200 Sunset Drive, STE 502, Miami, Florida 33143 4306 Alton Road, 3 rd Floor, Miami Beach, Florida 33140 DATE: Fecha: DRIVER'S LICENSE# Numero De Licencia De Conducir: PATIENT NAME: BIRTH DATE: Nombre del paciente Fecha de nacimiento HOME ADDRESS: SOCIAL SECURITY: Direccion del hogar: Seguro Social CITY/STATE/ZIP:

More information

ABASTECIMIENTO TARJETA VERDE (TRIPULACIÓ N) DEPENDENCIA ET CLASE TIPO # de ID /Nombre DEPENDENCIA ET FT CLASE TIPO # de ID / Nombre

ABASTECIMIENTO TARJETA VERDE (TRIPULACIÓ N) DEPENDENCIA ET CLASE TIPO # de ID /Nombre DEPENDENCIA ET FT CLASE TIPO # de ID / Nombre ABASTECIMIENTO TARJETA VERDE (TRIPULACIÓ N) DEPENDENCIA ET CLASE TIPO # de ID /Nombre DEPENDENCIA ET FT CLASE TIPO # de ID / Nombre # DE ORDEN/SOLICITACIÓ N FECHA/ DE REGISTRO BASE LUGAR DE SALIDA NOMBRE

More information

I M M I G R A N T WORKERS HEALTH & SAFETY

I M M I G R A N T WORKERS HEALTH & SAFETY I M M I G R A N T WORKERS HEALTH & SAFETY 1-HOUR HAZARD IDENTIFICATION TRAINING GOAL: This training is designed for a one-hour session with immigrant workers from a variety of industries and from multiple

More information

Guide to Upsizing from Access to SQL Server

Guide to Upsizing from Access to SQL Server Guide to Upsizing from Access to SQL Server An introduction to the issues involved in upsizing an application from Microsoft Access to SQL Server January 2003 Aztec Computing 1 Why Should I Consider Upsizing

More information

Update of the NOTAM Contingency Plan. (Presented by the Secretariat) Summary

Update of the NOTAM Contingency Plan. (Presented by the Secretariat) Summary International Civil Aviation Organization SAM/AIM/3-WP/06 South American Regional Office 29/02/12 Third Multilateral Meeting of the SAM Region for the Transition of AIS to AIM (SAM/AIM/3) Lima, Peru, 12

More information

INTERFACE TECHNICAL MANUAL FOR ELECTRONIC TAX INFORMATION EXCHANGE (E-TIE) FOR TAX YEAR 2009

INTERFACE TECHNICAL MANUAL FOR ELECTRONIC TAX INFORMATION EXCHANGE (E-TIE) FOR TAX YEAR 2009 Commonwealth of Puerto Rico Department of the Treasury PUBLICATION 09-05 INTERFACE TECHNICAL MANUAL FOR ELECTRONIC TAX INFORMATION EXCHANGE (E-TIE) FOR TAX YEAR 2009 Table of Contents 1. Introduction and

More information

IT2304: Database Systems 1 (DBS 1)

IT2304: Database Systems 1 (DBS 1) : Database Systems 1 (DBS 1) (Compulsory) 1. OUTLINE OF SYLLABUS Topic Minimum number of hours Introduction to DBMS 07 Relational Data Model 03 Data manipulation using Relational Algebra 06 Data manipulation

More information

Tutorial: How to Use SQL Server Management Studio from Home

Tutorial: How to Use SQL Server Management Studio from Home Tutorial: How to Use SQL Server Management Studio from Home Steps: 1. Assess the Environment 2. Set up the Environment 3. Download Microsoft SQL Server Express Edition 4. Install Microsoft SQL Server Express

More information

Dictionary (catálogo)

Dictionary (catálogo) Catálogo Oracle Catálogo Esquema: un conjunto de estructuras de datos lógicas (objetos del esquema), propiedad de un usuario Un esquema contiene, entre otros, los objetos siguientes: tablas vistas índices

More information

Manual Registration in the *SRE

Manual Registration in the *SRE SGNTJ INTCF Manual Registration in the *SRE * SRE (Sistema de Relación de Empresas) Communication System of the Enterprise with the INTCF (Instituto Nacional de Toxicología y Ciencias Forenses) Page 1

More information

Apéndice C: Código Fuente del Programa DBConnection.java

Apéndice C: Código Fuente del Programa DBConnection.java Apéndice C: Código Fuente del Programa DBConnection.java import java.sql.*; import java.io.*; import java.*; import java.util.*; import java.net.*; public class DBConnection Connection pgsqlconn = null;

More information

IT2305 Database Systems I (Compulsory)

IT2305 Database Systems I (Compulsory) Database Systems I (Compulsory) INTRODUCTION This is one of the 4 modules designed for Semester 2 of Bachelor of Information Technology Degree program. CREDITS: 04 LEARNING OUTCOMES On completion of this

More information

SQL Server An Overview

SQL Server An Overview SQL Server An Overview SQL Server Microsoft SQL Server is designed to work effectively in a number of environments: As a two-tier or multi-tier client/server database system As a desktop database system

More information

Laboratorio 3 Comunicación sincrónica Vía Satélite

Laboratorio 3 Comunicación sincrónica Vía Satélite Laboratorio 3 Comunicación sincrónica Vía Satélite Esquema de la Red WAN 192.168.0.0 /30 192.168.0.1 Router 1 Router 2 10.0.1.1 192.168.0.1 10.0.2.1 Ethernet Ethernet 10.0.1.20 LAN 1 10.0.1.0 /24 LAN 2

More information

Conventional Files versus the Database. Files versus Database. Pros and Cons of Conventional Files. Pros and Cons of Databases. Fields (continued)

Conventional Files versus the Database. Files versus Database. Pros and Cons of Conventional Files. Pros and Cons of Databases. Fields (continued) Conventional Files versus the Database Files versus Database File a collection of similar records. Files are unrelated to each other except in the code of an application program. Data storage is built

More information

PERSONAL INFORMATION / INFORMACIÓN GENERAL Last Name / Apellido Middle Name / Segundo Nombre Name / Nombre

PERSONAL INFORMATION / INFORMACIÓN GENERAL Last Name / Apellido Middle Name / Segundo Nombre Name / Nombre COMPUTER CLASS REGISTRATION FORM (Please Print Clearly Lea con cuidado) To register for the Computer Technology Program, please complete the following form. All fields in this form must be filled out in

More information

Peru Business visa Application for citizens of Canada living in Ontario - Ottawa, Gatineau

Peru Business visa Application for citizens of Canada living in Ontario - Ottawa, Gatineau Peru Business visa Application for citizens of Canada living in Ontario - Ottawa, Gatineau Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned

More information

SQL DATA DEFINITION: KEY CONSTRAINTS. CS121: Introduction to Relational Database Systems Fall 2015 Lecture 7

SQL DATA DEFINITION: KEY CONSTRAINTS. CS121: Introduction to Relational Database Systems Fall 2015 Lecture 7 SQL DATA DEFINITION: KEY CONSTRAINTS CS121: Introduction to Relational Database Systems Fall 2015 Lecture 7 Data Definition 2 Covered most of SQL data manipulation operations Continue exploration of SQL

More information

Introduction to SQL (3.1-3.4)

Introduction to SQL (3.1-3.4) CSL 451 Introduction to Database Systems Introduction to SQL (3.1-3.4) Department of Computer Science and Engineering Indian Institute of Technology Ropar Narayanan (CK) Chatapuram Krishnan! Summary Parts

More information

Joint PhD-Program in Agricultural Economics (J-PPAE)

Joint PhD-Program in Agricultural Economics (J-PPAE) Curriculum The PhD-candidates that fulfill minimum requirements in economic formation are required to participate in PhD modules equivalent to 24 ECTS-credits in the fields of methods, specialization and

More information

User's Guide. and Software Design of. a Web Based Task Tracking System 2004-01-28. Version 1.0

User's Guide. and Software Design of. a Web Based Task Tracking System 2004-01-28. Version 1.0 User's Guide and Software Design of a Web Based Task Tracking System 2004-01-28 Version 1.0 File: \\CVFILER\cv-cdl-sis\Preamps\TaskTrackingSystem.doc Page i Printed: 2004-01-28 19:31:06 Revisions Table

More information

A table is a collection of related data entries and it consists of columns and rows.

A table is a collection of related data entries and it consists of columns and rows. CST 250 MySQL Notes (Source: www.w3schools.com) MySQL is the most popular open-source database system. What is MySQL? MySQL is a database. The data in MySQL is stored in database objects called tables.

More information

Linas Virbalas Continuent, Inc.

Linas Virbalas Continuent, Inc. Linas Virbalas Continuent, Inc. Heterogeneous Replication Replication between different types of DBMS / Introductions / What is Tungsten (the whole stack)? / A Word About MySQL Replication / Tungsten Replicator:

More information

Schema XML_PGE.xsd. element GrupoInformes. attribute GrupoInformes/@version. XML_PGE.xsd unqualified qualified http://sgpfc.igae.minhap.

Schema XML_PGE.xsd. element GrupoInformes. attribute GrupoInformes/@version. XML_PGE.xsd unqualified qualified http://sgpfc.igae.minhap. Schema XML_PGE.xsd schema location: attribute form default: element form default: targetnamespace: XML_PGE.xsd unqualified qualified http://sgpfc.igae.minhap.es/xmlpge element GrupoInformes children Informe

More information

Código Asignatura Créditos Idioma P NP Total 29107 Inglés I 2.4 3.6 6 Inglés

Código Asignatura Créditos Idioma P NP Total 29107 Inglés I 2.4 3.6 6 Inglés Pág.: 1 de 11 1.-Subject details Código Asignatura Créditos Idioma P NP Total 29107 2.4 3.6 6 Inglés Titulación Carácter Curso Semestre Estudios Grado en Turismo FB 1º 1º Grado FB: Formación básica FOb:Formación

More information

PassMark Software BurnInTest Management Console. Quick start guide

PassMark Software BurnInTest Management Console. Quick start guide PassMark Software BurnInTest Management Console Quick start guide Edition: 1.1 Date: 16 August 2013 BurnInTest Version: 7.1.1011+ BurnInTest is a trademark of PassMark software Overview For BurnInTest

More information

CSCI110 Exercise 4: Database - MySQL

CSCI110 Exercise 4: Database - MySQL CSCI110 Exercise 4: Database - MySQL The exercise This exercise is to be completed in the laboratory and your completed work is to be shown to the laboratory tutor. The work should be done in week-8 but

More information

EECS 647: Introduction to Database Systems

EECS 647: Introduction to Database Systems EECS 647: Introduction to Database Systems Instructor: Luke Huan Spring 2013 Administrative Take home background survey is due this coming Friday The grader of this course is Ms. Xiaoli Li and her email

More information

Action Required: Take note and confirm participation before 15 May 2015

Action Required: Take note and confirm participation before 15 May 2015 When replying please quote: Ref.: NT-NT4-4.47 EMX356 13 April 2015 To: States, Territories and International Organizations Subject: Workshop on Air Traffic Flow Management (ATFM) Implementation for the

More information