CSC503 Exam 2. Assume that the following functional dependencies beyond that of the primary key are valid:

Size: px
Start display at page:

Download "CSC503 Exam 2. Assume that the following functional dependencies beyond that of the primary key are valid:"

Transcription

1 CSC503 Exam 2 Name: Question 1 Assume that you have the following table: (OrderID, OrderDate, DeliveryDate, CustomerID, CustomerName, Customer , CustomerCity, CustomerState, CustomerZip, (ProductID, ProductDepartment, ProductManager, ProductPrice, ProductQuantity)) Assume that the following functional dependencies beyond that of the primary key are valid: ProductID ProductDepartment, ProductManager, ProductPrice ProductDepartment ProductManager CustomerID CustomerName, Customer , CustomerCity, CustomerState, CustomerZip CustomerZip CustomerCity, CustomerState Convert the table into 3NF. Put your answer on the test paper. Convert to 1NF (OrderID, OrderDate, DeliveryDate, CustomerID, CustomerName, Customer , CustomerCity, CustomerState, CustomerZip) (OrderID, ProductID, ProductDepartment, ProductManager, ProductPrice, ProductQuantity) Convert to 2NF (OrderID, OrderDate, DeliveryDate, CustomerID, CustomerName, Customer , CustomerCity, CustomerState, CustomerZip) (OrderID, ProductID, ProductQuantity) (ProductID, ProductDepartment, ProductManager, ProductPrice) Convert to 3NF (OrderID, OrderDate, DeliveryDate, CustomerID) (CustomerID, CustomerName, Customer , CustomerZip) (CustomerZip, CustomerCity, CustomerState) (OrderID, ProductID, ProductQuantity) (ProductID, ProductDepartment, ProductPrice) (ProductDepartment, ProductManager)

2 Question 2 Use the files q2.xml and q2.xsd for this question. Include these files in your zip when you turn in this test. Modify the file q2.xsd in the following ways: All nodes that store s follow the pattern of obey the pattern of 1 or more letters followed by followed by 1 or more letters followed by a period followed by 1 or more letters. All ApplicationDates are in GPA should be between 0.0 and 4.0. All City values are Albany or Troy. A Student could have 1 or 2 Majors. An ApplicationStatus could be yes, no, or pending. The Student s GPA is optional. The AdvisorID of an Advisor within Advisors within Data is a key. The GradSchoolID of a GradSchool within GradSchools within Data is a key. The StudentID of a Student within Students within Data is a key. The GradSchoolID of a StudentApplication within Student is a key. The AdvisorSupervisorID of an Advisor within Advisors within Data is a keyref. The GradSchoolID of a StudentApplication within Student within Students within Data is a keyref. 2

3 <?xml version="1.0" encoding="utf-8"?> <!-- W3C Schema generated by XMLSpy v2015 sp1 ( --> <xs:schema xmlns:xs=" <xs:element name="dob" type="xs:date"/> <xs:element name="gpa" type="gpa"/> <xs:element name="city" type="city"/> <xs:element name="data"> <xs:element ref="advisors"/> <xs:element ref="gradschools"/> <xs:element ref="students"/> <xs:key name="advisorkey"> <xs:selector xpath="advisors/advisor"/> <xs:field xpath="advisorid"/> <xs:key name="schoolkey"> <xs:selector xpath="gradschools/gradschool"/> <xs:field xpath="gradschoolid"/> <xs:key name="studentkey"> <xs:selector xpath="students/student"/> <xs:field xpath="studentid"/> <xs:keyref name="advisorfk" refer="advisorkey"> <xs:selector xpath="advisors/advisor"/> <xs:field xpath="advisorsupervisorid"/> </xs:keyref> <xs:keyref name="schoolfk" refer="schoolkey"> <xs:selector xpath="students/student/studentapplication"/> <xs:field xpath="gradschoolid"/> </xs:keyref> <xs:element name="major" type="xs:string"/> <xs:element name="advisor"> <xs:element ref="advisorid"/> <xs:element ref="advisorname"/> <xs:element ref="advisor "/> <xs:element ref="advisorsupervisorid" minoccurs="0"/> <xs:element name="student"> <xs:element ref="studentid"/> <xs:element ref="advisorid"/> <xs:element ref="studentname"/> <xs:element ref="student "/> <xs:element ref="major" minoccurs="1" maxoccurs="2"/> <xs:element ref="dob"/> <xs:element ref="gpa" minoccurs="0"/> 3

4 <xs:element ref="studentapplication" maxoccurs="unbounded"/> <xs:key name="gradschoolkey"> <xs:selector xpath="studentapplication"/> <xs:field xpath="gradschoolid"/> <xs:element name="advisors"> <xs:element ref="advisor" maxoccurs="unbounded"/> <xs:element name="students"> <xs:element ref="student" maxoccurs="unbounded"/> <xs:element name="advisorid" type="xs:int"/> <xs:element name="studentid" type="xs:int"/> <xs:element name="gradschool"> <xs:element ref="gradschoolid"/> <xs:element ref="schoolname"/> <xs:element ref="city"/> <xs:element ref="contact "/> <xs:element name="schoolname" type="xs:string"/> <xs:element name="advisorname" type="xs:string"/> <xs:element name="gradschools"> <xs:element ref="gradschool" maxoccurs="unbounded"/> <xs:element name="studentname" type="xs:string"/> <xs:element name="advisor " type=" "/> <xs:element name="contact " type=" "/> <xs:element name="gradschoolid" type="xs:int"/> <xs:element name="student " type=" "/> <xs:element name="applicationdate" type="applicationdate"/> <xs:element name="applicationstatus" type="appstatus"/> <xs:element name="studentapplication"> <xs:element ref="gradschoolid"/> <xs:element ref="applicationdate"/> <xs:element ref="applicationstatus"/> 4

5 <xs:element name="advisorsupervisorid" type="xs:int"/> <xs:simpletype name=" "> <xs:restriction base="xs:string"> <xs:pattern <xs:simpletype name="applicationdate"> <xs:restriction base="xs:date"> <xs:mininclusive value=" "/> <xs:maxinclusive value=" "/> <xs:simpletype name="gpa"> <xs:restriction base="xs:decimal"> <xs:mininclusive value="0.0"/> <xs:maxinclusive value="4.0"/> <xs:simpletype name="city"> <xs:restriction base="xs:string"> <xs:enumeration value="troy"/> <xs:enumeration value="albany"/> <xs:simpletype name="appstatus"> <xs:restriction base="xs:string"> <xs:enumeration value="yes"/> <xs:enumeration value="no"/> <xs:enumeration value="pending"/> </xs:schema> 5

6 Question 3 Use the files q2.xml for this question. You will create a file named q3.xslt. Include this file in your zip when you turn in this test. For all Students, the file should output the StudentID, thestudentname, the Student , and the AdvisorName. <?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet version="1.0" xmlns:xsl=" xmlns:fo=" <xsl:template match="/"> <html> <head> <title>student Information</title> </head> <h2 align="center">student Information</h2> <table border="3"> <tbody> <tr> <th>studentid</th> <th>student Name</th> <th>student </th> <th>major</th> </tr> <xsl:for-each select="data/students/student[major='cs']"> <tr> <td><xsl:value-of select="studentid"/></td> <td><xsl:value-of select="studentname"/></td> <td><xsl:value-of select="student "/></td> <td><xsl:value-of select="major"/></td> </tr> </xsl:for-each> </tbody> </table> </html> </xsl:template> </xsl:stylesheet> 6

CSC503 Exam 2. (AnimalID, VisitDate, OwnerID, AnimalName, OwnerName, AnimalDOB, OwnerPhone, Diagnosis, Cost, VetID, VetName)

CSC503 Exam 2. (AnimalID, VisitDate, OwnerID, AnimalName, OwnerName, AnimalDOB, OwnerPhone, Diagnosis, Cost, VetID, VetName) CSC503 Exam 2 Name: Question 1 Assume that you have the following table: (AnimalID, VisitDate, OwnerID, AnimalName, OwnerName, AnimalDOB, OwnerPhone, Diagnosis, Cost, VetID, VetName) Assume that the following

More information

Restricting complextypes that have mixed content

Restricting complextypes that have mixed content Restricting complextypes that have mixed content Roger L. Costello October 2012 complextype with mixed content (no attributes) Here is a complextype with mixed content:

More information

Allegato: AgibilitaRequest_V.1.1.xsd

Allegato: AgibilitaRequest_V.1.1.xsd Allegato: AgibilitaRequest_V.1.1.xsd

More information

Fall, 2005 CIS 550. Database and Information Systems Homework 5 Solutions

Fall, 2005 CIS 550. Database and Information Systems Homework 5 Solutions Fall, 2005 CIS 550 Database and Information Systems Homework 5 Solutions November 15, 2005; Due November 22, 2005 at 1:30 pm For this homework, you should test your answers using Galax., the same XQuery

More information

Document erratum applies to QosDevice:1. List other Erratum s or Documents that this change may apply to or have associated changes with

Document erratum applies to QosDevice:1. List other Erratum s or Documents that this change may apply to or have associated changes with Erratum Number: Document and Version: Cross References: QosDevice:1 Erratum Next sequential erratum number Effective Date: July 14, 2006 Document erratum applies to QosDevice:1 List other Erratum s or

More information

Overview of the EU ETS Reporting Language (XETL)

Overview of the EU ETS Reporting Language (XETL) Overview of the EU ETS Reporting Language (XETL) General The EU ETS Reporting Language is an electronic ing language supporting EU ETS Monitoring, Reporting and Validation (MRV) activities such as submitting

More information

CONVERTING CONCEPTUAL MODEL XUML TO XML SCHEMA

CONVERTING CONCEPTUAL MODEL XUML TO XML SCHEMA CONVERTING CONCEPTUAL MODEL XUML TO XML SCHEMA XUEMIN ZHANG School of Computer and Information Science, Hubei Engineering University, Xiaogan 432000, Hubei, China ABSTRACT As XML has become the standard

More information

/// Rapport. / Testdocumentatie nieuwe versie Register producten en dienstverlening (IPDC)

/// Rapport. / Testdocumentatie nieuwe versie Register producten en dienstverlening (IPDC) /// Rapport / Testdocumentatie nieuwe versie Register producten en dienstverlening (IPDC) / Maart 2017 www.vlaanderen.be/informatievlaanderen Informatie Vlaanderen /// Aanpassingen aan de webservices Dit

More information

QosPolicyHolder:1 Erratum

QosPolicyHolder:1 Erratum Erratum Number: Document and Version: Cross References: Next sequential erratum number Effective Date: July 14, 2006 Document erratum applies to the service document QosPolicyHolder:1 This Erratum has

More information

XML. Document Type Definitions XML Schema. Database Systems and Concepts, CSCI 3030U, UOIT, Course Instructor: Jarek Szlichta

XML. Document Type Definitions XML Schema. Database Systems and Concepts, CSCI 3030U, UOIT, Course Instructor: Jarek Szlichta XML Document Type Definitions XML Schema 1 XML XML stands for extensible Markup Language. XML was designed to describe data. XML has come into common use for the interchange of data over the Internet.

More information

Introducing our First Schema

Introducing our First Schema 1 di 11 21/05/2006 10.24 Published on XML.com http://www.xml.com/pub/a/2000/11/29/schemas/part1.html See this if you're having trouble printing code examples Using W3C XML By Eric van der Vlist October

More information

Public Education Information Management System (PEIMS)

Public Education Information Management System (PEIMS) 2016-2017 Texas Education Data Standards (TEDS) Public Education Information Management System (PEIMS) Appendix 8.G Personal Enrollment Tracking (PET) Guidelines TSDS Unique ID Version October 14, 2016

More information

Markup Languages. Lecture 4. XML Schema

Markup Languages. Lecture 4. XML Schema Markup Languages Lecture 4. XML Schema Introduction to XML Schema XML Schema is an XML-based alternative to DTD. An XML schema describes the structure of an XML document. The XML Schema language is also

More information

Public Education Information Management System (PEIMS)

Public Education Information Management System (PEIMS) 2017-2018 Texas Education Data Standards (TEDS) Public Education Information Management System (PEIMS) Appendix 8.G Person Enrollment Tracking (PET) Guidelines TSDS Unique ID Version September 1, 2017

More information

Messages are securely encrypted using HTTPS. HTTPS is the most commonly used secure method of exchanging data among web browsers.

Messages are securely encrypted using HTTPS. HTTPS is the most commonly used secure method of exchanging data among web browsers. May 6, 2009 9:39 SIF Specifications SIF Implementation Specification The SIF Implementation Specification is based on the World Wide Web Consortium (W3C) endorsed Extensible Markup Language (XML) which

More information

edmr2.0 XML Documentation Last Updated: 5/12/2010

edmr2.0 XML Documentation Last Updated: 5/12/2010 edmr2.0 XML Documentation Last Updated: 5/12/2010 Versions edmr2.0 vs edmr1.0 To differentiate between the old and new edmr versions we have designated the original version as edmr1.0 and the latest version

More information

[MS-TSWP]: Terminal Services Workspace Provisioning Protocol. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-TSWP]: Terminal Services Workspace Provisioning Protocol. Intellectual Property Rights Notice for Open Specifications Documentation [MS-TSWP]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation ( this documentation ) for protocols,

More information

Week 5 Aim: Description. Source Code

Week 5 Aim: Description. Source Code Week 5 Aim: Write an XML file which will display the Book information which includes the following: 1) Title of the book 2) Author Name 3) ISBN number 4) Publisher name 5) Edition 6) Price Write a Document

More information

7.1. Redovna datoteka sa slogovima koji se odnose na kupnje i prodaje valuta na tržištu stranih sredstava plaćanja

7.1. Redovna datoteka sa slogovima koji se odnose na kupnje i prodaje valuta na tržištu stranih sredstava plaćanja 7. XSD datoteke za dostavu podataka 7.1. Redovna datoteka sa slogovima koji se odnose na kupnje i prodaje valuta na tržištu stranih sredstava plaćanja

More information

Schema schema-for-json.xsd

Schema schema-for-json.xsd Schema schema-for-json.xsd schema location: attributeformdefault: elementformdefault: targetnamespace:..\schema-for-json.xsd qualified http://www.w3.org/2015/exi/json Elements Complex types Simple types

More information

Physician Data Center API API Specification. 7/3/2014 Federation of State Medical Boards Kevin Hagen

Physician Data Center API API Specification. 7/3/2014 Federation of State Medical Boards Kevin Hagen 7/3/2014 Federation of State Medical Boards Kevin Hagen Revision Description Date 1 Original Document 2/14/2014 2 Update with Degree search field 7/3/2014 Overview The Physician Data Center (PDC) offers

More information

XML, DTD, and XML Schema. Introduction to Databases CompSci 316 Fall 2014

XML, DTD, and XML Schema. Introduction to Databases CompSci 316 Fall 2014 XML, DTD, and XML Schema Introduction to Databases CompSci 316 Fall 2014 2 Announcements (Tue. Oct. 21) Midterm scores and sample solution posted You may pick up graded exams outside my office Mean: 83.9

More information

Oracle B2B 11g Technical Note. Technical Note: 11g_005 Attachments. Table of Contents

Oracle B2B 11g Technical Note. Technical Note: 11g_005 Attachments. Table of Contents Oracle B2B 11g Technical Note Technical Note: 11g_005 Attachments This technical note lists the attachment capabilities available in Oracle B2B Table of Contents Overview... 2 Setup for Fabric... 2 Setup

More information

Manage Desktop Layout

Manage Desktop Layout You can define the layout of the Finesse desktop on the Desktop Layout tab. Important Requirements, such as processor speed and RAM, for clients that access the Finesse desktop can vary. Desktops that

More information

!" DTDs rely on a mechanism based on the use of. !" It is intended to specify cross references" !" Reference to a figure, chapter, section, etc.!

! DTDs rely on a mechanism based on the use of. ! It is intended to specify cross references ! Reference to a figure, chapter, section, etc.! MULTIMEDIA DOCUMENTS! XML Schema (Part 2)"!" DTDs rely on a mechanism based on the use of attributes (ID et IDREF) to specify links into documents"!" It is intended to specify cross references"!" Reference

More information

VDS Service Broker APIs

VDS Service Broker APIs CHAPTER 2 This chapter describes the HTTPS RESTful APIs for VDS-SB and the XML schema. CDN Management API, page 2-1 BFQDN Management API BFQDN Policy API CDN Adaptation Policy API CDN Selection Policy

More information

XML-Schema Quick Start * Draft

XML-Schema Quick Start * Draft XML-Schema (quick start) XML-Schema Quick Start * Draft 2011-01 XML-Schema (quick start) XML-Schema is a World Wide Web Consortium (W3C) specification for an XML application that is used to validate/constrain

More information

EVALUATION COPY. Contents

EVALUATION COPY. Contents Contents Chapter 1 - Course Introduction... 7 Course Objectives... 8 Course Overview... 10 Using the Workbook... 11 Suggested References... 12 Chapter 2 - Defining New Types Using Schemas... 15 Substitution

More information

XML Schema Element and Attribute Reference

XML Schema Element and Attribute Reference E XML Schema Element and Attribute Reference all This appendix provides a full listing of all elements within the XML Schema Structures Recommendation (found at http://www.w3.org/tr/xmlschema-1/). The

More information

SYNDICATING HIERARCHIES EFFECTIVELY

SYNDICATING HIERARCHIES EFFECTIVELY SDN Contribution SYNDICATING HIERARCHIES EFFECTIVELY Applies to: SAP MDM 5.5 Summary This document introduces hierarchy tables and a method of effectively sending out data stored in hierarchy tables. Created

More information

Positioning Additional Constraints

Positioning Additional Constraints Positioning Additional Constraints Issue XML Schema 1.1 allows additional constraints to be imposed on elements and attributes, above and beyond the constraints specified by their data type. Where should

More information

Introduction Syntax and Usage XML Databases Java Tutorial XML. November 5, 2008 XML

Introduction Syntax and Usage XML Databases Java Tutorial XML. November 5, 2008 XML Introduction Syntax and Usage Databases Java Tutorial November 5, 2008 Introduction Syntax and Usage Databases Java Tutorial Outline 1 Introduction 2 Syntax and Usage Syntax Well Formed and Valid Displaying

More information

Brief guide for XML, XML Schema, XQuery for YAWL data perspective

Brief guide for XML, XML Schema, XQuery for YAWL data perspective Brief guide for XML, XML Schema, XQuery for YAWL data perspective Carmen Bratosin March 16, 2009 1 Data perspective in YAWL YAWL engine files are XML based. Therefore, YAWL uses XML for data perspective

More information

Configuring a WMS Feature Source

Configuring a WMS Feature Source Configuring a WMS Feature Source Overview This document describes how to specify additional configuration options for a MapGuide WMS feature source (i.e., configuring the GetMap request that is generated

More information

Modelling XML Applications (part 2)

Modelling XML Applications (part 2) Modelling XML Applications (part 2) Patryk Czarnik XML and Applications 2014/2015 Lecture 3 20.10.2014 Common design decisions Natural language Which natural language to use? It would be a nonsense not

More information

Technical requirements

Technical requirements ANNEX 1 Technical requirements 1. INTRODUCTION...2 2. OVERVIEW OF THE APPLIED TARIFFS SECTION OF THE MARKET ACCESS DATABASE...3 Architecture...3 The dataset...3 Principle...3 Naming 4 Content 4 The public

More information

:38:00 1 / 14

:38:00 1 / 14 In this course you will be using XML Editor version 12.3 (oxygen for short from now on) for XML related work. The work includes writing XML Schema files with corresponding XML files, writing

More information

Manage Desktop Layout

Manage Desktop Layout You can define the layout of the Finesse desktop on the Desktop Layout tab. Important Requirements, such as processor speed and RAM, for clients that access the Finesse desktop can vary. Desktops that

More information

MWTM NBAPI WSDL and XSD Definitions

MWTM NBAPI WSDL and XSD Definitions APPENDIXA This appendix describes the WSDL and XSD 1 (XML Schema Definition) definitions for MWTM 6.1.4 Northbound API (NBAPI): InventoryAPI.wsdl, page A-1 EventAPI.wsdl, page A-10 ProvisionAPI.wsdl, page

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!   We offer free update service for one year PASS4TEST IT Certification Guaranteed, The Easy Way! \ http://www.pass4test.com We offer free update service for one year Exam : I10-002 Title : XML Master: Professional V2 Vendors : XML Master Version

More information

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-PRSTFR]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Pattern/Object Markup Language (POML): A Simple XML Schema for Object Oriented Code Description

Pattern/Object Markup Language (POML): A Simple XML Schema for Object Oriented Code Description Pattern/Object Markup Language (POML): A Simple XML Schema for Object Oriented Code Description Jason McC. Smith Apr 7, 2004 Abstract Pattern/Object Markup Language (or POML) is a simple XML Schema for

More information

MWTM 6.1 NBAPI WSDL and XSD Definitions

MWTM 6.1 NBAPI WSDL and XSD Definitions APPENDIXA This appendix describes the WSDL and XSD 1 (XML Schema Definition) definitions for MWTM 6.1 Northbound API (NBAPI): InventoryAPI.wsdl, page A-1 EventAPI.wsdl, page A-5 ProvisionAPI.wsdl, page

More information

DFP Mobile Ad Network and Rich Media API

DFP Mobile Ad Network and Rich Media API DFP Mobile Ad Network and Rich Media API v2.0, 12 June 2012 Background DFP Mobile is adopting a single open API for integrating with all ad networks and rich media vendors. This has the following benefits:

More information

Work/Studies History. Programming XML / XSD. Database

Work/Studies History. Programming XML / XSD. Database Work/Studies History 1. What was your emphasis in your bachelor s work at XXX? 2. What was the most interesting project you worked on there? 3. What is your emphasis in your master s work here at UF? 4.

More information

XML extensible Markup Language

XML extensible Markup Language extensible Markup Language Eshcar Hillel Sources: http://www.w3schools.com http://java.sun.com/webservices/jaxp/ learning/tutorial/index.html Tutorial Outline What is? syntax rules Schema Document Object

More information

Software Engineering Methods, XML extensible Markup Language. Tutorial Outline. An Example File: Note.xml XML 1

Software Engineering Methods, XML extensible Markup Language. Tutorial Outline. An Example File: Note.xml XML 1 extensible Markup Language Eshcar Hillel Sources: http://www.w3schools.com http://java.sun.com/webservices/jaxp/ learning/tutorial/index.html Tutorial Outline What is? syntax rules Schema Document Object

More information

MANAGING INFORMATION (CSCU9T4) LECTURE 2: XML STRUCTURE

MANAGING INFORMATION (CSCU9T4) LECTURE 2: XML STRUCTURE MANAGING INFORMATION (CSCU9T4) LECTURE 2: XML STRUCTURE Gabriela Ochoa http://www.cs.stir.ac.uk/~goc/ OUTLINE XML Elements vs. Attributes Well-formed vs. Valid XML documents Document Type Definitions (DTDs)

More information

Foundational Data Modeling and Schema Transformations for XML Data Engineering

Foundational Data Modeling and Schema Transformations for XML Data Engineering Foundational Data Modeling and Schema Transformations for XML Data Engineering Reema Al-Kamha 1, David W. Embley 2, and Stephen W. Liddle 3 1 Informatics Department, Damascus University, Syria 2 Department

More information

Specifications for SHORT System Document Submission Service

Specifications for SHORT System Document Submission Service Specifications for SHOT System Document Submission Service Version 1.3 August 2015 Version 1.3 August 2015 1 evision History Version Date Major Changes 1.0 December 2010 Initial version. 1.1 February 2011

More information

An XML Description Language for Web-based Network Simulation

An XML Description Language for Web-based Network Simulation An XML Description Language for Web-based Network Simulation R. Canonico, D. Emma, G. Ventre Università di Napoli "Federico II", Dipartimento di Informatica e Sistemistica Via Claudio, 21 I-80125 Napoli

More information

[MS-OXWSSYNC]: Mailbox Contents Synchronization Web Service Protocol Specification

[MS-OXWSSYNC]: Mailbox Contents Synchronization Web Service Protocol Specification [MS-OXWSSYNC]: Mailbox Contents Synchronization Web Service Protocol Specification Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes

More information

Computer Science 425 Fall 2006 Second Take-home Exam Out: 2:50PM Wednesday Dec. 6, 2006 Due: 5:00PM SHARP Friday Dec. 8, 2006

Computer Science 425 Fall 2006 Second Take-home Exam Out: 2:50PM Wednesday Dec. 6, 2006 Due: 5:00PM SHARP Friday Dec. 8, 2006 Computer Science 425 Fall 2006 Second Take-home Exam Out: 2:50PM Wednesday Dec. 6, 2006 Due: 5:00PM SHARP Friday Dec. 8, 2006 Instructions: This exam must be entirely your own work. Do not consult with

More information

I Exam Questions Demo XML Master. Exam Questions I XML Master: Professional V2

I Exam Questions Demo   XML Master. Exam Questions I XML Master: Professional V2 XML Master Exam Questions I10-002 XML Master: Professional V2 Version:Demo 1. Select which of the following correctly describes WSDL. (WSDL 1.1) A. WSDL assumes SOAP as the message transmission form B.

More information

REDISPATCH DOCUMENT UML MODEL AND SCHEMA

REDISPATCH DOCUMENT UML MODEL AND SCHEMA 1 REDISPATCH DOCUMENT UML MODEL AND SCHEMA 2019-02-12 APPROVED DOCUMENT 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 30 31 32 33 34 35 36 37 38 39 40 Table of Contents 1

More information

SMKI Repository Interface Design Specification TPMAG baseline submission draft version 8 September 2015

SMKI Repository Interface Design Specification TPMAG baseline submission draft version 8 September 2015 SMKI Repository Interface Design Specification DCC Public Page 1 of 21 Contents 1 Introduction 3 1.1 Purpose and Scope 3 1.2 Target Response Times 3 2 Interface Definition 4 2.1 SMKI Repository Portal

More information

Manage Desktop Layout

Manage Desktop Layout You can define the layout of the Finesse desktop on the Desktop Layout tab. Important Requirements, such as processor speed and RAM, for clients that access the Finesse desktop can vary. Desktops that

More information

TRANSMISSION NETWORK DOCUMENT UML MODEL AND SCHEMA

TRANSMISSION NETWORK DOCUMENT UML MODEL AND SCHEMA 1 TRANSMISSION NETWORK DOCUMENT UML MODEL AND SCHEMA 2017-01-27 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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 Table of

More information

TED schemas. Governance and latest updates

TED schemas. Governance and latest updates TED schemas Governance and latest updates Enric Staromiejski Torregrosa Carmelo Greco 9 October 2018 Agenda 1. Objectives 2. Scope 3. TED XSD 3.0.0 Technical harmonisation of all TED artefacts Code lists

More information

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-WMS]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Keio Virtual Sensor System based on Sensor- Over- XMPP

Keio Virtual Sensor System based on Sensor- Over- XMPP Keio Virtual Sensor System based on Sensor- Over- XMPP 1. Basic information Keio virtual sensor system is based on XMPP PubSub mechanism. Thus, we basically follow XMPP PubSub protocol (XEP- 0060: Publish-

More information

So far, we've discussed the use of XML in creating web services. How does this work? What other things can we do with it?

So far, we've discussed the use of XML in creating web services. How does this work? What other things can we do with it? XML Page 1 XML and web services Monday, March 14, 2011 2:50 PM So far, we've discussed the use of XML in creating web services. How does this work? What other things can we do with it? XML Page 2 Where

More information

Big Data 9. Data Models

Big Data 9. Data Models Ghislain Fourny Big Data 9. Data Models pinkyone / 123RF Stock Photo 1 Syntax vs. Data Models Physical view Syntax this is text. 2 Syntax vs. Data Models a Logical view

More information

Author: Irena Holubová Lecturer: Martin Svoboda

Author: Irena Holubová Lecturer: Martin Svoboda A7B36XML, AD7B36XML XML Technologies Lecture 5 XML Schema 31. 3. 2017 Author: Irena Holubová Lecturer: Martin Svoboda http://www.ksi.mff.cuni.cz/~svoboda/courses/2016-2-a7b36xml/ Lecture Outline XML schema

More information

Specifications for the Preliminary Official Statement Submission Service

Specifications for the Preliminary Official Statement Submission Service Specifications for the Preliminary Official Statement Submission Service Version 1.2 August 2015 1 EVISION HISTOY Version Date Major Changes 1.0 May 2011 Initial version. 1.1 July 2011 emove security types

More information

Qualys Cloud Suite API Release Notes

Qualys Cloud Suite API Release Notes Qualys Cloud Suite API Release Notes Version 2.28 Qualys Cloud Suite API gives you ways to integrate your programs and API calls with Qualys capabilities. You ll find all the details in our documentation,

More information

QosPolicyHolder 1.0. For UPnP Version Date: March 10th, 2005

QosPolicyHolder 1.0. For UPnP Version Date: March 10th, 2005 QosPolicyHolder 1.0 For UPnP Version 1.0 2 Date: March 10th, 2005 This Standardized DCP has been adopted as a Standardized DCP by the Steering Committee of the UPnP Forum, pursuant to Section 2.1(c)(ii)

More information

COMP60411 Modelling Data on the Web XPath, XML Schema, and XQuery. Week 3

COMP60411 Modelling Data on the Web XPath, XML Schema, and XQuery. Week 3 COMP60411 Modelling Data on the Web XPath, XML Schema, and XQuery Week 3 Bijan Parsia Uli Sattler University of Manchester Week 1 coursework All graded! Q1, SE1, M1, CW1 In general, Pay attention to the

More information

PTS XML STANDARD GUIDELINE

PTS XML STANDARD GUIDELINE PTS XML STANDARD GUIDELINE September 2012 Turkish Medicines & Medical Devices Agency, Department of Pharmaceutical Track & Trace System Söğütözü Mahallesi 2176 Sok. No: 5 P.K.06520 Çankaya, Ankara Phone:

More information

UNAVAILABILITY DOCUMENT UML MODEL AND SCHEMA

UNAVAILABILITY DOCUMENT UML MODEL AND SCHEMA 1 UNAVAILABILITY DOCUMENT UML MODEL AND SCHEMA 2017-01-27 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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 Table of Contents 1 Objective...

More information

Content Submission Guidelines

Content Submission Guidelines Content Submission Guidelines EPUB2/3 and PDF Introduction Key Features Content Submission Procedure Metadata EPUB file PDF file Cover file Introduction The PUBlizard Reader also fully supports legacy

More information

Oracle Hospitality OPERA Web Self- Service Brochure Web Service Specification Version 5.1. September 2017

Oracle Hospitality OPERA Web Self- Service Brochure Web Service Specification Version 5.1. September 2017 Oracle Hospitality OPERA Web Self- Service Brochure Web Service Specification Version 5.1 September 2017 Copyright 1987, 2017, Oracle and/or its affiliates. All rights reserved. This software and related

More information

[MS-TMPLDISC]: Template Discovery Web Service Protocol. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-TMPLDISC]: Template Discovery Web Service Protocol. Intellectual Property Rights Notice for Open Specifications Documentation [MS-TMPLDISC]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

CONCEPTUAL XML FOR SYSTEMS ANALYSIS. Reema Al-Kamha. A dissertation submitted to the faculty of. Brigham Young University

CONCEPTUAL XML FOR SYSTEMS ANALYSIS. Reema Al-Kamha. A dissertation submitted to the faculty of. Brigham Young University CONCEPTUAL XML FOR SYSTEMS ANALYSIS by Reema Al-Kamha A dissertation submitted to the faculty of Brigham Young University in partial fulfillment of the requirements for the degree of Doctor of Philosophy

More information

Semantic Web. XML and XML Schema. Morteza Amini. Sharif University of Technology Fall 94-95

Semantic Web. XML and XML Schema. Morteza Amini. Sharif University of Technology Fall 94-95 ه عا ی Semantic Web XML and XML Schema Morteza Amini Sharif University of Technology Fall 94-95 Outline Markup Languages XML Building Blocks XML Applications Namespaces XML Schema 2 Outline Markup Languages

More information

Specifications for the EMMA Continuing Disclosure Submission Services

Specifications for the EMMA Continuing Disclosure Submission Services The Official Source for Municipal Disclosures and Market Data Specifications for the EMMA Continuing Disclosure Submission Services Version 1.8 emma.msrb.org Municipal Securities Rulemaking Board 1 Specifications

More information

extensible Markup Language

extensible Markup Language What is XML? The acronym means extensible Markup Language It is used to describe data in a way which is simple, structured and (usually) readable also by humans Developed at the end of the ninenties by

More information

XML Technologies. Doc. RNDr. Irena Holubova, Ph.D. Web pages:

XML Technologies. Doc. RNDr. Irena Holubova, Ph.D. Web pages: XML Technologies Doc. RNDr. Irena Holubova, Ph.D. holubova@ksi.mff.cuni.cz Web pages: http://www.ksi.mff.cuni.cz/~holubova/nprg036/ Outline Introduction to XML format, overview of XML technologies DTD

More information

Java and XML. XML documents consist of Elements. Each element will contains other elements and will have Attributes. For example:

Java and XML. XML documents consist of Elements. Each element will contains other elements and will have Attributes. For example: Java and XML XML Documents An XML document is a way to represent structured information in a neutral format. The purpose of XML documents is to provide a way to represent data in a vendor and software

More information

Technical requirements

Technical requirements ANNEX 1: TECHNICAL REQUIREMENTS Technical requirements 1. Introduction... 2 2. Overview of the import formalities section of the market access database... 2 2.1. Architecture... 2 2.2. The dataset... 2

More information

Extensible Markup Language Processing

Extensible Markup Language Processing CHAPTER 2 Revised: June 24, 2009, This chapter describes the Extensible Markup Language (XML) process in the Common Object Request Broker Architecture (CORBA) adapter. XML and Components Along with XML,

More information

AlwaysUp Web Service API Version 11.0

AlwaysUp Web Service API Version 11.0 AlwaysUp Web Service API Version 11.0 0. Version History... 2 1. Overview... 3 2. Operations... 4 2.1. Common Topics... 4 2.1.1. Authentication... 4 2.1.2. Error Handling... 4 2.2. Get Application Status...

More information

Privacy and Personal Data Collection Disclosure. Legal Notice

Privacy and Personal Data Collection Disclosure. Legal Notice Privacy and Personal Data Collection Disclosure Certain features available in Trend Micro products collect and send feedback regarding product usage and detection information to Trend Micro. Some of this

More information

Specifications for the EMMA Continuing Disclosure Submission Services

Specifications for the EMMA Continuing Disclosure Submission Services The Official Source for Municipal Disclosures and Market Data Specifications for the EMMA Continuing Disclosure Submission Services Version 1.5, August 2015 emma.msrb.org Municipal Securities Rulemaking

More information

Document Metadata: document technical metadata for digital preservation

Document Metadata: document technical metadata for digital preservation Document Metadata: document technical metadata for digital preservation By Carol Chou - Florida Digital Archive (FDA) Andrea Goethals - Harvard Library (HL) March 18, 2009 Rev. November 30, 2012 1 Table

More information

extensible Markup Language

extensible Markup Language What is XML? The acronym means extensible Markup Language It is used to describe data in a way which is simple, structured and (usually) readable also by humans Developed at the end of the ninenties by

More information

Oracle Enterprise Data Quality

Oracle Enterprise Data Quality Oracle Enterprise Data Quality Automated Loading and Running of Projects Version 9.0 January 2012 Copyright 2006, 2012, Oracle and/or its affiliates. All rights reserved. Oracle Enterprise Data Quality,

More information

COMP60411 Modelling Data on the Web XPath, XML Schema, and XQuery, week 3

COMP60411 Modelling Data on the Web XPath, XML Schema, and XQuery, week 3 COMP60411 Modelling Data on the Web XPath, XML Schema, and XQuery, week 3 Bijan Parsia Uli Sattler University of Manchester 1 Week 1 coursework Mostly graded! Q1, SE1, M1 should be accessible to you CW1

More information

IMPLICIT AUCTION RESULT DOCUMENT UML MODEL AND SCHEMA

IMPLICIT AUCTION RESULT DOCUMENT UML MODEL AND SCHEMA 1 IMPLICIT AUCTION RESULT DOCUMENT UML MODEL AND SCHEMA 2018-05-08 DOCUMENT APPROVED 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 30 31 32 33 34 35 36 37 38 39 40 41 Table

More information

NO: 22/15(1)/ /DCH/DHDS/Machinery Government of India Ministry of Textiles Office of the Development Commissioner for Handlooms **** ADDENDUM

NO: 22/15(1)/ /DCH/DHDS/Machinery Government of India Ministry of Textiles Office of the Development Commissioner for Handlooms **** ADDENDUM NO: 22/15(1)/2014-15/DCH/DHDS/Machinery Government of India Ministry of Textiles Office of the Development Commissioner for Handlooms **** ADDENDUM Udyog Bhavan, New Delhi Dated: 27.10.2014 Subject: -

More information

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-OXSHRMSG]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Big Data Fall Data Models

Big Data Fall Data Models Ghislain Fourny Big Data Fall 2018 11. Data Models pinkyone / 123RF Stock Photo CSV (Comma separated values) This is syntax ID,Last name,first name,theory, 1,Einstein,Albert,"General, Special Relativity"

More information

RESERVE ALLOCATION RESULT DOCUMENT UML MODEL AND SCHEMA

RESERVE ALLOCATION RESULT DOCUMENT UML MODEL AND SCHEMA 1 RESERVE ALLOCATION RESULT DOCUMENT UML MODEL AND SCHEMA 2019-02-12 APPROVED DOCUMENT 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 30 31 32 33 34 35 36 37 38 39 40 41 42

More information