Dictionary (catálogo)

Size: px
Start display at page:

Download "Dictionary (catálogo)"

Transcription

1 Catálogo Oracle

2 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 secuencias disparadores sinónimos clusters Referenciar un nombre de un objeto del esquema: user1.tabla1 El catálogo de Oracle: diccionario de datos (tablas base y vistas) Los usuarios acceden a las vistas del catálogo: USER Lo que el usuario ha creado, o sea, lo que está en su esquema. ALL A lo que el usuario tiene acceso, esto es, lo que ha creado y a lo que le han otorgado acceso. DBA A lo que el DBA puede acceder, (a lo que todos los usuarios pueden acceder).

3 Dictionary (catálogo) Vista DICTIONARY (sinónimo DICT) Nombre Nulo? Tipo TABLE_NAME VARCHAR2(30) COMMENTS VARCHAR2(4000)

4 Objects {DBA ALL USER}_OBJECTS (Vista) selección de algunas columnas OWNER VARCHAR2(128) Owner of the OBJECTS definition. OBJECT_NAME VARCHAR2(128) Name associated with the OBJECTS definition. OBJECT_TYPE VARCHAR2(128) Type of the object: TABLE, VIEW, INDEX, SEQUENCE, SYNONYM. CREATED DATE Timestamp for the creation of the OBJECTS. STATUS VARCHAR2(128) Status of the OBJECTS: VALID, INVALID, or N/A (always valid).

5 Catalog {DBA ALL USER}_CATALOG (Vista) OWNER VARCHAR2(30) Owner of the INDEX, TABLE, CLUSTER, VIEW, SYNONYM, SEQUENCE TABLE_NAME VARCHAR2(30) Name of the INDEX, TABLE, CLUSTER, VIEW, SYNONYM, SEQUENCE TABLE_TYPE VARCHAR2(11) Type of the INDEX, TABLE, CLUSTER, VIEW, SYNONYM, SEQUENCE

6 Tables {DBA ALL USER}_TABLES (vista) Selección de algunas columnas OWNER TABLE_NAME VARCHAR2(128) User name of the owner of the table. VARCHAR2(128) Name of the table. TABLESPACE_NAME VARCHAR2(128) Name of the tablespace. CLUSTER_NAME* VARCHAR2(128) Name of the cluster, if any, to which the table belongs. PCT_FREE* NUMBER(10) Minimum percentage of free space in a block. PCT_USED* NUMBER(10) Minimum percentage of used space in a block. INI_TRANS* NUMBER(10) Initial number of transactions. MAX_TRANS* NUMBER(10) Maximum number of transactions. INITIAL_EXTENT* NUMBER(10) Size of the initial extent in bytes. NEXT_EXTENT* NUMBER(10) Size of secondary extents in bytes. MIN_EXTENTS* NUMBER(10) Minimum number of extents allowed in the segment. MAX_EXTENTS* NUMBER(10) Maximum number of extents allowed in the segment. PCT_INCREASE* NUMBER(10) Percentage increase in extent size. BACKED_UP* VARCHAR2(1) If the table was backed up since last change. NUM_ROWS* NUMBER(10) Number of rows in the table. BLOCKS* NUMBER(10) Number of data blocks allocated to the table. EMPTY_BLOCKS* NUMBER(10) Number of data blocks allocated to the table that contain no data. AVG_SPACE* NUMBER(10) Average amount of free space (in bytes) in a data block allocated to the table. AVG_ROW_LEN* NUMBER(10) Average length of a row in the table in bytes.

7 Columnas {DBA ALL USER}_TAB_COLUMNS (vista) Selección de algunas columnas OWNER VARCHAR2(30) Owner of the table, view, or cluster TABLE_NAME VARCHAR2(30) Name of the table, view, or cluster COLUMN_NAME VARCHAR2(30) Column name DATA_TYPE VARCHAR2(106) Datatype of the column DATA_TYPE_OWNER VARCHAR2(30) Owner of the datatype of the column DATA_LENGTH NUMBER Length of the column (in bytes) DATA_PRECISION NUMBER Decimal precision for NUMBER datatype; binary precision for FLOAT datatype, null for all other datatypes DATA_SCALE NUMBER Digits to right of decimal point in a number NULLABLE VARCHAR2(1) Specifies whether a column allows NULLs. Value is N if there is a NOT NULL constraint on the column or if the column is part of a PRIMARY KEY. The constraint should be in an ENABLE VALIDATE state......

8 Tables TABS sinónimo de USER_TABLES select object_name, object_type from all_objects where object_name='tabs'; OBJECT_NAME OBJECT_TYPE TABS SYNONYM TAB vista (con nuestras tablas también) TNAME VARCHAR2(30) TABTYPE VARCHAR2(7) CLUSTERID NUMBER

9 Views {DBA ALL USER}_VIEWS (vista) Selección de algunas columnas OWNER VARCHAR2(30) Owner of the view VIEW_NAME VARCHAR2(30) Name of the view TEXT_LENGTH NUMBER Length of the view text TEXT LONG View text TYPE_TEXT_LENGTH NUMBER Length of the type clause of the typed view TYPE_TEXT VARCHAR2(4000) Type clause of the typed view OID_TEXT_LENGTH NUMBER Length of the WITH OID clause of the typed view OID_TEXT VARCHAR2(4000) WITH OID clause of the typed view VIEW_TYPE_OWNER VARCHAR2(30) Owner of the type of the view if the view is a typed view VIEW_TYPE VARCHAR2(30) Type of the view if the view is a typed view SUPERVIEW_NAME VARCHAR2(30) Name of the superview El SQLPLUS sólo deja ver unos pocos caracteres de la columna tipo LONG, para ver más: SET LONG 300 (por ejemplo)

10 Índices {DBA ALL USER}_INDEXES (vista) Selección de columnas OWNER VARCHAR2(30) Owner of the index INDEX_NAME VARCHAR2(30) Name of the index INDEX_TYPE VARCHAR2(27) Type of the index: TABLE_OWNER VARCHAR2(30) Owner of the indexed object TABLE_NAME VARCHAR2(30) Name of the indexed object TABLE_TYPE CHAR(5) Type of the indexed object (for example, TABLE, CLUSTER) UNIQUENESS VARCHAR2(9) Indicates whether the index is UNIQUE or NONUNIQUE COMPRESSION VARCHAR2(8) Indicates whether index compression is enabled (ENABLED) or not (DISABLED).

11 Restricciones {DBA ALL USER}_CONSTRAINTS (vista) Selección de columnas OWNER VARCHAR2(30) Owner of the constraint definition CONSTRAINT_NAME VARCHAR2(30) Name of the constraint definition CONSTRAINT_TYPE VARCHAR2(1) Type of constraint definition: C (check constraint on a table) P (primary key) U (unique key) R (referential integrity) V (with check option, on a view) O (with read only, on a view) TABLE_NAME VARCHAR2(30) Name associated with the table (or view) with constraint definition SEARCH_CONDITION LONG Text of search condition for a check constraint DEFERRABLE VARCHAR2(14) Indicates whether the constraint is deferrable (DEFERRABLE) or not (NOT DEFERRABLE) DEFERRED VARCHAR2(9) Indicates whether the constraint was initially deferred (DEFERRED) or not (IMMEDIATE) STATUS VARCHAR2(9) Enforcement status of constraint (ENABLED or DISABLED) VALIDATED VARCHAR2(13) Whether all data obeys the constraint (VALIDATED or NOT VALIDATED)

12 Restricciones Recordemos que Oracle permite activar y desactivar las restricciones, lo que aparece en las columnas STATUS y VALIDATED: ENABLE VALIDATE Se comprueba para todas las filas existentes y nuevas. ENABLE NOVALIDATE Se comprueba sólo para las filas nuevas. DISABLE No se comprueba. El cambio de status: ALTER TABLE dept1 DISABLE CONSTRAINT NN_DEPT_CTD; ALTER TABLE dept1 ENABLE NOVALIDATE CONSTRAINT NN_DEPT_CTD; ALTER TABLE dept1 ENABLE VALIDATE CONSTRAINT NN_DEPT_CTD;

13 Restricciones {DBA ALL USER}_CONS_COLUMNS (vista) Column Datatype NULL Description OWNER VARCHAR2(30) NOT NULL Owner of the constraint definition CONSTRAINT_NAME VARCHAR2(30) NOT NULL Name of the constraint definition TABLE_NAME VARCHAR2(30) NOT NULL Name of the table with the constraint definition COLUMN_NAME VARCHAR2(4000) Name of the column or attribute of the object type column specified in the constraint definition POSITION NUMBER Original position of the column or attribute in the definition of the object

14 Sinónimos {DBA ALL USER}_SYNONYMS (vista) Selección de columnas OWNER VARCHAR2(30) Owner of the synonym SYNONYM_NAME VARCHAR2(30) Name of the synonym TABLE_OWNER VARCHAR2(30) Owner of the object referenced by the synonym. Although the column is called TABLE_OWNER, the object owned is not necessarily a table. It can be any general object such as a view, sequence, stored procedure, synonym, and so on TABLE_NAME VARCHAR2(30) Name of the object referenced by the synonym. Although the column is called TABLE_NAME, the object does not necessarily have to be a table. It can be any general object such as a view, sequence, stored procedure, synonym, and so on.

15 Sinónimos CREATE SYNONYM <sinónimo> FOR <object>;

16 Usuarios {DBA ALL USER}_USERS (vista) USERNAME VARCHAR2(30) Name of the user USER_ID NUMBER ID number of the user CREATED DATE User creation date Quién soy? SELECT USER FROM DUAL

17 Parámetros de configuración SGBD V$PARAMETER (Vista) (selección de columnas) NUM NUMBER Parameter number NAME VARCHAR2(80) Name of the parameter TYPE NUMBER Parameter type: 1 - Boolean 2 - String 3 - Integer 4 - Parameter file 5 - Reserved 6 - Big integer VALUE VARCHAR2(4000) Parameter value for the session (if modified within the session); otherwise, the instance-wide parameter value DESCRIPTION VARCHAR2(255) Description of the parameter

18 Datos de la instancia V$INSTANCE (Vista) (selección de columnas) INSTANCE_NUMBER NUMBER Instance number used for instance registration INSTANCE_NAME VARCHAR2(16) Name of the instance HOST_NAME VARCHAR2(64) Name of the host machine VERSION VARCHAR2(17) Database version STARTUP_TIME DATE Time when the instance was started STATUS VARCHAR2(12) Status of the instance PARALLEL VARCHAR2(3) Indicates whether the instance is mounted in cluster database mode (YES) or not (NO) ARCHIVER VARCHAR2(7) Automatic archiving status DATABASE_STATUS VARCHAR2(17) Status of the database: ACTIVE SUSPENDED INSTANCE RECOVERY..

19 Datos de las sesiones V$SESSION (Vista) (selección de columnas) SID NUMBER Session identifier AUDSID NUMBER Auditing session ID USERNAME VARCHAR2(30) Oracle username OSUSER VARCHAR2(30) Operating system client user name PROGRAM VARCHAR2(48) Operating system program name MODULE VARCHAR2(48) Name of the currently executing module as set by calling the DBMS_APPLICATION_INFO.SET _MODULE procedure....

Managing Objects with Data Dictionary Views. Copyright 2006, Oracle. All rights reserved.

Managing Objects with Data Dictionary Views. Copyright 2006, Oracle. All rights reserved. Managing Objects with Data Dictionary Views Objectives After completing this lesson, you should be able to do the following: Use the data dictionary views to research data on your objects Query various

More information

Oracle Database Gateway for ODBC

Oracle Database Gateway for ODBC Oracle Database Gateway for ODBC User s Guide 11g Release 2 (11.2) E12070-03 January 2012 Oracle Database Gateway for ODBC User's Guide, 11g Release 2 (11.2) E12070-03 Copyright 2007, 2012, Oracle and/or

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

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

New Server Installation. Revisión: 13/10/2014

New Server Installation. Revisión: 13/10/2014 Revisión: 13/10/2014 I Contenido Parte I Introduction 1 Parte II Opening Ports 3 1 Access to the... 3 Advanced Security Firewall 2 Opening ports... 5 Parte III Create & Share Repositorio folder 8 1 Create

More information

Oracle Data Dictionary

Oracle Data Dictionary Oracle Data Dictionary The Oracle data dictionary is one of the most important components of the Oracle DBMS. It contains all information about the structures and objects of the database such as tables,

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

ECCAIRS 5 Instalación

ECCAIRS 5 Instalación ECCAIRS 5 Instalación Paso a paso Preparado por: Arturo Martínez Oficina Regional Sudamericana Uniendo a la Aviación en Seguridad Operacional Seguridad Medioambiente Instalación Paso a paso Escenario Windows

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

Part 7: Data Dictionaries

Part 7: Data Dictionaries 7 Data Dictionaries 7-1 Part 7: Data Dictionaries References: Elmasri/Navathe: Fundamentals of Database Systems, 3rd Edition, 1999/2000 Chapter 17: Database System Architectures and the System Catalog,

More information

Database Extensions Visual Walkthrough. PowerSchool Student Information System

Database Extensions Visual Walkthrough. PowerSchool Student Information System PowerSchool Student Information System Released October 7, 2013 Document Owner: Documentation Services This edition applies to Release 7.9.x of the PowerSchool software and to all subsequent releases and

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

FINDING ORACLE TABLE METADATA WITH PROC CONTENTS

FINDING ORACLE TABLE METADATA WITH PROC CONTENTS Finding Oracle Table Metadata: When PROC CONTENTS Is Not Enough Jeremy W. Poling, B&W Y-12 L.L.C., Oak Ridge, TN ABSTRACT Complex Oracle databases often contain hundreds of linked tables. For SAS/ACCESS

More information

High-Performance Oracle: Proven Methods for Achieving Optimum Performance and Availability

High-Performance Oracle: Proven Methods for Achieving Optimum Performance and Availability About the Author Geoff Ingram (mailto:geoff@dbcool.com) is a UK-based ex-oracle product developer who has worked as an independent Oracle consultant since leaving Oracle Corporation in the mid-nineties.

More information

SQL. Short introduction

SQL. Short introduction SQL Short introduction 1 Overview SQL, which stands for Structured Query Language, is used to communicate with a database. Through SQL one can create, manipulate, query and delete tables and contents.

More information

Topics Advanced PL/SQL, Integration with PROIV SuperLayer and use within Glovia

Topics Advanced PL/SQL, Integration with PROIV SuperLayer and use within Glovia Topics Advanced PL/SQL, Integration with PROIV SuperLayer and use within Glovia 1. SQL Review Single Row Functions Character Functions Date Functions Numeric Function Conversion Functions General Functions

More information

INTELIGENCIA DE NEGOCIO CON SQL SERVER

INTELIGENCIA DE NEGOCIO CON SQL SERVER INTELIGENCIA DE NEGOCIO CON SQL SERVER Este curso de Microsoft e-learning está orientado a preparar a los alumnos en el desarrollo de soluciones de Business Intelligence con SQL Server. El curso consta

More information

Monterey County Behavioral Health Policy and Procedure

Monterey County Behavioral Health Policy and Procedure Monterey County Behavioral Health Policy and Procedure 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 Policy Number 144 Policy Title Disclosure of Unlicensed Status for License

More information

March 9 th, 2010. Oracle Total Recall

March 9 th, 2010. Oracle Total Recall March 9 th, 2010 Oracle Total Recall Agenda Flashback Data Archive Why we need Historical Data Pre-11g methods for Historical data Oracle Total Recall overview FDA Architecture Creating and Enabling FDA

More information

Manejo Basico del Servidor de Aplicaciones WebSphere Application Server 6.0

Manejo Basico del Servidor de Aplicaciones WebSphere Application Server 6.0 Manejo Basico del Servidor de Aplicaciones WebSphere Application Server 6.0 Ing. Juan Alfonso Salvia Arquitecto de Aplicaciones IBM Uruguay Slide 2 of 45 Slide 3 of 45 Instalacion Basica del Server La

More information

PROGRAMA DE GRAFICACIÓN DE VELOCIDADES EN VENTANAS DE MAPINFO

PROGRAMA DE GRAFICACIÓN DE VELOCIDADES EN VENTANAS DE MAPINFO PROGRAMA DE GRAFICACIÓN DE VELOCIDADES EN VENTANAS DE MAPINFO Module Description: MapBasic program draw polylines using a tab file containing the data about the initial coordinate, azimuth and velocity

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

Part 12. SQL for Oracle System Tables

Part 12. SQL for Oracle System Tables Part 12 SQL for Oracle System Tables System Tables All truly relational systems must have the system information stored in tables. These system tables are accessible in the same way as any other table.

More information

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

5. CHANGING STRUCTURE AND DATA

5. CHANGING STRUCTURE AND DATA Oracle For Beginners Page : 1 5. CHANGING STRUCTURE AND DATA Altering the structure of a table Dropping a table Manipulating data Transaction Locking Read Consistency Summary Exercises Altering the structure

More information

Oracle 11gR2 : Recover dropped tablespace using RMAN tablespace point in time recovery

Oracle 11gR2 : Recover dropped tablespace using RMAN tablespace point in time recovery Oracle 11gR2 : Recover dropped tablespace using RMAN tablespace point in time recovery Mohamed Azar Oracle DBA http://mohamedazar.wordpress.com 1 Mohamed Azar http://mohamedazar.wordpress.com This is new

More information

LINIO COLOMBIA. Starting-Up & Leading E-Commerce. www.linio.com.co. Luca Ranaldi, CEO. Pedro Freire, VP Marketing and Business Development

LINIO COLOMBIA. Starting-Up & Leading E-Commerce. www.linio.com.co. Luca Ranaldi, CEO. Pedro Freire, VP Marketing and Business Development LINIO COLOMBIA Starting-Up & Leading E-Commerce Luca Ranaldi, CEO Pedro Freire, VP Marketing and Business Development 22 de Agosto 2013 www.linio.com.co QUÉ ES LINIO? Linio es la tienda online #1 en Colombia

More information

AP SPANISH LANGUAGE 2011 PRESENTATIONAL WRITING SCORING GUIDELINES

AP SPANISH LANGUAGE 2011 PRESENTATIONAL WRITING SCORING GUIDELINES AP SPANISH LANGUAGE 2011 PRESENTATIONAL WRITING SCORING GUIDELINES SCORE DESCRIPTION TASK COMPLETION TOPIC DEVELOPMENT LANGUAGE USE 5 Demonstrates excellence 4 Demonstrates command 3 Demonstrates competence

More information

Online Reorganisation with DBMS_REDEFINITION

Online Reorganisation with DBMS_REDEFINITION Online Reorganisation with DBMS_REDEFINITION Abstract This paper demonstrates how to reorganize a main table with customer data of a Siebel system after a substantial amount of records have been deleted

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

Oracle 9i Database Release 2 Enterprise Edition

Oracle 9i Database Release 2 Enterprise Edition Oracle 9i Database Release 2 Enterprise Edition Creación de Logical Stanby Elaborado por: Armando Caballero Alvarado (acaballeroa@upao.edu.pe) DBA Universidad Privada Antenor Orrego de Trujillo Fecha Publicación:

More information

Sales Management Main Features

Sales Management Main Features Sales Management Main Features Optional Subject (4 th Businesss Administration) Second Semester 4,5 ECTS Language: English Professor: Noelia Sánchez Casado e-mail: noelia.sanchez@upct.es Objectives Description

More information

DBA101: A Refresher Course

DBA101: A Refresher Course 1 DBA101: A Refresher Course Marlene Theriault and Rachel Carmichael Abstract There are many tasks that a database administrator (DBA) should perform on a routine basis. Often, ORACLE documentation is

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

www.cas-training.com C / Basílica, 19 5º - 28020 Madrid Teléfono: 91 553 61 62 / Fax: 91 598 03 46 e-mail: info@cas-training.com

www.cas-training.com C / Basílica, 19 5º - 28020 Madrid Teléfono: 91 553 61 62 / Fax: 91 598 03 46 e-mail: info@cas-training.com www.cas-training.com C / Basílica, 19 5º - 28020 Madrid Teléfono: 91 553 61 62 / Fax: 91 598 03 46 e-mail: info@cas-training.com CAS Training en su calidad de Microsoft Certified Partner for Learning Solutions,

More information

Versión precedente* Lista productos disponibles** Disponible desde el June 1, 2013

Versión precedente* Lista productos disponibles** Disponible desde el June 1, 2013 Versión precedente* Lista productos disponibles** Disponible desde el June 1, 2013 Las solicitudes de licencias de versión anterior sólo están disponibles para los productos enumerados en este documento.

More information

Monitoreo de Bases de Datos

Monitoreo de Bases de Datos Monitoreo de Bases de Datos Monitoreo de Bases de Datos Las bases de datos son pieza fundamental de una Infraestructura, es de vital importancia su correcto monitoreo de métricas para efectos de lograr

More information

What is the Common Problem that Makes most Biological Databases Hard to Work With, if not Useless to most Biologists?

What is the Common Problem that Makes most Biological Databases Hard to Work With, if not Useless to most Biologists? What is the Common Problem that Makes most Biological Databases Hard to Work With, if not Useless to most Biologists? RUNI VILHELM MRAG Americas, Inc. 110 South Hoover Blvd., Suite 212 Tampa, Florida 33609-2458

More information

Memorial Health Care System Catholic Health Initiatives Financial Assistance Application Form

Memorial Health Care System Catholic Health Initiatives Financial Assistance Application Form B Please note - Memorial Hospital may access external validation resources to assist in determining whether a full application for assistance is required. Financial Assistance Application 1) Patient Name

More information

Control of a variety of structures and idioms; occasional errors may occur, but

Control of a variety of structures and idioms; occasional errors may occur, but AP SPANISH LANGUAGE 2012 PRESENTATIONAL WRITING SCORING GUIDELINES SCORE DESCRIPTION TASK COMPLETION TOPIC DEVELOPMENT LANGUAGE USE 5 Demonstrates excellence 4 Demonstrates command 3 Demonstrates competence

More information

Varieties of Governance: Effective Public Service Delivery Workshop September, 2011 Paris, France. Cecilia Llambi...

Varieties of Governance: Effective Public Service Delivery Workshop September, 2011 Paris, France. Cecilia Llambi... Varieties of Governance: Effective Public Service Delivery Workshop September, 2011 Paris, France Cecilia Llambi... Outline of presentation Main objectives and hypothesis of the research Educational governance

More information

Physical Design. Meeting the needs of the users is the gold standard against which we measure our success in creating a database.

Physical Design. Meeting the needs of the users is the gold standard against which we measure our success in creating a database. Physical Design Physical Database Design (Defined): Process of producing a description of the implementation of the database on secondary storage; it describes the base relations, file organizations, and

More information

DIPLOMADO DE JAVA - OCA

DIPLOMADO DE JAVA - OCA DIPLOMADO DE JAVA - OCA TABLA DE CONTENIDO INTRODUCCION... 3 ESTRUCTURA DEL DIPLOMADO... 4 Nivel I:... 4 Fundamentals of the Java Programming Language Java SE 7... 4 Introducing the Java Technology...

More information

Objectives. Oracle SQL and SQL*PLus. Database Objects. What is a Sequence?

Objectives. Oracle SQL and SQL*PLus. Database Objects. What is a Sequence? Oracle SQL and SQL*PLus Lesson 12: Other Database Objects Objectives After completing this lesson, you should be able to do the following: Describe some database objects and their uses Create, maintain,

More information

Optimizing the Performance of the Oracle BI Applications using Oracle Datawarehousing Features and Oracle DAC 10.1.3.4.1

Optimizing the Performance of the Oracle BI Applications using Oracle Datawarehousing Features and Oracle DAC 10.1.3.4.1 Optimizing the Performance of the Oracle BI Applications using Oracle Datawarehousing Features and Oracle DAC 10.1.3.4.1 Mark Rittman, Director, Rittman Mead Consulting for Collaborate 09, Florida, USA,

More information

SPANISH MOOD SELECTION: Probablemente Subjunctive, Posiblemente Indicative

SPANISH MOOD SELECTION: Probablemente Subjunctive, Posiblemente Indicative SPANISH MOOD SELECTION: Probablemente, Posiblemente Hilary Miller April 26, 2013 Spanish Mood Selection According to Spanish textbooks: = doubt, indicative = reality/certainty Es probable que/es posible

More information

Cambridge IGCSE. www.cie.org.uk

Cambridge IGCSE. www.cie.org.uk Cambridge IGCSE About University of Cambridge International Examinations (CIE) Acerca de la Universidad de Cambridge Exámenes Internacionales. CIE examinations are taken in over 150 different countries

More information

FORMACIÓN E-LEARNING DE MICROSOFT

FORMACIÓN E-LEARNING DE MICROSOFT FORMACIÓN E-LEARNING DE MICROSOFT NANFOR IBÉRICA S.L PARTNER GLOBAL DE E-LEARNING DE MICROSOFT, único en Europa del Sur e Iberoamérica, y uno de los 9 existentes en todo el mundo. NOVEDADES EN LAS CERTIFICACIONES

More information

Keep It Simple - Common, Overlooked Performance Tuning Tips. Paul Jackson Hotsos

Keep It Simple - Common, Overlooked Performance Tuning Tips. Paul Jackson Hotsos Keep It Simple - Common, Overlooked Performance Tuning Tips Paul Jackson Hotsos Who Am I? Senior Consultant at Hotsos Oracle Ace Co-Author of Oracle Applications DBA Field Guide Co-Author of Oracle R12

More information

Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer.

Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Test: Final Exam - Database Programming with SQL Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 8 Lesson 1 1. Which SQL statement below will

More information

Data Masking. Procedure

Data Masking. Procedure Procedure Author: G S Chapman Date: October 2008 Version: 1.1 Location of Document: DOCUMENT HISTORY Version Date Changed By: Remarks 1.1 20/10/2008 G S Chapman This version DOCUMENT DISTRIBUTION Copy

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

DBMS Questions. 3.) For which two constraints are indexes created when the constraint is added?

DBMS Questions. 3.) For which two constraints are indexes created when the constraint is added? DBMS Questions 1.) Which type of file is part of the Oracle database? A.) B.) C.) D.) Control file Password file Parameter files Archived log files 2.) Which statements are use to UNLOCK the user? A.)

More information

Expert Oracle. Database Architecture. Techniques and Solutions. 10gr, and 11g Programming. Oracle Database 9/, Second Edition.

Expert Oracle. Database Architecture. Techniques and Solutions. 10gr, and 11g Programming. Oracle Database 9/, Second Edition. Expert Oracle Database Architecture Oracle Database 9/, Techniques and Solutions 10gr, and 11g Programming Second Edition TECHNiSCHE JNFORMATIONSBIBLIOTHEK UN!VERSITAT BIBLIOTHEK HANNOVER Thomas Kyte Apress

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

Benedictine College Financial Aid

Benedictine College Financial Aid 2015 2016 Institutional Verification Document V4 Dependent Your 2015 2016 Free Application for Federal Student Aid (FAFSA) was selected for review in a process called verification. The law says that before

More information

Porting from Oracle to PostgreSQL

Porting from Oracle to PostgreSQL by Paulo Merson February/2002 Porting from Oracle to If you are starting to use or you will migrate from Oracle database server, I hope this document helps. If you have Java applications and use JDBC,

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

Oracle DBA Course Contents

Oracle DBA Course Contents Oracle DBA Course Contents Overview of Oracle DBA tasks: Oracle as a flexible, complex & robust RDBMS The evolution of hardware and the relation to Oracle Different DBA job roles(vp of DBA, developer DBA,production

More information

Oracle 11g Administration

Oracle 11g Administration Oracle 11g Administration Duración: 40 horas Descripción: En este curso, los alumnos realizarán las tareas administrativas clave en Oracle Database 11g, como la creación y control de bases de datos, administración

More information

Home vol.3 - Bathrooms - Scenes & Shapes

Home vol.3 - Bathrooms - Scenes & Shapes Baños-1 Bathrooms-1 modelos 3D para usuarios Strata 3D models for Strata users Manual de referencia Reference manual Escenas y shapes listos para usar con alto nivel de detalle Scenes & Shapes ready to

More information

Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer.

Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Test: Final Exam - Database Programming with SQL Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 8 Lesson 1 1. You are creating the EMPLOYEES

More information

Introduction to the Oracle DBMS

Introduction to the Oracle DBMS Introduction to the Oracle DBMS Kristian Torp Department of Computer Science Aalborg University www.cs.aau.dk/ torp torp@cs.aau.dk December 2, 2011 daisy.aau.dk Kristian Torp (Aalborg University) Introduction

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved.

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 Cumplimiento de PMG SSI para sector Gobierno en Chile Jaime Briggs MSc CS, CISSP, CCSK Sales Manager Strategic accounts jaime.briggs@oracle.com Agenda Pilares Fundamentales de SSI Desafios de Seguridad

More information

En esta guía se encuentran los cursos que se recomiendan los participantes en la implementación de un SGEn en dependencias del Gobierno Federal.

En esta guía se encuentran los cursos que se recomiendan los participantes en la implementación de un SGEn en dependencias del Gobierno Federal. En esta guía se encuentran los cursos que se recomiendan los participantes en la implementación de un SGEn en dependencias del Gobierno Federal. Las lecciones se agrupan en 5 cursos dirigidos cada participante

More information

Propedéutico de Programación

Propedéutico de Programación Propedéutico de Programación Coordinación de Ciencias Computacionales 4/12 Material preparado por: Dra. Pilar Gómez Gil Chapter 14 Object-Oriented Software Development (continuación) Dale/Weems Constructor

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

Oracle For Beginners Page : 1

Oracle For Beginners Page : 1 Oracle For Beginners Page : 1 Chapter 10 VIEWS What is a view? Why we need a view? Creating and using a view Simplifying query using view Presenting data in different forms Isolating application from changes

More information

Quest, Inc. Title VI Complaint Procedures and Forms

Quest, Inc. Title VI Complaint Procedures and Forms Quest, Inc. Title VI Complaint Procedures and Forms 1.0 Title VI Procedures and Compliance FTA Circular 4702.1B, Chapter III, Paragraph 6: All recipients shall develop procedures for investigating and

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

Apéndice C: Esquemas de la base de datos

Apéndice C: Esquemas de la base de datos Apéndice C: Esquemas de la base de datos 141 Apéndice C Esquemas de las bases de datos de T E R R A Con el objetivo de hacer persistentes los objetos generados por T E R R A se escogió un sistema manejador

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

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

An Inventory of My Traits

An Inventory of My Traits Module The Basics and Beyond: An Introduction to Heredity An Inventory of My Traits Abstract Students take an inventory of their own easilyobservable genetic traits. Working in small groups, they observe

More information

SUBCHAPTER A. AUTOMOBILE INSURANCE DIVISION 3. MISCELLANEOUS INTERPRETATIONS 28 TAC 5.204

SUBCHAPTER A. AUTOMOBILE INSURANCE DIVISION 3. MISCELLANEOUS INTERPRETATIONS 28 TAC 5.204 Part I. Texas Department of Insurance Page 1 of 11 SUBCHAPTER A. AUTOMOBILE INSURANCE DIVISION 3. MISCELLANEOUS INTERPRETATIONS 28 TAC 5.204 1. INTRODUCTION. The Texas Department of Insurance proposes

More information

ORACLE DATABASE SECURITY. Keywords: data security, password administration, Oracle HTTP Server, OracleAS, access control.

ORACLE DATABASE SECURITY. Keywords: data security, password administration, Oracle HTTP Server, OracleAS, access control. ORACLE DATABASE SECURITY Cristina-Maria Titrade 1 Abstract This paper presents some security issues, namely security database system level, data level security, user-level security, user management, resource

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

Chapter 14. Outline. Database Support for Decision Making. Data and Database Administration

Chapter 14. Outline. Database Support for Decision Making. Data and Database Administration Chapter 14 Data and Database Administration McGraw-Hill/Irwin Copyright 2007 by The McGraw-Hill Companies, Inc. All rights reserved. Outline Organizational context Tools of database administration Processes

More information

USING SAS WITH ORACLE PRODUCTS FOR DATABASE MANAGEMENT AND REPORTING

USING SAS WITH ORACLE PRODUCTS FOR DATABASE MANAGEMENT AND REPORTING USING SAS WITH ORACLE PRODUCTS FOR DATABASE MANAGEMENT AND REPORTING Henry W. Buffum, R. O. W. ScIences, Inc. Darryl J. Keith, U.S. Environmental Protection Agency Abstract: Data for a large environmental

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

PATIENT HEALTH QUESTIONNAIRE PHQ-9 FOR DEPRESSION

PATIENT HEALTH QUESTIONNAIRE PHQ-9 FOR DEPRESSION PATIENT HEALTH QUESTIONNAIRE PHQ- FOR DEPRESSION USING PHQ- DIAGNOSIS AND SCORE FOR INITIAL TREATMENT SELECTION A depression diagnosis that warrants treatment or treatment change, needs at least one of

More information

New SQL Features in Firebird 3

New SQL Features in Firebird 3 New SQL Features in Firebird 3 Sponsors! Whats new in Firebird 3 Common SQL Full syntax of MERGE statement (per SQL 2008) MERGE... RETURNING Window (analytical) functions SUBSTRING with regular expressions

More information

Entry to Year 7 - Information for Parents

Entry to Year 7 - Information for Parents Entry to Year 7 - Information for Parents Key Names: Mrs Elizabeth Batchelor - Head of the Secondary School Mr Darren Roth - Head of Key Stage Three Miss Karen Britcliffe - Head of Pastoral Care Groupings

More information

Introduction to SQL and database objects

Introduction to SQL and database objects Introduction to SQL and database objects IBM Information Management Cloud Computing Center of Competence IBM Canada Labs 1 2011 IBM Corporation Agenda Overview Database objects SQL introduction The SELECT

More information

SUBCHAPTER A. AUTOMOBILE INSURANCE DIVISION 3. MISCELLANEOUS INTERPRETATIONS 28 TAC 5.204

SUBCHAPTER A. AUTOMOBILE INSURANCE DIVISION 3. MISCELLANEOUS INTERPRETATIONS 28 TAC 5.204 Part I. Texas Department of Insurance Page 1 of 10 SUBCHAPTER A. AUTOMOBILE INSURANCE DIVISION 3. MISCELLANEOUS INTERPRETATIONS 28 TAC 5.204 1. INTRODUCTION. The commissioner of insurance adopts amendments

More information

Working with DB2 UDB objects

Working with DB2 UDB objects Working with DB2 UDB objects http://www7b.software.ibm.com/dmdd/ Table of Contents If you're viewing this document online, you can click any of the topics below to link directly to that section. 1. Introduction...

More information

Financial Data Access with SQL, Excel & VBA

Financial Data Access with SQL, Excel & VBA Computational Finance and Risk Management Financial Data Access with SQL, Excel & VBA Guy Yollin Instructor, Applied Mathematics University of Washington Guy Yollin (Copyright 2012) Data Access with SQL,

More information

AP SPANISH LITERATURE 2009 SCORING GUIDELINES

AP SPANISH LITERATURE 2009 SCORING GUIDELINES AP SPANISH LITERATURE 2009 SCORING GUIDELINES Question 1: Poetry Analysis 9 Demonstrates Superiority A very well-developed essay that clearly and thoroughly analyzes the vision of la higuera presented

More information

Oracle. Brief Course Content This course can be done in modular form as per the detail below. ORA-1 Oracle Database 10g: SQL 4 Weeks 4000/-

Oracle. Brief Course Content This course can be done in modular form as per the detail below. ORA-1 Oracle Database 10g: SQL 4 Weeks 4000/- Oracle Objective: Oracle has many advantages and features that makes it popular and thereby makes it as the world's largest enterprise software company. Oracle is used for almost all large application

More information

ENVIRONMENT: Collaborative Learning Environment

ENVIRONMENT: Collaborative Learning Environment Guía Integrada de Actividades Contexto de la estrategia de aprendizaje a desarrollar en el curso: The activity focuses on the Task Based Language Learning (TBLL). The task is used by the student in order

More information

2013 ASIS PUERTO RICO CHAPTER Inc. PRESENTS: 2013 SECURITY PROGRAM DESIGN 2-Day Program

2013 ASIS PUERTO RICO CHAPTER Inc. PRESENTS: 2013 SECURITY PROGRAM DESIGN 2-Day Program 2013 ASIS PUERTO RICO CHAPTER Inc. PRESENTS: 2013 SECURITY PROGRAM DESIGN 2-Day Program WHERE: CENTRO EUROPA-Banco Popular de PR TRAINING CENTER (Frente Centro Bellas Artes, Ave Ponce De León, Santurce

More information

Automating MT post-editing using regular expressions

Automating MT post-editing using regular expressions Automating MT post-editing using regular expressions by Rafael Guzmán This article was originally published in Multilingual #90, Volume 18, Issue 6, pp. 49-52 (September 2007) At the beginning of this

More information

Note: The where clause of the SUBSET statement is sent "as is" to Oracle, so it must contain correct Oracle syntax.

Note: The where clause of the SUBSET statement is sent as is to Oracle, so it must contain correct Oracle syntax. Optimizing Data Extraction from Oracle Tables Caroline Bahler, Meridian Software, Inc. Abstract The SAS/ACCESS product for Oracle offers a fast and easy interface for reading Oracle tables - access views

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

Removing Language Barriers: Reaching Your Spanish Speaking Audience

Removing Language Barriers: Reaching Your Spanish Speaking Audience Removing Language Barriers: Reaching Your Spanish Speaking Audience Communications Tune Up Webinar Series MAXIMUS Center for Health Literacy Translation Services Group Mercedes Blanco Victoria Williams

More information

CONCEPTS OF INDUSTRIAL AUTOMATION. By: Juan Carlos Mena Adolfo Ortiz Rosas Juan Camilo Acosta

CONCEPTS OF INDUSTRIAL AUTOMATION. By: Juan Carlos Mena Adolfo Ortiz Rosas Juan Camilo Acosta CONCEPTS OF By: Juan Carlos Mena Adolfo Ortiz Rosas Juan Camilo Acosta What is industrial automation? Introduction Implementation of normalized technologies for optimization of industrial process Where

More information

Oracle Migration Workbench

Oracle Migration Workbench Oracle Migration Workbench Reference Guide for SQL Server and Sybase Adaptive Server Migrations Release 9.2.0 for Microsoft Windows 98/2000/NT and Microsoft Windows XP September 2002 Part Number: B10254-01

More information

A. Before you read the text, answer the following question: What should a family do before starting to look for a new home?

A. Before you read the text, answer the following question: What should a family do before starting to look for a new home? UNIT 1: A PLAN FOR BUYING English for Real Estate Materials A. Before you read the text, answer the following question: What should a family do before starting to look for a new home? Read the following

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

EE 1130 Freshman Eng. Design for Electrical and Computer Eng.

EE 1130 Freshman Eng. Design for Electrical and Computer Eng. EE 1130 Freshman Eng. Design for Electrical and Computer Eng. Signal Processing Module (DSP). Module Project. Class 5 C2. Use knowledge, methods, processes and tools to create a design. I1. Identify and

More information