--Nom: Laurent Senécal-Léonard

Size: px
Start display at page:

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

Transcription

1 --Nom: Laurent Senécal-Léonard 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) not null, etat varchar2(20) not null, nom varchar2(20) not null, constraint PKcodeAeroport primary key (codeaeroport) ); -- Constrainte d intégrité de type clé primaire pour le code de l aéroport, --car chaque aéroport possède un code unique à lui. En d autres mots son code ne --peut pas être le même dans un autre aéroport --Création de la table Vol et ses attributs drop table Vol cascade constraints; create table Vol ( novol varchar2(10) not null, typedevol varchar2(10) not null, constraint PKnoVol primary key (novol) ); --Constrainte d intégrité de type clé primaire pour le numéro de vol, -- car chaque vols partant d un aéroport à un numero propre à lui --Création de la table SegmentDeVol et ses attributs drop table SegmentDeVol cascade constraints; create table SegmentDeVol ( novol varchar2(10) not null, numsegment varchar2(10) not null, codeaeroportdepart varchar2(6) not null, codeaeroportarrivee varchar2(6) not null, dateheureprevuedepart timestamp, dateheureprevuearrivee timestamp, constraint FKSegmentDeVolNoVol foreign key (novol) references Vol, --Foreign key --qui permet de référer le numero de vol de la table SegmentDeVol à la l attribut novol de la table Vol constraint FKcodeAeroportDepart foreign key(codeaeroportdepart) references Aeroport, constraint FKcodeAeroportArrivee foreign key(codeaeroportarrivee) references Aeroport ); --Foreign key qui permet de référer le code de l aéroport de la table SegmentDeVol à la l attribut --codeaeroport de la table Aeroport --Création de la table Classe et ses attributs drop table Classe cascade constraints; create table Classe (

2 noclasse varchar2(14) not null, description varchar2(14) not null, constraint PKnoClasse primary key (noclasse) ); --Clé primaire pour le numero de clase --Création de la table ClasseVol et ses attributs drop table ClasseVol cascade constraints; create table ClasseVol ( noclasse varchar2(14) not null, novol varchar2(10) not null, prix number(10,2), constraint UclasseVol unique (noclasse, novol), --Clé unique pour le numéro de classe et le numéro de vol constraint FKClasseVolnoClasse foreign key (noclasse) references Classe, -- Foreign key de l attribut noclasse de la table ClasseVol vers l attribut noclasse de la table Classe constraint FKClasseVolNoVol foreign key (novol) references Vol --Foreign key de l attribut novol de la table ClasseVol vers l attribut novol de la table Vol ); --Création de la table Avion et ses attributs drop table Avion cascade constraints; create table Avion ( noavion number(5) not null, nomodele varchar2(15) not null, dateachat date not null, constraint PKnoAvion primary key (noavion) -- Clé primaire du numéro avion ); --Création de la table AvionVol et ses attributs drop table AvionVol cascade constraints; create table AvionVol ( novol varchar2(10) not null, noavion number(5) not null, constraint UavionVol unique (novol, noavion), --Clé unique de novol et noavion constraint FKAvionVolnoVol foreign key (novol) references vol, --Foreign key de novol vers sa table de référence(vo l) constraint FKAvionVolnoAvion foreign key (noavion) references Avion --Foreign key de noavion vers sa table de réfé rence(avion) );

3 insert into aeroport(codeaeroport, Ville, Etat, nom) values ( YUL, Montréal, 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, Boeing 747, 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é ); ureprevuearrivee) values ( AC2001,1, YUL, YYZ, timestamp :00:00, timestamp :00:00 ); ureprevuearrivee) 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, 1010,02 ); insert into classevol (noclasse, novol, prix) values (2, AC2001, 300,02 ); insert into avionvol (novol, noavion) values ( AC2001, 1 ); insert into avionvol (novol, noavion) values ( AC2002, 2 ); update Aeroport set etat = QUEBEC where etat= QC ; update classevol set prix=prix2 where noclasse=1; Delete from Avion where nomodele like %A340% ; SQLPlus: Release Production on Mon Sep 29 11:20: 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.

4 drop table Aeroport cascade constraints ); -- Constrainte d intégrité de type clé primaire pour le code de l aéroport, ERROR at line 7: ); --Constrainte d intégrité de type clé primaire pour le numéro de vol, ERROR at line 5: constraint FKcodeAeroportArrivee foreign key(codeaeroportarrivee) references Aeroport ERROR at line 12: ); --Clé primaire pour le numero de clase ERROR at line 6: constraint FKClasseVolnoClasse foreign key (noclasse) references Classe, ERROR at line 6: drop table Avion cascade constraints Table created.

5 drop table AvionVol cascade constraints constraint FKAvionVolnoVol foreign key (novol) references vol, --Foreign key de novol vers sa table de référence(vo l) ERROR at line 5: insert into aeroport(codeaeroport, Ville, Etat, nom) values ( YUL, Montréal, 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 ) 1 row created. 1 row created. 1 row created. insert into Vol(noVol,typeDeVol) values ( AC2001, Régulier )

6 insert into Vol(noVol,typeDeVol) values ( AC2002, Nolisé ) ureprevuearrivee) values ( AC2001,1, YUL, YYZ, timestamp :00:00, timestamp :00:00 ) ureprevuearrivee) 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, 1010,02 ) insert into classevol (noclasse, novol, prix) values (2, AC2001, 300,02 )

7 insert into avionvol (novol, noavion) values ( AC2001, 1 ) insert into avionvol (novol, noavion) values ( AC2002, 2 ) update Aeroport set etat = QUEBEC where etat= QC update classevol set prix=prix2 where noclasse=1 1 row deleted. Disconnected from Oracle Database 10g Enterprise Edition Release Production With the Partitioning, OLAP and Data Mining options

--- Vincent Hamel, hamv2701 14 162 988

--- Vincent Hamel, hamv2701 14 162 988 --- Vincent Hamel, hamv2701 14 162 988 ------------------------------------------------- drop table Aeroport cascade constraints; create table Aeroport ( codeaeroport varchar(20), ville varchar(20), etat

More information

-- ROSE-MARIE BRISSON MATRICULE: 14033798 -- MARIE-?VE BERTHIAUME MATRICULE: 14151972 DROP TABLE VOL CASCADE CONSTRAINT; CREATE TABLE VOL (

-- ROSE-MARIE BRISSON MATRICULE: 14033798 -- MARIE-?VE BERTHIAUME MATRICULE: 14151972 DROP TABLE VOL CASCADE CONSTRAINT; CREATE TABLE VOL ( -- ROSE-MARIE BRISSON MATRICULE: 14033798 -- MARIE-?VE BERTHIAUME MATRICULE: 14151972 DROP TABLE VOL CASCADE CONSTRAINT; CREATE TABLE VOL ( VARCHAR(6), TYPE_DE_VOL VARCHAR(8) NOT NULL CHECK (TYPE_DE_VOL

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

Liste d'adresses URL

Liste d'adresses URL Liste de sites Internet concernés dans l' étude Le 25/02/2014 Information à propos de contrefacon.fr Le site Internet https://www.contrefacon.fr/ permet de vérifier dans une base de donnée de plus d' 1

More information

Relevé des frais annuels de l entente de licence destinée à l enseignement primaire et secondaire

Relevé des frais annuels de l entente de licence destinée à l enseignement primaire et secondaire Relevé des frais annuels de l entente de licence destinée à l enseignement primaire et secondaire AOÛT 2015 As part of the compliance and annual order process, this worksheet must be sent to EMEA_Contract_Admin@novell.com

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

REFERRAL FEES. CBA Code (Newfoundland, Northwest Territories, Nunavut, Prince Edward Island)

REFERRAL FEES. CBA Code (Newfoundland, Northwest Territories, Nunavut, Prince Edward Island) SCHEDULE H REFERRAL FEES CBA Code (Newfoundland, Northwest Territories, Nunavut, Prince Edward Island) CHAPTER XI FEES Commentary Sharing Fees with Non-lawyers 8. Any arrangement whereby the lawyer directly

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

Technical Service Bulletin

Technical Service Bulletin Technical Service Bulletin FILE CONTROL CREATED DATE MODIFIED DATE FOLDER OpenDrive 02/05/2005 662-02-25008 Rev. : A Installation Licence SCO sur PC de remplacement English version follows. Lors du changement

More information

CSS : petits compléments

CSS : petits compléments CSS : petits compléments Université Lille 1 Technologies du Web CSS : les sélecteurs 1 au programme... 1 ::before et ::after 2 compteurs 3 media queries 4 transformations et transitions Université Lille

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

AgroMarketDay. Research Application Summary pp: 371-375. Abstract

AgroMarketDay. Research Application Summary pp: 371-375. Abstract Fourth RUFORUM Biennial Regional Conference 21-25 July 2014, Maputo, Mozambique 371 Research Application Summary pp: 371-375 AgroMarketDay Katusiime, L. 1 & Omiat, I. 1 1 Kampala, Uganda Corresponding

More information

Personnalisez votre intérieur avec les revêtements imprimés ALYOS design

Personnalisez votre intérieur avec les revêtements imprimés ALYOS design Plafond tendu à froid ALYOS technology ALYOS technology vous propose un ensemble de solutions techniques pour vos intérieurs. Spécialiste dans le domaine du plafond tendu, nous avons conçu et développé

More information

Relevé des frais annuels de l entente de licence destinée à l enseignement primaire et secondaire MAI 2016

Relevé des frais annuels de l entente de licence destinée à l enseignement primaire et secondaire MAI 2016 Relevé des frais annuels de l entente de licence destinée à l enseignement primaire et secondaire MAI 2016 Les Informations de Programme scolaire Relient DIRECTIVES SUR LA SÉLECTION DE PRODUIT ET LE CALCUL

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

William Lyon Mackenzie King fonds. Finance sub-series MG 26 J 11

William Lyon Mackenzie King fonds. Finance sub-series MG 26 J 11 LIBRARY AND ARCHIVES CANADA Canadian Archives and Special Collections Branch BIBLIOTHÈQUE ET ARCHIVES CANADA Direction des archives canadiennes et collections spéciales William Lyon Mackenzie King fonds

More information

The new French regulation on gaming: Anything new in terms of payment?

The new French regulation on gaming: Anything new in terms of payment? [Prénom Nwww.ulys.net The new French regulation on gaming: Anything new in terms of payment? Etienne Wery Attorney at law at Brussels and Paris Bars Senior lecturer at university etienne.wery@ulys.net

More information

Wideband Optical Splitters FOS Series

Wideband Optical Splitters FOS Series Wideband Optical Splitters FOS Series Guide to Installation and Operation M949-9100-103 13 Mar 2014 Miranda Technologies 3499 Douglas-B.-Floreani St-Laurent, Québec, Canada H4S 2C6 Tel. 514-333-1772 Fax.

More information

General Certificate of Education Advanced Level Examination June 2012

General Certificate of Education Advanced Level Examination June 2012 General Certificate of Education Advanced Level Examination June 2012 French Unit 4 Speaking Test Candidate s Material To be conducted by the teacher examiner between 7 March and 15 May 2012 (FRE4T) To

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

The United Nations Convention against Corruption An Overview

The United Nations Convention against Corruption An Overview The United Nations Convention against Corruption An Overview The United Nations Convention against Corruption Adopted by the General Assembly: Resolution 58/4, 31 October 2003 Entry into Force: 14 December

More information

Tanenbaum, Computer Networks (extraits) Adaptation par J.Bétréma. DNS The Domain Name System

Tanenbaum, Computer Networks (extraits) Adaptation par J.Bétréma. DNS The Domain Name System Tanenbaum, Computer Networks (extraits) Adaptation par J.Bétréma DNS The Domain Name System RFC 1034 Network Working Group P. Mockapetris Request for Comments: 1034 ISI Obsoletes: RFCs 882, 883, 973 November

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

TIMISKAMING FIRST NATION

TIMISKAMING FIRST NATION Post-Secondary Financial Assistance Forms TFN EDUCATION 2014-05-01 TIMISKAMING FIRST NATION 0 Education Dept. Application Check List Please enclose the following when applying: Form: Statement of Intent

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

Sun Integrated Lights Out Manager (ILOM) 3.0 Supplement for the Sun Fire X4150, X4250 and X4450 Servers

Sun Integrated Lights Out Manager (ILOM) 3.0 Supplement for the Sun Fire X4150, X4250 and X4450 Servers Sun Integrated Lights Out Manager (ILOM) 3.0 Supplement for the Sun Fire X4150, X4250 and X4450 Servers Sun Microsystems, Inc. www.sun.com Part No. 820-7842-11 November 2009, Revision A Submit comments

More information

Archived Content. Contenu archivé

Archived Content. Contenu archivé ARCHIVED - Archiving Content ARCHIVÉE - Contenu archivé Archived Content Contenu archivé Information identified as archived is provided for reference, research or recordkeeping purposes. It is not subject

More information

Archived Content. Contenu archivé

Archived Content. Contenu archivé ARCHIVED - Archiving Content ARCHIVÉE - Contenu archivé Archived Content Contenu archivé Information identified as archived is provided for reference, research or recordkeeping purposes. It is not subject

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

Sun StorEdge RAID Manager 6.2.21 Release Notes

Sun StorEdge RAID Manager 6.2.21 Release Notes Sun StorEdge RAID Manager 6.2.21 Release Notes formicrosoftwindowsnt Sun Microsystems, Inc. 901 San Antonio Road Palo Alto, CA 94303-4900 USA 650 960-1300 Fax 650 969-9131 Part No. 805-6890-11 November

More information

Audit de sécurité avec Backtrack 5

Audit de sécurité avec Backtrack 5 Audit de sécurité avec Backtrack 5 DUMITRESCU Andrei EL RAOUSTI Habib Université de Versailles Saint-Quentin-En-Yvelines 24-05-2012 UVSQ - Audit de sécurité avec Backtrack 5 DUMITRESCU Andrei EL RAOUSTI

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

FACULTY OF MANAGEMENT MBA PROGRAM

FACULTY OF MANAGEMENT MBA PROGRAM FACULTY OF MANAGEMENT MBA PROGRAM APPLICATION PROCEDURES: Completed files are evaluated on a rolling basis. Although the MBA Admissions office notifies all applicants of any outstanding documents electronically,

More information

OTHER SCIENTIFIC AND TECHNICAL ISSUES THAT MAY BE NECESSARY FOR THE EFFECTIVE IMPLEMENTATION OF THE PROTOCOL

OTHER SCIENTIFIC AND TECHNICAL ISSUES THAT MAY BE NECESSARY FOR THE EFFECTIVE IMPLEMENTATION OF THE PROTOCOL CBD CONVENTION ON BIOLOGICAL DIVERSITY Distr. GENERAL UNEP/CBD/BS/COP-MOP/2/INF/6 18 April 2005 ORIGINAL: ENGLISH/FRENCH CONFERENCE OF THE PARTIES TO THE CONVENTION ON BIOLOGICAL DIVERSITY SERVING AS THE

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

N1 Grid Service Provisioning System 5.0 User s Guide for the Linux Plug-In

N1 Grid Service Provisioning System 5.0 User s Guide for the Linux Plug-In N1 Grid Service Provisioning System 5.0 User s Guide for the Linux Plug-In Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. Part No: 819 0735 December 2004 Copyright 2004 Sun Microsystems,

More information

Sun StorEdge A5000 Installation Guide

Sun StorEdge A5000 Installation Guide Sun StorEdge A5000 Installation Guide for Windows NT Server 4.0 Sun Microsystems, Inc. 901 San Antonio Road Palo Alto, CA 94303-4900 USA 650 960-1300 Fax 650 969-9131 Part No. 805-7273-11 October 1998,

More information

Democratic Republic of the Congo Tourist visa Application

Democratic Republic of the Congo Tourist visa Application Democratic Republic of the Congo Tourist visa Application Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned in time for your travel: Democratic

More information

MONTÉSINOS 2015 NOTICE OF RACE 1. RULES

MONTÉSINOS 2015 NOTICE OF RACE 1. RULES YACHT CLUB DE CANNES FINN International Cannes Week TROPHÉE MONTÉSINOS February 9th 13th 2015 NOTICE OF RACE Organizing Authority: Yacht Club de Cannes 1. 1.1. 1.2. 1.3. RULES The Regatta will be governed

More information

Service Level Agreement in the Data Center

Service Level Agreement in the Data Center Service Level Agreement in the Data Center By Edward Wustenhoff Sun Professional Services Sun BluePrints OnLine - April 2002 http://www.sun.com/blueprints Sun Microsystems, Inc. 4150 Network Circle Santa

More information

Gabon Tourist visa Application for citizens of Canada living in Alberta

Gabon Tourist visa Application for citizens of Canada living in Alberta Gabon Tourist visa Application for citizens of Canada living in Alberta Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned in time for your

More information

L évolution des progiciels métier dans un contexte SOA

L évolution des progiciels métier dans un contexte SOA L évolution des progiciels métier dans un contexte SOA Ashish SHARMA Business Development Manager Oracle Fusion Middleware Agenda Quels scénarios pour conformer

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

Action of organization-0s

Action of organization-0s Action of organization-os // Metadata Name Action of organization-0s Keywords Action of organization, Organizational action, Business process, Internal process, Inter-functional process, Core process,

More information

SUN SEEBEYOND ebam STUDIO RELEASE NOTES. Release 5.1.2

SUN SEEBEYOND ebam STUDIO RELEASE NOTES. Release 5.1.2 SUN SEEBEYOND ebam STUDIO RELEASE NOTES Release 5.1.2 Copyright 2006 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. All rights reserved. Sun Microsystems, Inc. has intellectual

More information

Tool & Asset Manager 2.0. User's guide 2015

Tool & Asset Manager 2.0. User's guide 2015 Tool & Asset Manager 2.0 User's guide 2015 Table of contents Getting Started...4 Installation...5 "Standalone" Edition...6 "Network" Edition...7 Modify the language...8 Barcode scanning...9 Barcode label

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

Gabon Business visa Application for citizens of Canada living in Alberta

Gabon Business visa Application for citizens of Canada living in Alberta Gabon Business visa Application for citizens of Canada living in Alberta Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned in time for your

More information

Service Level Definitions and Interactions

Service Level Definitions and Interactions Service Level Definitions and Interactions By Adrian Cockcroft - Enterprise Engineering Sun BluePrints OnLine - April 1999 http://www.sun.com/blueprints Sun Microsystems, Inc. 901 San Antonio Road Palo

More information

Veritas Storage Foundation 5.0 Software for SPARC

Veritas Storage Foundation 5.0 Software for SPARC Veritas Storage Foundation 5.0 Software for SPARC Release Note Supplement Sun Microsystems, Inc. www.sun.com Part No. 819-7074-10 July 2006 Submit comments about this document at: http://www.sun.com/hwdocs/feedback

More information

Parallel Discrepancy-based Search

Parallel Discrepancy-based Search Parallel Discrepancy-based Search T. Moisan, J. Gaudreault, C.-G. Quimper Université Laval, FORAC research consortium February 21 th 2014 T. Moisan, J. Gaudreault, C.-G. Quimper Parallel Discrepancy-based

More information

State of Maryland Health Insurance Exchange

State of Maryland Health Insurance Exchange Les résumés et les traductions contenus dans le présent avis ont été préparés par Primary Care Coalition mais n'ont pas été révisés ou approuvés par Maryland Health Connection. Notice Date: 03/30/2015

More information

Language Maintenance and Transmission: The Case of Cajun French

Language Maintenance and Transmission: The Case of Cajun French Edith Cowan University Research Online Language as a Social Justice Issue Conference ECU Social Justice Research Group Conferences 2014 Language Maintenance and Transmission: The Case of Cajun French Celine

More information

What about me and you? We can also be objects, and here it gets really easy,

What about me and you? We can also be objects, and here it gets really easy, YOU MEAN I HAVE TO KNOW THIS!? VOL 3 PRONOUNS Object pronouns Object pronouns If subjects do the verb, guess what the objects do? They get the verb done to them! Consider the following sentences: We eat

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

Sun Integrated Lights Out Manager Supplement for the Sun Fire X4450 Server

Sun Integrated Lights Out Manager Supplement for the Sun Fire X4450 Server Sun Integrated Lights Out Manager Supplement for the Sun Fire X4450 Server Sun Microsystems, Inc. www.sun.com Part No. 820-4997-10 September 2008, Revision A Submit comments about this document at: http://www.sun.com/hwdocs/feedback

More information

Solaris 9 9/05 Installation Roadmap

Solaris 9 9/05 Installation Roadmap Solaris 9 9/05 Installation Roadmap This document is a guide to the DVD-ROM, CD-ROMs, and documents involved in installing the Solaris 9 9/05 software. Unless otherwise specified, this document refers

More information

Archived Content. Contenu archivé

Archived Content. Contenu archivé ARCHIVED - Archiving Content ARCHIVÉE - Contenu archivé Archived Content Contenu archivé Information identified as archived is provided for reference, research or recordkeeping purposes. It is not subject

More information

MD. ALI KHAN. and THE MINISTER OF CITIZENSHIP AND IMMIGRATION REASONS FOR ORDER AND ORDER

MD. ALI KHAN. and THE MINISTER OF CITIZENSHIP AND IMMIGRATION REASONS FOR ORDER AND ORDER Federal Court Cour fédérale Date: 20101001 Docket: IMM-1196-10 Citation: 2010 FC 983 St. John s, Newfoundland and Labrador, October 1, 2010 PRESENT: The Honourable Madam Justice Heneghan BETWEEN: MD. ALI

More information

Deadline for submissions, using the attached entry form, is set to February 3 rd, 2014.

Deadline for submissions, using the attached entry form, is set to February 3 rd, 2014. 16 TH DEAUVILLE ASIAN FILM FESTIVAL March 5 th to 9 th, 2014 ELIGIBILITY To be eligible for the 16 th Deauville Asian Film Festival, films must fulfill the following conditions: - be a feature film of

More information

Upgrading the Solaris PC NetLink Software

Upgrading the Solaris PC NetLink Software Upgrading the Solaris PC NetLink Software By Don DeVitt - Enterprise Engineering Sun BluePrints OnLine - January 2000 http://www.sun.com/blueprints Sun Microsystems, Inc. 901 San Antonio Road Palo Alto,

More information

Sun Cluster 2.2 7/00 Data Services Update: Apache Web Server

Sun Cluster 2.2 7/00 Data Services Update: Apache Web Server Sun Cluster 2.2 7/00 Data Services Update: Apache Web Server Sun Microsystems, Inc. 901 San Antonio Road Palo Alto, CA 94303-4900 U.S.A. 650-960-1300 Part No. 806-6121 July 2000, Revision A Copyright 2000

More information

CONSTRUCTION TRAVAUX PUBLICS RESSOURCES NATURELLES MEDIA KIT CANADA S EQUIPMENT MAGAZINE. InfraStructures 2015 Media Kit page 1

CONSTRUCTION TRAVAUX PUBLICS RESSOURCES NATURELLES MEDIA KIT CANADA S EQUIPMENT MAGAZINE. InfraStructures 2015 Media Kit page 1 CONSTRUCTION TRAVAUX PUBLICS RESSOURCES NATURELLES 2015 MEDIA KIT InfraStructures 2015 Media Kit page 1 CANADA S EQUIPMENT MAGAZINE SUMMARY 2015 Advertising Rates (in U.S. dollars) Standard Ad Sizes B/W

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

STAGE YOGA & RANDONNEES à MADERE

STAGE YOGA & RANDONNEES à MADERE STAGE YOGA & RANDONNEES à MADERE Du dimanche 10 au dimanche 17 juillet 2016 Animé par Naomi NAKASHIMA et Sylvain BRUNIER L île aux fleurs, paradis des randonneurs et amoureux de la nature Au cours de ce

More information

Memory Eye SSTIC 2011. Yoann Guillot. Sogeti / ESEC R&D yoann.guillot(at)sogeti.com

Memory Eye SSTIC 2011. Yoann Guillot. Sogeti / ESEC R&D yoann.guillot(at)sogeti.com Memory Eye SSTIC 2011 Yoann Guillot Sogeti / ESEC R&D yoann.guillot(at)sogeti.com Y. Guillot Memory Eye 2/33 Plan 1 2 3 4 Y. Guillot Memory Eye 3/33 Memory Eye Analyse globale d un programme Un outil pour

More information

Sun TM SNMP Management Agent Release Notes, Version 1.6

Sun TM SNMP Management Agent Release Notes, Version 1.6 Sun TM SNMP Management Agent Release Notes, Version 1.6 Sun Microsystems, Inc. www.sun.com Part No. 820-5966-12 December 2008, Revision A Submit comments about this document by clicking the Feedback[+]

More information

Optimizing Solaris Resources Through Load Balancing

Optimizing Solaris Resources Through Load Balancing Optimizing Solaris Resources Through Load Balancing By Tom Bialaski - Enterprise Engineering Sun BluePrints Online - June 1999 http://www.sun.com/blueprints Sun Microsystems, Inc. 901 San Antonio Road

More information

Introduction au BIM. ESEB 38170 Seyssinet-Pariset Economie de la construction email : contact@eseb.fr

Introduction au BIM. ESEB 38170 Seyssinet-Pariset Economie de la construction email : contact@eseb.fr Quel est l objectif? 1 La France n est pas le seul pays impliqué 2 Une démarche obligatoire 3 Une organisation plus efficace 4 Le contexte 5 Risque d erreur INTERVENANTS : - Architecte - Économiste - Contrôleur

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

LAN-Free Backups Using the Sun StorEdge Instant Image 3.0 Software

LAN-Free Backups Using the Sun StorEdge Instant Image 3.0 Software LAN-Free Backups Using the Sun StorEdge Instant Image 3.0 Software Art Licht, Sun Microsystems, Inc. Sun BluePrints OnLine June 2002 http://www.sun.com/blueprints Sun Microsystems, Inc. 4150 Network Circle

More information

The Top the creating of product then Questions. There such, browsers: using features may directly line and can Access experience, and the while

The Top the creating of product then Questions. There such, browsers: using features may directly line and can Access experience, and the while Essays on being a leader. In it an situation, Sale invited for cheap to get will papers the best learning very you mates' the. If helped this an the about bottom but need. Essays on being a leader >>>CLICK

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

SCHOLARSHIP ANSTO FRENCH EMBASSY (SAFE) PROGRAM 2016 APPLICATION FORM

SCHOLARSHIP ANSTO FRENCH EMBASSY (SAFE) PROGRAM 2016 APPLICATION FORM SCHOLARSHIP ANSTO FRENCH EMBASSY (SAFE) PROGRAM 2016 APPLICATION FORM APPLICATION FORM / FORMULAIRE DE CANDIDATURE Applications close 4 November 2015/ Date de clôture de l appel à candidatures 4 e novembre

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

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

Scrubbing Disks Using the Solaris Operating Environment Format Program

Scrubbing Disks Using the Solaris Operating Environment Format Program Scrubbing Disks Using the Solaris Operating Environment Format Program By Rob Snevely - Enterprise Technology Center Sun BluePrints OnLine - June 2000 http://www.sun.com/blueprints Sun Microsystems, Inc.

More information

Sun Management Center 3.5 Update 1b Release Notes

Sun Management Center 3.5 Update 1b Release Notes Sun Management Center 3.5 Update 1b Release Notes Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. Part No: 819 3054 10 June 2005 Copyright 2005 Sun Microsystems, Inc. 4150 Network

More information

CIHR Foundation Webinar November 26, 2013

CIHR Foundation Webinar November 26, 2013 CIHR Foundation Webinar November 26, 2013 CIHR has given applicants who are eligible to the foundation pilot the option of extending their end date on their current open grant. If they decide to extend

More information

How To Understand And Manage Asthma In Children

How To Understand And Manage Asthma In Children ASTHMA Kaitlin Atkinson Family Resource Library Resource List Follow @CHEOfrl Follow @CHEOhospital General Information and Resources for Parents 100 questions & answers about your child's asthma / Plottel,

More information

TP : Système de messagerie - Fichiers properties - PrepareStatement

TP : Système de messagerie - Fichiers properties - PrepareStatement TP : Système de messagerie - Fichiers properties - PrepareStatement exelib.net Une société souhaite mettre en place un système de messagerie entre ses employés. Les travaux de l équipe chargée de l analyse

More information

Archived Content. Contenu archivé

Archived Content. Contenu archivé ARCHIVED - Archiving Content ARCHIVÉE - Contenu archivé Archived Content Contenu archivé Information identified as archived is provided for reference, research or recordkeeping purposes. It is not subject

More information

Level 3 French, 2015

Level 3 French, 2015 91543 915430 3SUPERVISOR S Level 3 French, 2015 91543 Demonstrate understanding of a variety of extended spoken French texts 9.30 a.m. Wednesday 18 November 2015 Credits: Five Achievement Achievement with

More information

AP FRENCH LANGUAGE 2008 SCORING GUIDELINES

AP FRENCH LANGUAGE 2008 SCORING GUIDELINES AP FRENCH LANGUAGE 2008 SCORING GUIDELINES Part A (Essay): Question 31 9 Demonstrates STRONG CONTROL Excellence Ease of expression marked by a good sense of idiomatic French. Clarity of organization. Accuracy

More information

Bases de données réparties: TP1

Bases de données réparties: TP1 Bases de données réparties: TP1 Partie 1: répartition 1) et 2) Création d'un user avec les droits suffisants CREATE USER cuenot IDENTIFIED BY cuenot; GRANT connect, resource, create view, create database

More information

Travaux publics et Services gouvernementaux Canada. Title - Sujet RFSA FOR THE PROVISION OF SOFTWARE. Solicitation No. - N de l'invitation

Travaux publics et Services gouvernementaux Canada. Title - Sujet RFSA FOR THE PROVISION OF SOFTWARE. Solicitation No. - N de l'invitation Public Works and Government Services Canada RETURN BIDS TO: RETOURNER LES SOUMISSIONS À: Bid Receiving - PWGSC / Réception des soumissions - TPSGC 11 Laurier St. / 11, rue Laurier Place du Portage, Phase

More information

Sun Management Center 3.6 Version 5 Add-On Software Release Notes

Sun Management Center 3.6 Version 5 Add-On Software Release Notes Sun Management Center 3.6 Version 5 Add-On Software Release Notes For Sun Fire, Sun Blade, Netra, and Sun Ultra Systems Sun Microsystems, Inc. www.sun.com Part No. 819-7977-10 October 2006, Revision A

More information

Archived Content. Contenu archivé

Archived Content. Contenu archivé ARCHIVED - Archiving Content ARCHIVÉE - Contenu archivé Archived Content Contenu archivé Information identified as archived is provided for reference, research or recordkeeping purposes. It is not subject

More information

TC ID 739. Czech Airlines Training Centre (CATC) Prague, CZ B737-800 2RN3-442. TP9685 Rev 2 JAR FSTD 1A, Amd 2

TC ID 739. Czech Airlines Training Centre (CATC) Prague, CZ B737-800 2RN3-442. TP9685 Rev 2 JAR FSTD 1A, Amd 2 Qualification Renewal Certificate ID 739 Certificat de renouvellement de qualification Operator Location Aircraft Type Serial Number Czech Airlines Training Centre (CA) Prague, CZ B737-800 2RN3-442 Exploitant

More information

Archived Content. Contenu archivé

Archived Content. Contenu archivé ARCHIVED - Archiving Content ARCHIVÉE - Contenu archivé Archived Content Contenu archivé Information identified as archived is provided for reference, research or recordkeeping purposes. It is not subject

More information

Certificate of Incorporation Certificat de constitution

Certificate of Incorporation Certificat de constitution Request ID: 014752622 Province of Ontario Date Report Produced: 2012/10/30 Demande n : Province de ('Ontario Document produit le: Transaction ID: 0491 1 1 718 Ministry of Government Services Time Report

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 / infos@oslandia.com A quoi sert un SIG? «Fleuve, Pont, Ville...» SELECT nom_comm FROM commune

More information

HEALTH CARE DIRECTIVES ACT

HEALTH CARE DIRECTIVES ACT A11 HEALTH CARE DIRECTIVES ACT Advances in medical research and treatments have, in many cases, enabled health care professionals to extend lives. Most of these advancements are welcomed, but some people

More information

Linux A multi-purpose executive support for civil avionics applications?

Linux A multi-purpose executive support for civil avionics applications? August 2004 Serge GOIFFON Pierre GAUFILLET AIRBUS France Linux A multi-purpose executive support for civil avionics applications? Civil avionics software context Main characteristics Required dependability

More information

How To Become A Foreign Language Teacher

How To Become A Foreign Language Teacher Université d Artois U.F.R. de Langues Etrangères MASTER A DISTANCE Master Arts, Lettres et Langues Spécialité «CLE/ CLS en milieu scolaire» Voie Professionnelle ou Voie Recherche University of Artois Faculty

More information

Survey on Conference Services provided by the United Nations Office at Geneva

Survey on Conference Services provided by the United Nations Office at Geneva Survey on Conference Services provided by the United Nations Office at Geneva Trade and Development Board, fifty-eighth session Geneva, 12-23 September 2011 Contents Survey contents Evaluation criteria

More information

Archived Content. Contenu archivé

Archived Content. Contenu archivé ARCHIVED - Archiving Content ARCHIVÉE - Contenu archivé Archived Content Contenu archivé Information identified as archived is provided for reference, research or recordkeeping purposes. It is not subject

More information