--- Vincent Hamel, hamv

Size: px
Start display at page:

Download "--- Vincent Hamel, hamv2701 14 162 988"

Transcription

1 --- Vincent Hamel, hamv drop table Aeroport cascade constraints; create table Aeroport ( codeaeroport varchar(20), ville varchar(20), etat varchar(20), nom varchar(20), constraint idaeroport primary key (codeaeroport), constraint idnom unique (nom) ); drop table Vol cascade constraints; create table Vol ( novol varchar(20), TypeDeVol varchar(20) check (TypeDeVol in ( régulier, nolisé )), constraint idnovol primary key (novol) ); drop table Classe cascade constraints; create table Classe( noclasse smallint not null, description varchar(20), constraint idnoclasse primary key (noclasse) ); drop table Avion cascade constraints; create table Avion ( noavion smallint not null, nomodele varchar(20), dateachat date, --- pas de time en oracle constraint idnoavion primary key (noavion) );

2 drop table ClasseVol cascade constraints; create table ClasseVol ( noclasse smallint not null, novol varchar(20), prix numeric(9,2) not null, constraint idclassevol primary key (noclasse,novol), constraint prixnonneg check (prix>0 or prix=0), constraint novol_fk_vol foreign key (novol) references Vol, constraint noclasse_fk_noclasse foreign key (noclasse) references Classe ); drop table SegmentsDeVol cascade constraints; create table SegmentsDeVol ( novol varchar(20), nosegment integer not null, codeaeroportdepart varchar(20), codeaeroportarrivee varchar(20), dateheureprevuedepart timestamp, --- pas de time en oracle dateheureprevuearrivee timestamp, --- pas de time en oracle constraint idsegmentsdevol primary key (novol,nosegment), constraint novol_fk_vol2 foreign key (novol) references Vol, constraint codeaerodepart_fk_aeroport foreign key (codeaeroportdepart) references Aeroport, constraint codeaeroarrivee_fk_aeroport foreign key (codeaeroportarrivee) references Aeroport ); --constraint Depart_Avant_Arrivee check (dateheureprevuedepart > dateheureprevuearrivee) syntaxe? drop table AvionVol cascade constraints; create table AvionVol ( no_vol varchar(20), noavion smallint not null, constraint idavionvol primary key (no_vol,noavion), constraint novol_fk_vol3 foreign key (no_vol) references Vol, constraint noavion_fk_avion foreign key (noavion) references Avion );

3 parti 3.1 insérer les valeur dans les tables insert into Aeroport (codeaeroport, ville, etat, nom) values ( YUL, Montreal, QC, Trudeau ); insert into Aeroport (codeaeroport, ville, etat, nom) values ( YYZ, Toronto, ON, Pearson ); insert into Aeroport (codeaeroport, ville, etat, nom) values ( CDG, Paris, FR, Charles-de-Gaulle ); insert into Avion (noavion, nomodele, dateachat) values (1, Boeing747,date ); insert into Avion (noavion, nomodele, dateachat) values (2, Airbus A380,date ); insert into Avion (noavion, nomodele, dateachat) values (3, Airbus A340, date ); insert into Vol (novol, typedevol) values ( AC2001, régulier ); insert into Vol (novol, typedevol) values ( AC2002, nolisé ); insert into SegmentsDeVol (novol,nosegment,codeaeroportdepart,codeaeroportarrivee,dateheureprevuedepart,dateheurepr evuearrivee) values ( AC2001,1, YUL, YYZ,timestamp :00:00,timestamp :00:00 ); insert into SegmentsDeVol (novol,nosegment,codeaeroportdepart,codeaeroportarrivee,dateheureprevuedepart,dateheurepr evuearrivee) values ( AC2001,2, YYZ, CDG,timestamp :00:00,timestamp :00:00 ); insert into Classe (noclasse,description) values (1, affaires ); insert into Classe (noclasse,description) values (2, économique ); insert into classevol (noclasse,novol,prix) values (1, AC2001, ); insert into classevol (noclasse,novol,prix) values (2, AC2001,300.03); insert into avionvol (no_vol,noavion) values ( AC2001,1); insert into avionvol (no_vol,noavion) values ( AC2002,2); --- Parti 3.2 change la province QC pour QUEBEC dans tous les aéroports update Aeroport set etat= Quebec where etat= QC ; --- Parti 3.3 double le prix des vols en classe Affaires update ClasseVol set prix=prix2 where noclasse=1;

4 --- Parti 3.4 Supprime les avions contenant Airbus A340 dans leur modele Delete from Avion where nomodele= Airbus A340 ; SQLPlus: Release Production on Mon Sep 29 11:21: Copyright (c) 1982, 2010, Oracle. All rights reserved. Connected to: Oracle Database 10g Enterprise Edition Release Production With the Partitioning, OLAP and Data Mining options début de test-tp1.sql PL/SQL procedure successfully completed. drop table Aeroport cascade constraints drop table Vol cascade constraints drop table Classe cascade constraints

5 drop table Avion cascade constraints drop table ClasseVol cascade constraints drop table SegmentsDeVol cascade constraints drop table AvionVol cascade constraints

6 1 row updated.

7 1 row updated. 1 row deleted. Disconnected from Oracle Database 10g Enterprise Edition Release Production With the Partitioning, OLAP and Data Mining options

--Nom: Laurent Senécal-Léonard 14 143 483

--Nom: Laurent Senécal-Léonard 14 143 483 --Nom: Laurent Senécal-Léonard 14 143 483 --Création de la table aéroport et de ses attributs drop table Aeroport cascade constraints; create table Aeroport ( codeaeroport varchar2(6) not null, ville varchar2(20)

More information

constraint PKnbrVol primary key (No_vol) ); DROP TABLE segmentdevol CASCADE CONSTRAINTS; CREATE TABLE segmentdevol( numeric(9) NOT NULL,

constraint PKnbrVol primary key (No_vol) ); DROP TABLE segmentdevol CASCADE CONSTRAINTS; CREATE TABLE segmentdevol( numeric(9) NOT NULL, -------------------------------------------------- -- c est une base de doonnees qui permet de gerer-- -- les vols d une compagnie aerienne-------------- --Victor Kimenyi, 13042806------------------------

More information

Modifier le texte d'un élément d'un feuillet, en le spécifiant par son numéro d'index:

Modifier le texte d'un élément d'un feuillet, en le spécifiant par son numéro d'index: Bezier Curve Une courbe de "Bézier" (fondé sur "drawing object"). select polygon 1 of page 1 of layout "Feuillet 1" of document 1 set class of selection to Bezier curve select Bezier curve 1 of page 1

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

!"# $ %& '( ! %& $ ' &)* + ! * $, $ (, ( '! -,) (# 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

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

RAPPORT FINANCIER ANNUEL PORTANT SUR LES COMPTES 2014

RAPPORT FINANCIER ANNUEL PORTANT SUR LES COMPTES 2014 RAPPORT FINANCIER ANNUEL PORTANT SUR LES COMPTES 2014 En application de la loi du Luxembourg du 11 janvier 2008 relative aux obligations de transparence sur les émetteurs de valeurs mobilières. CREDIT

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

Oracle PL/SQL Language. CIS 331: Introduction to Database Systems

Oracle PL/SQL Language. CIS 331: Introduction to Database Systems Oracle PL/SQL Language CIS 331: Introduction to Database Systems Topics: Structure of a PL/SQL program Exceptions 3-valued logic Loops (unconditional, while, for) Cursors Procedures Functions Triggers

More information

Oracle 10g PL/SQL Training

Oracle 10g PL/SQL Training Oracle 10g PL/SQL Training Course Number: ORCL PS01 Length: 3 Day(s) Certification Exam This course will help you prepare for the following exams: 1Z0 042 1Z0 043 Course Overview PL/SQL is Oracle's Procedural

More information

Corrigés des exercices SQL pour MySQL

Corrigés des exercices SQL pour MySQL Corrigés des exercices SQL pour MySQL Christian Soutou Eyrolles 2006 Chapitre 1 Création des tables CREATE TABLE Segment (indip varchar(11), nomsegment varchar(20) NOT NULL, etage TINYINT(1), CONSTRAINT

More information

Programming Database lectures for mathema

Programming Database lectures for mathema Programming Database lectures for mathematics students April 25, 2015 Functions Functions are defined in Postgres with CREATE FUNCTION name(parameter type,...) RETURNS result-type AS $$ function-body $$

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

Programming with SQL

Programming with SQL Unit 43: Programming with SQL Learning Outcomes A candidate following a programme of learning leading to this unit will be able to: Create queries to retrieve information from relational databases using

More information

5.1 Database Schema. 5.1.1 Schema Generation in SQL

5.1 Database Schema. 5.1.1 Schema Generation in SQL 5.1 Database Schema The database schema is the complete model of the structure of the application domain (here: relational schema): relations names of attributes domains of attributes keys additional constraints

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

Oracle Database 12c: Introduction to SQL Ed 1.1

Oracle Database 12c: Introduction to SQL Ed 1.1 Oracle University Contact Us: 1.800.529.0165 Oracle Database 12c: Introduction to SQL Ed 1.1 Duration: 5 Days What you will learn This Oracle Database: Introduction to SQL training helps you write subqueries,

More information

CURRICULUM VITAE. York University, professional diploma in business valuation, 1st in Canada in the corporate finance course (2000-2002)

CURRICULUM VITAE. York University, professional diploma in business valuation, 1st in Canada in the corporate finance course (2000-2002) CURRICULUM VITAE CATHERINE TREMBLAY, B.Com., DPA, CA, CBV, ASA EDUCATION York University, professional diploma in business valuation, 1st in Canada in the corporate finance course (2000-2002) McGill University,

More information

Oracle Database: SQL and PL/SQL Fundamentals

Oracle Database: SQL and PL/SQL Fundamentals Oracle University Contact Us: 1.800.529.0165 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This course is designed to deliver the fundamentals of SQL and PL/SQL along

More information

Unifying the Global Data Space using DDS and SQL

Unifying the Global Data Space using DDS and SQL Unifying the Global Data Space using and SQL OMG RT Embedded Systems Workshop 13 July 2006 Gerardo Pardo-Castellote, Ph.D. CTO [email protected] www.rti.com Fernando Crespo Sanchez [email protected]

More information

Database Management Systems Comparative Study: Performances of Microsoft SQL Server Versus Oracle

Database Management Systems Comparative Study: Performances of Microsoft SQL Server Versus Oracle Database Management Systems Comparative Study: Performances of Microsoft SQL Server Versus Oracle Cătălin Tudose*, Carmen Odubăşteanu** * - ITC Networks, Bucharest, Romania, e-mail: [email protected]

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

CSI 2132 Lab 3. Outline 09/02/2012. More on SQL. Destroying and Altering Relations. Exercise: DROP TABLE ALTER TABLE SELECT

CSI 2132 Lab 3. Outline 09/02/2012. More on SQL. Destroying and Altering Relations. Exercise: DROP TABLE ALTER TABLE SELECT CSI 2132 Lab 3 More on SQL 1 Outline Destroying and Altering Relations DROP TABLE ALTER TABLE SELECT Exercise: Inserting more data into previous tables Single-table queries Multiple-table queries 2 1 Destroying

More information

VIREMENTS BANCAIRES INTERNATIONAUX

VIREMENTS BANCAIRES INTERNATIONAUX Les clients de Markets.com peuvent financer leur compte en effectuant des virements bancaires depuis de nombreuses banques dans le monde. Consultez la liste ci-dessous pour des détails sur les virements

More information

Chapter 5 More SQL: Complex Queries, Triggers, Views, and Schema Modification

Chapter 5 More SQL: Complex Queries, Triggers, Views, and Schema Modification Chapter 5 More SQL: Complex Queries, Triggers, Views, and Schema Modification Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 5 Outline More Complex SQL Retrieval Queries

More information

Oracle Database 10g: Introduction to SQL

Oracle Database 10g: Introduction to SQL Oracle University Contact Us: 1.800.529.0165 Oracle Database 10g: Introduction to SQL Duration: 5 Days What you will learn This course offers students an introduction to Oracle Database 10g database technology.

More information

Privacy and Security Risk Management Framework

Privacy and Security Risk Management Framework Owner: CISO/CIPO Version: 1.0 Release date: 2015-07-16 Next review: 2016-07 Security classification: Public Our Vision Better data. Better decisions. Healthier Canadians. Our Mandate To lead the development

More information

Oracle Database: SQL and PL/SQL Fundamentals NEW

Oracle Database: SQL and PL/SQL Fundamentals NEW Oracle University Contact Us: + 38516306373 Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training delivers the

More information

11520 Alberta CALGARY 6 6. 11161 Nova Scotia / Nouvelle-Écosse HALIFAX 5 5. 13123 Quebec / Québec MONTREAL 26 23. 15736 Ontario OTTAWA 162 160

11520 Alberta CALGARY 6 6. 11161 Nova Scotia / Nouvelle-Écosse HALIFAX 5 5. 13123 Quebec / Québec MONTREAL 26 23. 15736 Ontario OTTAWA 162 160 Table S1 - Service to the Public by Bilingual Office / Point of Service as of March 31st of year Tableau S1 - Service au public par bureau bilingue /point de service en date du 31 mars de l'année Office

More information

Advance DBMS. Structured Query Language (SQL)

Advance DBMS. Structured Query Language (SQL) Structured Query Language (SQL) Introduction Commercial database systems use more user friendly language to specify the queries. SQL is the most influential commercially marketed product language. Other

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

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

TP JSP : déployer chaque TP sous forme d'archive war

TP JSP : déployer chaque TP sous forme d'archive war TP JSP : déployer chaque TP sous forme d'archive war TP1: fichier essai.jsp Bonjour Le Monde JSP Exemple Bonjour Le Monde. Après déploiement regarder dans le répertoire work de l'application

More information

SQL Programming. CS145 Lecture Notes #10. Motivation. Oracle PL/SQL. Basics. Example schema:

SQL Programming. CS145 Lecture Notes #10. Motivation. Oracle PL/SQL. Basics. Example schema: CS145 Lecture Notes #10 SQL Programming Example schema: CREATE TABLE Student (SID INTEGER PRIMARY KEY, name CHAR(30), age INTEGER, GPA FLOAT); CREATE TABLE Take (SID INTEGER, CID CHAR(10), PRIMARY KEY(SID,

More information

VIREMENTS BANCAIRES INTERNATIONAUX

VIREMENTS BANCAIRES INTERNATIONAUX Les clients de Finexo peuvent financer leur compte en effectuant des virements bancaires depuis de nombreuses banques dans le monde. Consultez la liste ci-dessous pour des détails sur les virements bancaires

More information

Product / Produit Description Duration /Days Total / Total

Product / Produit Description Duration /Days Total / Total DELL Budget Proposal / Proposition Budgétaire Solutions Design Centre N o : 200903201602 Centre de Design de Solutions Date: 2009-03-23 Proposition valide pour 30 jours / Proposal valid for 30 days Customer

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

SQL Databases Course. by Applied Technology Research Center. This course provides training for MySQL, Oracle, SQL Server and PostgreSQL databases.

SQL Databases Course. by Applied Technology Research Center. This course provides training for MySQL, Oracle, SQL Server and PostgreSQL databases. SQL Databases Course by Applied Technology Research Center. 23 September 2015 This course provides training for MySQL, Oracle, SQL Server and PostgreSQL databases. Oracle Topics This Oracle Database: SQL

More information

PL/SQL (Cont d) Let s start with the mail_order database, shown here:

PL/SQL (Cont d) Let s start with the mail_order database, shown here: PL/SQL (Cont d) Let s start with the mail_order database, shown here: 1 Table schemas for the Mail Order database: 2 The values inserted into zipcodes table: The values inserted into employees table: 3

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

If you have not multiplexed your online redo logs, then you are only left with incomplete recovery. Your steps are as follows:

If you have not multiplexed your online redo logs, then you are only left with incomplete recovery. Your steps are as follows: How to Recover lost online redo logs? Author A.Kishore If you lose the current online redo log, then you will not be able to recover the information in that online redo log. This is one reason why redo

More information

SQL NULL s, Constraints, Triggers

SQL NULL s, Constraints, Triggers CS145 Lecture Notes #9 SQL NULL s, Constraints, Triggers Example schema: CREATE TABLE Student (SID INTEGER PRIMARY KEY, name CHAR(30), age INTEGER, GPA FLOAT); CREATE TABLE Take (SID INTEGER, CID CHAR(10),

More information

In This Lecture. SQL Data Definition SQL SQL. Notes. Non-Procedural Programming. Database Systems Lecture 5 Natasha Alechina

In This Lecture. SQL Data Definition SQL SQL. Notes. Non-Procedural Programming. Database Systems Lecture 5 Natasha Alechina This Lecture Database Systems Lecture 5 Natasha Alechina The language, the relational model, and E/R diagrams CREATE TABLE Columns Primary Keys Foreign Keys For more information Connolly and Begg chapter

More information

MENDELSSOHN CUSTOMS AND TRANSPORTATION SERVICES MENDELSSOHN SERVICES EN DOUANE ET EN TRANSPORT

MENDELSSOHN CUSTOMS AND TRANSPORTATION SERVICES MENDELSSOHN SERVICES EN DOUANE ET EN TRANSPORT Mendelssohn 276 St-Jacques St. West, Suite 818 Montreal, QC Canada H2Y 2G4 Tel : 514-987-2700 Fax : 514-849-3446 www.mend.com MENDELSSOHN CUSTOMS AND TRANSPORTATION SERVICES MENDELSSOHN SERVICES EN DOUANE

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

PostGIS Integration Tips

PostGIS Integration Tips PostGIS Integration Tips PG Session #7-2015 - Paris Licence GNU FDL 24. septembre 2015 / www.oslandia.com / [email protected] A quoi sert un SIG? «Fleuve, Pont, Ville...» SELECT nom_comm FROM commune

More information

Schema Evolution in SQL-99 and Commercial (Object-)Relational DBMS

Schema Evolution in SQL-99 and Commercial (Object-)Relational DBMS Schema Evolution in SQL-99 and Commercial (Object-)Relational DBMS Can Türker Swiss Federal Institute of Technology (ETH) Zurich Institute of Information Systems, ETH Zentrum CH 8092 Zurich, Switzerland

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

OBJECT ORIENTED EXTENSIONS TO SQL

OBJECT ORIENTED EXTENSIONS TO SQL OBJECT ORIENTED EXTENSIONS TO SQL Thomas B. Gendreau Computer Science Department University Wisconsin La Crosse La Crosse, WI 54601 [email protected] Abstract Object oriented technology is influencing

More information

Thursday, February 7, 2013. DOM via PHP

Thursday, February 7, 2013. DOM via PHP DOM via PHP Plan PHP DOM PHP : Hypertext Preprocessor Langage de script pour création de pages Web dynamiques Un ficher PHP est un ficher HTML avec du code PHP

More information

Travel information. The link to the complete bus map of Nice is http://www.lignesdazur.com/ftp/plans_fr/nicecentresept13%2802%29bd.

Travel information. The link to the complete bus map of Nice is http://www.lignesdazur.com/ftp/plans_fr/nicecentresept13%2802%29bd. International interdisciplinary workshop "Accretion and early differentiation of the terrestrial planets" Saint Paul Hotel (formerly Maison du Séminaire), Nice May 26-, ). Travel information Please note

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

TREATIES AND OTHER INTERNATIONAL ACTS SERIES 12859. Agreement Between the UNITED STATES OF AMERICA and CONGO

TREATIES AND OTHER INTERNATIONAL ACTS SERIES 12859. Agreement Between the UNITED STATES OF AMERICA and CONGO 1 TREATIES AND OTHER INTERNATIONAL ACTS SERIES 12859 EMPLOYMENT Agreement Between the UNITED STATES OF AMERICA and CONGO Effected by Exchange of Notes Dated at Washington April 11 and May 23, 1997 2 NOTE

More information

Chapter 6: Physical Database Design and Performance. Database Development Process. Physical Design Process. Physical Database Design

Chapter 6: Physical Database Design and Performance. Database Development Process. Physical Design Process. Physical Database Design Chapter 6: Physical Database Design and Performance Modern Database Management 6 th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden Robert C. Nickerson ISYS 464 Spring 2003 Topic 23 Database

More information

ISO 3166-1 NEWSLETTER VI-12

ISO 3166-1 NEWSLETTER VI-12 ISO 3166-1 NEWSLETTER VI-12 Date: 2012-02-15 Name change for Hungary and other minor corrections ISO 3166-1 Newsletters are issued by the secretariat of the ISO 3166/MA when changes in the lists of ISO

More information

Below is a table called raw_search_log containing details of search queries. user_id INTEGER ID of the user that made the search.

Below is a table called raw_search_log containing details of search queries. user_id INTEGER ID of the user that made the search. %load_ext sql %sql sqlite:///olap.db OLAP and Cubes Activity 1 Data and Motivation You're given a bunch of data on search queries by users. (We can pretend that these users are Google search users and

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

MANITOBA TRADE AND INVESTMENT CORPORATION ANNUAL REPORT 2012/13 SOCIÉTÉ DU COMMERCE ET DE L'INVESTISSEMENT DU MANITOBA RAPPORT ANNUEL 2012/13

MANITOBA TRADE AND INVESTMENT CORPORATION ANNUAL REPORT 2012/13 SOCIÉTÉ DU COMMERCE ET DE L'INVESTISSEMENT DU MANITOBA RAPPORT ANNUEL 2012/13 MANITOBA TRADE AND INVESTMENT CORPORATION ANNUAL REPORT 2012/13 SOCIÉTÉ DU COMMERCE ET DE L'INVESTISSEMENT DU MANITOBA RAPPORT ANNUEL 2012/13 Board of Directors Conseil d administration Hugh Eliasson Chair

More information

Measuring Firebird Disc I/O

Measuring Firebird Disc I/O Measuring Firebird Disc I/O Paul Reeves IBPhoenix Introduction Disc I/O is one of the main bottlenecks in Firebird. A good disc array can give a massive increase in available IOPS. The question is how

More information

Oracle Database: Introduction to SQL

Oracle Database: Introduction to SQL Oracle University Contact Us: +381 11 2016811 Oracle Database: Introduction to SQL Duration: 5 Days What you will learn Understanding the basic concepts of relational databases ensure refined code by developers.

More information

4 Simple Database Features

4 Simple Database Features 4 Simple Database Features Now we come to the largest use of iseries Navigator for programmers the Databases function. IBM is no longer developing DDS (Data Description Specifications) for database definition,

More information

Guide to SQL Programming: SQL:1999 and Oracle Rdb V7.1

Guide to SQL Programming: SQL:1999 and Oracle Rdb V7.1 Guide to SQL Programming: SQL:1999 and Oracle Rdb V7.1 A feature of Oracle Rdb By Ian Smith Oracle Rdb Relational Technology Group Oracle Corporation 1 Oracle Rdb Journal SQL:1999 and Oracle Rdb V7.1 The

More information

Garden City Public Schools Garden City, New York

Garden City Public Schools Garden City, New York Garden City Public Schools Garden City, New York Course: French 3R/H Overview of Course This third level course will complete Checkpoint B of the state syllabus and culminates in a comprehensive Regents

More information

«Object-Oriented Multi-Methods in Cecil» Craig Chambers (Cours IFT6310, H08)

«Object-Oriented Multi-Methods in Cecil» Craig Chambers (Cours IFT6310, H08) «Object-Oriented Multi-Methods in Cecil» Craig Chambers (Cours IFT6310, H08) Mathieu Lemoine 2008/02/25 Craig Chambers : Professeur à l Université de Washington au département de Computer Science and Engineering,

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

Oracle Database: Introduction to SQL

Oracle Database: Introduction to SQL Oracle University Contact Us: 1.800.529.0165 Oracle Database: Introduction to SQL Duration: 5 Days What you will learn View a newer version of this course This Oracle Database: Introduction to SQL training

More information

Sun Enterprise Optional Power Sequencer Installation Guide

Sun Enterprise Optional Power Sequencer Installation Guide Sun Enterprise Optional Power Sequencer Installation Guide For the Sun Enterprise 6500/5500 System Cabinet and the Sun Enterprise 68-inch Expansion Cabinet Sun Microsystems, Inc. 901 San Antonio Road Palo

More information

K 4 Science References References

K 4 Science References References References K 4 Science References References Alberta Education. Program of Studies Elementary Schools: Science. Edmonton, AB: Alberta Education, 1995. American Association for the Advancement of Science.

More information

Retrieving Data Using the SQL SELECT Statement. Copyright 2006, Oracle. All rights reserved.

Retrieving Data Using the SQL SELECT Statement. Copyright 2006, Oracle. All rights reserved. Retrieving Data Using the SQL SELECT Statement Objectives After completing this lesson, you should be able to do the following: List the capabilities of SQL SELECT statements Execute a basic SELECT statement

More information

Enter a world class network WORLD TRADE CENTER LYON WORLD TRADE CENTER LYON WORLD TRADE CENTER LYON

Enter a world class network WORLD TRADE CENTER LYON WORLD TRADE CENTER LYON WORLD TRADE CENTER LYON Enter a world class network Headquarters : Cité Internationale, 15 Quai Charles de Gaulle - 69006 Lyon - France Tel. 33 (0) 4 72 40 57 52 - Fax 33 (0)4 72 40 57 08 Business Center : Lyon-Saint Exupéry

More information

N 2007-0108 INDICES EURONEXT PARIS EURONEXT PARIS INDEXES

N 2007-0108 INDICES EURONEXT PARIS EURONEXT PARIS INDEXES 39 rue Cambon 75001 PARIS EURONEXT PARIS NOTICES 12 juin / June 12, 2007 N 2007-0108 INDICES EURONEXT PARIS EURONEXT PARIS INDEXES A compter du 18 juin 2007, les modifications suivantes seront apportées

More information

Oracle 12c New Features For Developers

Oracle 12c New Features For Developers Oracle 12c New Features For Developers Presented by: John Jay King Download this paper from: 1 Session Objectives Learn new Oracle 12c features that are geared to developers Know how existing database

More information

Transactional Updates to Enterprise GIS data sets. Presented by: Kelly Ratchinsky PBC Countywide GIS Coordinator

Transactional Updates to Enterprise GIS data sets. Presented by: Kelly Ratchinsky PBC Countywide GIS Coordinator Transactional Updates to Enterprise GIS data sets Presented by: Kelly Ratchinsky PBC Countywide GIS Coordinator The Enterprise Environment Countywide GIS Centralized GIS Data Repository Departmental GIS

More information

TIM 50 - Business Information Systems

TIM 50 - Business Information Systems TIM 50 - Business Information Systems Lecture 15 UC Santa Cruz March 1, 2015 The Database Approach to Data Management Database: Collection of related files containing records on people, places, or things.

More information

Copyright 2013 wolfssl Inc. All rights reserved. 2

Copyright 2013 wolfssl Inc. All rights reserved. 2 - - Copyright 2013 wolfssl Inc. All rights reserved. 2 Copyright 2013 wolfssl Inc. All rights reserved. 2 Copyright 2013 wolfssl Inc. All rights reserved. 3 Copyright 2013 wolfssl Inc. All rights reserved.

More information

MAURICE S PUBLISHED WORKS. (not a definitive list) (*indicates written with others ; **indicates adaptation of a speech)

MAURICE S PUBLISHED WORKS. (not a definitive list) (*indicates written with others ; **indicates adaptation of a speech) MAURICE S PUBLISHED WORKS (not a definitive list) (*indicates written with others ; **indicates adaptation of a speech) 1. La Pensée haïtienne (The Haitian Way of Thinking), reprint of an article that

More information

Sun Management Center Change Manager 1.0.1 Release Notes

Sun Management Center Change Manager 1.0.1 Release Notes Sun Management Center Change Manager 1.0.1 Release Notes Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. Part No: 817 0891 10 May 2003 Copyright 2003 Sun Microsystems, Inc. 4150

More information

Oracle 11g PL/SQL training

Oracle 11g PL/SQL training Oracle 11g PL/SQL training Course Highlights This course introduces students to PL/SQL and helps them understand the benefits of this powerful programming language. Students learn to create PL/SQL blocks

More information

www.enac.fr www.enac.fr

www.enac.fr www.enac.fr ICAO LPR Workshop Paris 8-10 December 2010 Michael O Donoghue John Kennedy 9835_2010 Foreward References throughout the document are to language proficiency requirements in general regardless of the specific

More information

Note concernant votre accord de souscription au service «Trusted Certificate Service» (TCS)

Note concernant votre accord de souscription au service «Trusted Certificate Service» (TCS) Note concernant votre accord de souscription au service «Trusted Certificate Service» (TCS) Veuillez vérifier les éléments suivants avant de nous soumettre votre accord : 1. Vous avez bien lu et paraphé

More information

Once the schema has been designed, it can be implemented in the RDBMS.

Once the schema has been designed, it can be implemented in the RDBMS. 2. Creating a database Designing the database schema... 1 Representing Classes, Attributes and Objects... 2 Data types... 5 Additional constraints... 6 Choosing the right fields... 7 Implementing a table

More information

NOTES POUR L ALLOCUTION DE M

NOTES POUR L ALLOCUTION DE M NOTES POUR L ALLOCUTION DE M. RÉJEAN ROBITAILLE, PRÉSIDENT ET CHEF DE LA DIRECTION, À LA CONFÉRENCE DES SERVICES FINANCIERS CANADIENS LE 31 MARS 2009, À 11H AU CENTRE MONT-ROYAL, À MONTRÉAL Mise en garde

More information

Solaris 10 Documentation README

Solaris 10 Documentation README Solaris 10 Documentation README Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. Part No: 817 0550 10 January 2005 Copyright 2005 Sun Microsystems, Inc. 4150 Network Circle, Santa

More information

Systèmes d'information et Management

Systèmes d'information et Management Systèmes d'information et Management Volume 13 Issue 3 Article 5 2008 Comprendre les pratiques des acteurs de l'intelligence économique : une étude des microactivités de représentation de l'environnement

More information

Hubert de LA BRUSLERIE

Hubert de LA BRUSLERIE Hubert de LA BRUSLERIE French citizenship University Paris Dauphine DRM Finance UMR CNRS 7088 Place du Marechal de Lattre 75775 Paris Cedex 16 (France) (33) 1 44 05 42 57 [email protected] ACADEMIC POSITION

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

ORACLE 9I / 10G / 11G / PL/SQL COURSE CONTENT

ORACLE 9I / 10G / 11G / PL/SQL COURSE CONTENT ORACLE 9I / 10G / 11G / PL/SQL COURSE CONTENT INTRODUCTION: Course Objectives I-2 About PL/SQL I-3 PL/SQL Environment I-4 Benefits of PL/SQL I-5 Benefits of Subprograms I-10 Invoking Stored Procedures

More information

Enterprise Informa/on Modeling: An Integrated Way to Track and Measure Asset Performance

Enterprise Informa/on Modeling: An Integrated Way to Track and Measure Asset Performance Enterprise Informa/on Modeling: An Integrated Way to Track and Measure Asset Performance This session will provide a0endees with insight on how to track and measure the performance of their assets from

More information