ISO/IEC JTC 1/SC 32 N 1213
|
|
|
- Junior Hines
- 10 years ago
- Views:
Transcription
1 ISO/IEC JTC 1/SC 32 N 1213 Date: REPLACES: -- ISO/IEC JTC 1/SC 32 Data Management and Interchange Secretariat: United States of America (ANSI) Administered by Pacific Northwest National Laboratory on behalf of ANSI DOCUMENT TYPE TITLE SOURCE Final Text Submitted for COR Publication Technical Corrigenda ISO/IEC Information technology - Database Languages - SQL - Part 11: Information and Definition Schemas (SQL/Schemata) SC 32 Secretariat PROJECT NUMBER STATUS REFERENCES ACTION ID. REQUESTED ACTION DUE DATE Number of Pages 6 LANGUAGE USED DISTRIBUTION This is sent to ITTF for publication ITTF English P & L Members SC Chair WG Conveners and Secretaries Douglas Mann, Secretariat, ISO/IEC JTC 1/SC 32 Pacific Northwest National Laboratory *, Legacy Circle Apt H, Herndon, VA, 20171, United States of America Telephone: ; Facsimile; ; [email protected] available from the JTC 1/SC 32 WebSite *Pacific Northwest National Laboratory (PNL) administers the ISO/IEC JTC 1/SC 32 Secretariat on behalf of ANSI
2 ISO/IEC JTC 1/SC 32 Date: COR ISO/IEC :2004 (E) ISO/IEC JTC 1/SC 32/WG 3 Nederlands Normalisatie Instituut (NNI) Information technology Database languages SQL Part 11: Information and Definition Schemas (SQL/Schemata) TECHNICAL CORRIGENDUM 1 Technologies de l'information Langages de base de données SQL Partie 11: Information et Definition Schémas (SQL/Schemata) RECTIFICATIE TECHNIQUE 1 Document type: Corridenga Document subtype: Technical Corrigendum (COR) Document stage: (5) IS Publication Document language: English
3 Statement of purpose for rationale: A statement indicating the rational for each change to ISO/IEC 9075 is included. This is to inform the users of that standard as to the reason why it was judged necessary to change the original wording. In many cases, the reason is editorial or to clarify the wording; in some cases, it is to correct an error or an omission in the original wording. Notes on numbering: Where this Corrigendum introduces new Syntax, Access, General, and Conformance Rules, the new rules have been numbered as follows: Rules inserted between, for example, Rules 7) and 8) are numbered 7.1), 7.2), etc. [or 7)a.1), 7)a.2), etc.]. Those inserted before Rule 1) are numbered 0.1), 0.2, etc. Where this Corrigendum introduces new Subclauses, the new Subclauses have been numbered as follows: Subclauses inserted between, for example, Subclause and Subclause are numbered 4.3.2a, 4.3.2b, etc. Those inserted before, for example, are numbered 4.3.0, 4.3.0a, etc.
4
5 Contents Page Foreword Normative references JTC1 standards Information Schema COLLATIONS view COLUMN_DOMAIN_USAGE view ELEMENT_TYPES view KEY_COLUMN_USAGE view TRANSLATIONS view Short name views Definition Schema ATTRIBUTES base table AUTHORIZATIONS base table FIELDS base table ROLE_AUTHORIZATION_DESCRIPTORS base table SEQUENCES base table TABLES base table VIEWS base table Annex C Deprecated features Annex E SQL feature taxonomy Information and Definition Schemas (SQL/Schemata) ISO/IEC 2004 All rights reserved
6 Tables Table Page 3 Feature taxonomy for optional features ISO/IEC 2004 All rights reserved Contents 3
7 Information technology Database languages SQL Part 11: Information and Definition Schemas (SQL/Schemata) TECHNICAL CORRIGENDUM 1 Foreword 1. Rationale:Correct intent of this second edition. Insert the following paragraph after the 5 th paragraph: This first edition replaces parts of the the first editions of ISO/IEC :1999 and ISO/IEC :1999, which have been technically revised. It also incorporates the relevant parts of amendment ISO/IEC :1999/Amd.1:2001 and of the Technical Corrigenda ISO/IEC :1999/Cor.1:2001 and ISO/IEC :1999/Cor.2: Rationale:Remove incorrect reference to obsolete part. In the 6 th paragraph, delete the 5 th bullet. 2 Normative references 2.1 JTC1 standards 1. Rationale:Correct references to IS rather than FCD documents. Replace the references [Framework] and [Foundation] with: [Framework] ISO/IEC :2003, Information technology Database languages SQL Part 1: Framework (SQL/Framework). [Foundation] ISO/IEC :2003, Information technology Database languages SQL Part 2: Foundation (SQL/Foundation) ISO/IEC 2004 All rights reserved Foreword 4
8 5 Information Schema 5.14 COLLATIONS view 1. Rationale:Replace Feature F691 with Feature F690. Replace Conformance Rule 1) with: 1) Without Feature F690, Collation support, conforming SQL language shall not reference INFOR- MATION_SCHEMA.COLLATIONS COLUMN_DOMAIN_USAGE view 1. Rationale:Add missing Conformance Rule. Insert the following Conformance Rule: 0.1) Without Feature F251, Domain support, conforming SQL language shall not reference INFORMA- TION_SCHEMA.COLUMN_DOMAIN_USAGE ELEMENT_TYPES view 1. Rationale:Replace incorrect reference to DTD_IDENTIFIER. Replace the Definition with: CREATE VIEW ELEMENT_TYPES AS SELECT DISTINCT OBJECT_CATALOG, OBJECT_SCHEMA, OBJECT_NAME, OBJECT_TYPE, COLLECTION_TYPE_IDENTIFIER, DATA_TYPE, CHARACTER_MAXIMUM_LENGTH, CHARACTER_OCTET_LENGTH, CHARACTER_SET_CATALOG, CHARACTER_SET_SCHEMA, CHARACTER_SET_NAME, COLLATION_CATALOG, COLLATION_SCHEMA, COLLATION_NAME, NUMERIC_PRECISION, NUMERIC_PRECISION_RADIX, NUMERIC_SCALE, DATETIME_PRECISION, INTERVAL_TYPE, INTERVAL_PRECISION, USER_DEFINED_TYPE_CATALOG AS UDT_CATALOG, USER_DEFINED_TYPE_SCHEMA AS UDT_SCHEMA, USER_DEFINED_TYPE_NAME AS UDT_NAME, SCOPE_CATALOG, SCOPE_SCHEMA, SCOPE_NAME, MAXIMUM_CARDINALITY, DTD_IDENTIFIER FROM DEFINITION_SCHEMA.ELEMENT_TYPES AS E JOIN DEFINITION_SCHEMA.DATA_TYPE_DESCRIPTOR AS D USING ( OBJECT_CATALOG, OBJECT_SCHEMA, OBJECT_NAME, ISO/IEC 2004 All rights reserved Information Schema 5
9 5.28 ELEMENT_TYPES view OBJECT_TYPE, DTD_IDENTIFIER ) WHERE ( OBJECT_CATALOG, OBJECT_SCHEMA, OBJECT_NAME, OBJECT_TYPE, ROOT_DTD_IDENTIFIER ) IN ( SELECT OBJECT_CATALOG, OBJECT_SCHEMA, OBJECT_NAME, OBJECT_TYPE, DTD_IDENTIFIER FROM INFORMATION_SCHEMA.DATA_TYPE_PRIVILEGES ); GRANT SELECT ON TABLE ELEMENT_TYPES TO PUBLIC WITH GRANT OPTION; 5.31 KEY_COLUMN_USAGE view 1. Rationale:Fix the invalid brackets in the KEY_COLUMN_USAGE view. Replace the view definition with: CREATE VIEW KEY_COLUMN_USAGE AS SELECT CONSTRAINT_CATALOG, CONSTRAINT_SCHEMA, CONSTRAINT_NAME, KCU1.TABLE_CATALOG, KCU1.TABLE_SCHEMA, KCU1.TABLE_NAME, KCU1.COLUMN_NAME, KCU1.ORDINAL_POSITION, KCU1.POSITION_IN_UNIQUE_CONSTRAINT FROM DEFINITION_SCHEMA.KEY_COLUMN_USAGE AS KCU1 JOIN INFORMATION_SCHEMA.TABLE_CONSTRAINTS AS TC USING ( CONSTRAINT_CATALOG, CONSTRAINT_SCHEMA, CONSTRAINT_NAME ) WHERE ( ( SELECT MAX ( KCU3.ORDINAL_POSITION ) FROM DEFINITION_SCHEMA.KEY_COLUMN_USAGE AS KCU3 WHERE KCU3.CONSTRAINT_CATALOG = CONSTRAINT_CATALOG AND KCU3.CONSTRAINT_SCHEMA = CONSTRAINT_SCHEMA AND KCU3.CONSTRAINT_NAME = CONSTRAINT_NAME ) = ( SELECT COUNT (*) FROM DEFINITION_SCHEMA.KEY_COLUMN_USAGE AS KCU2 WHERE ( KCU2.TABLE_CATALOG, KCU2.TABLE_SCHEMA, KCU2.TABLE_NAME, KCU2.COLUMN_NAME ) IN ( SELECT CP2.TABLE_CATALOG, CP2.TABLE_SCHEMA, CP2.TABLE_NAME, CP2.COLUMN_NAME FROM DEFINITION_SCHEMA.COLUMN_PRIVILEGES AS CP2 WHERE ( CP2.GRANTEE IN ( 'PUBLIC', CURRENT_USER ) OR CP2.GRANTEE IN ( SELECT ROLE_NAME FROM ENABLED_ROLES ) ) ) AND KCU2.CONSTRAINT_CATALOG = CONSTRAINT_CATALOG AND KCU2.CONSTRAINT_SCHEMA = CONSTRAINT_SCHEMA AND KCU2.CONSTRAINT_NAME = CONSTRAINT_NAME ) 6 Information and Definition Schemas (SQL/Schemata) ISO/IEC 2004 All rights reserved
10 ) AND CONSTRAINT_CATALOG = ( SELECT CATALOG_NAME FROM INFORMATION_SCHEMA_CATALOG_NAME ); 5.63 TRANSLATIONS view 1. Rationale:Replace Feature F691 with Feature F695. Replace Conformance Rule 1) with: 2) Without Feature F695, Translation support, conforming SQL language shall not reference INFORMATION_SCHEMA.TRANSLATIONS Short name views 1. Rationale:Add missing Conformance Rule. Insert the following Conformance Rules: 1.1) Without Feature F251, Domain support, conforming SQL language shall not reference INFORMA- TION_SCHEMA.COL_DOMAIN_USAGE. 2. Rationale:Delete a Conformance Rule which references an incorrect table Delete Conformance Rule 16) 3. Rationale:Add missing Conformance Rules. Insert the following Conformance Rules: 16.1) Without Feature F341, Usage tables, conforming SQL language shall not reference the INFOR- MATION_SCHEMA.TRIG_SEQ_USAGE_S view. 16.2) Without Feature F341, Usage tables, conforming SQL language shall not reference the INFOR- MATION_SCHEMA.COL_COL_USAGE view. 4. Rationale:Replace Feature F691 with Features F690 and F695. Replace Conformance Rules 19) and 20) with: 19) Without Feature F690, Collation support, conforming SQL language shall not reference INFOR- MATION_SCHEMA.COLLATIONS. ISO/IEC 2004 All rights reserved Information Schema 7
11 5.77 Short name views 20) Without Feature F695, Translation support, conforming SQL language shall not reference INFORMATION_SCHEMA.TRANSLATIONS. 5. Rationale:Reference the correct table. Replace Conformance Rule 21) with: 21) Without Feature F696, Additional translation documentation, conforming SQL language shall not reference TRANSLATIONS_S.TRANS_SRC_CATALOG, TRANSLA- TIONS_S.TRANS_SRC_SCHEMA, or TRANSLATIONS_S.TRANS_SRC_NAME. 6. Rationale:Add missing Conformance Rules. Insert the following Conformance Rules: 25.1) Without Feature S024, Enhanced structured types, conforming SQL language shall not reference INFORMATION_SCHEMA.ROL_TAB_METH_GRNTS. 25.2) Without Feature S041, Basic reference types, conforming SQL language shall not reference INFORMATION_SCHEMA.REFERENCED_TYPES_S. 25.3) Without Feature S091, Basic array support, or Feature S271, Basic multiset support, conforming SQL language shall not reference INFORMATION_SCHEMA.ELEMENT_TYPES_S. 7. Rationale:Reference the correct table. Replace Conformance Rule 30) with: 30) Without Feature T011, Timestamp in Information Schema, conforming SQL language shall not reference INFORMATION_SCHEMA.TRIGGERS_S.CREATED. 8. Rationale:Add missing Conformance Rules. Insert the following Conformance Rules: 30.1) Without Feature T051, Row types, conforming SQL language shall not reference INFORMA- TION_SCHEMA.FIELDS_S. 30.2) Without Feature T175, Generated columns, conforming SQL language shall not reference INFORMATION_SCHEMA.COLUMNS_S.IS_GENERATED. 9. Rationale:Add missing Conformance Rule. Insert the following Conformance Rules: 34.1) Without Feature T176, Sequence generator support, conforming SQL language shall not reference INFORMATION_SCHEMA.TRIGGER_SEQ_USAGE_S. 8 Information and Definition Schemas (SQL/Schemata) ISO/IEC 2004 All rights reserved
12 10. Rationale:Delete a redundant Conformance Rule. Delete Conformance Rule 39) 11. Rationale:Add missing Conformance Rules. Insert the following Conformance Rules: 41.1) Without Feature T272, Enhanced savepoint management, conforming SQL language shall not reference INFORMATION_SCHEMA.ROUTINES_S.NEW_SAVEPOINT_LEVEL. 41.2) Without Feature T331, Basic roles, conforming SQL language shall not reference INFORMA- TION_SCHEMA.ROL_TAB_METH_GRNTS. 6 Definition Schema 6.6 ATTRIBUTES base table 1. Rationale:Nullability is not specied for attributes of structured types. Replace description 6) with: 6) The value of IS_NULLABLE is YES. 2. Rationale:The description for the column IS_DERIVED_REFERENCE_ATTRIBUTE is missing. Insert the following description item: 6.1) The values of IS_DERIVED_REFERENCE_ATTRIBUTE have the following meanings: YES NO The attribute is used in the definition of a derived representation for the reference type corresponding to the structured type the attribute belongs to. The attribute is not used in the definition of a derived representation for the reference type corresponding to the structured type the attribute belongs to. 6.7 AUTHORIZATIONS base table 1. Rationale:Use correct BNF term. Replace the text of the Function with: ISO/IEC 2004 All rights reserved Definition Schema 9
13 6.7 AUTHORIZATIONS base table Function The AUTHORIZATIONS table has one row for each <role name> and one row for each <user identifier> referenced in the Information Schema. These are the <role name>s and <user identifier>s that may grant privileges as well as those that may create a schema, or currently own a schema created through a <schema definition> FIELDS base table 1. Rationale:Nullability is not specified for fields of row types. Replace description 6) with: 6) The value of IS_NULLABLE is YES ROLE_AUTHORIZATION_DESCRIPTORS base table 1. Rationale:The primary key is incomplete. Replace the declaration of the constraint ROLE_AUTHORIZATION_DESCRIPTORS_PRIMARY_KEY with: CONSTRAINT ROLE_AUTHORIZATION_DESCRIPTORS_PRIMARY_KEY PRIMARY KEY ( ROLE_NAME, GRANTEE, GRANTOR ), 6.42 SEQUENCES base table 1. Rationale:Fix the invalid constraint SEQUENCES_FOREIGN_KEY_SCHEMATA. In the Table definition replace the constraint definition for constraint SEQUENCES_FOREIGN_KEY_SCHEMATA with: CONSTRAINT SEQUENCES_FOREIGN_KEY_SCHEMATA FOREIGN KEY ( SEQUENCE_CATALOG, SEQUENCE_SCHEMA ) REFERENCES SCHEMATA, 10 Information and Definition Schemas (SQL/Schemata) ISO/IEC 2004 All rights reserved
14 6.51 TABLES base table 1. Rationale:SQL-92 compatability. Replace Description 7) with: 7) The values of IS_INSERTABLE_INTO have the following meanings: a) If the SQL implementation supports Feature T111, Updatable joins, unions and columns, then YES NO The table being described is insertable-into. The table being described is not insertable-into. b) Otherwise, YES NO The table being described is insertable-into and simply updatable. The table being described is not insertable-into or not simply updatable VIEWS base table 1. Rationale:SQL-92 compatability. Replace Description 4) with: 4) The values of IS_UPDATABLE have the following meanings: YES NO The view is effectively updatable. The view is not effectively updatable. Annex C (informative) ISO/IEC 2004 All rights reserved Deprecated features 11
15 Deprecated features 1. Rationale:Nullability is not specified for attributes of structured types or fields of row types. Insert the following items: 7) The column IS_NULLABLE of the ATTRIBUTES view has been deprecated. 8) The column IS_NULLABLE of the FIELDS view has been deprecated. Annex E (informative) SQL feature taxonomy 1. Rationale:List missing optional features. Insert the following rows to Table 3, Feature taxonomy for optional features : Table 3 Feature taxonomy for optional features Feature ID F251 F521 F651 F690 F695 F696 S041 S081 S091 Feature Name Domain support Assertions Catalog name qualifiers Collation support Translation support Additional translation documentation Basic reference types Subtables Basic array support 12 Information and Definition Schemas (SQL/Schemata) ISO/IEC 2004 All rights reserved
16 Feature ID S241 S271 T051 Feature Name Transform functions Basic multiset support Row types ISO/IEC 2004 All rights reserved SQL feature taxonomy 13
ISO/TMB/JTCG N 359. N0359 JTCG FAQ to support Annex SL. Document type: Other committee document. Date of document: 2013-12-03.
ISO/TMB/JTCG N 359 ISO/TMB/JTCG Joint technical Coordination Group on MSS (TAG 13) Email of secretary: Convenorship: N0359 JTCG FAQ to support Annex SL Document type: Other committee document Date of document:
Standard Registry Development and Publication Process
Document number: DSP4006 Date: 2007-12-12 Version: 1.1.0 Standard Registry Development and Publication Process Document type: Specification Document status: Informational Document language: E Copyright
Programming languages C
INTERNATIONAL STANDARD ISO/IEC 9899:1999 TECHNICAL CORRIGENDUM 2 Published 2004-11-15 INTERNATIONAL ORGANIZATION FOR STANDARDIZATION МЕЖДУНАРОДНАЯ ОРГАНИЗАЦИЯ ПО СТАНДАРТИЗАЦИИ ORGANISATION INTERNATIONALE
Instant SQL Programming
Instant SQL Programming Joe Celko Wrox Press Ltd. INSTANT Table of Contents Introduction 1 What Can SQL Do for Me? 2 Who Should Use This Book? 2 How To Use This Book 3 What You Should Know 3 Conventions
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
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
New SQL Features in Firebird 3
New SQL Features in Firebird 3 Sponsors! Whats new in Firebird 3 Common SQL Full syntax of MERGE statement (per SQL 2008) MERGE... RETURNING Window (analytical) functions SUBSTRING with regular expressions
2015. All rights reserved.
DOCUMENT: Future AAMI/IEC 62304:2006/AMD1, 18-August-2015 Final Draft International Standard for Vote, Amendment 1 to IEC 62304: Medical device software Software life cycle processes. Public Review Draft
2. Basic Relational Data Model
2. Basic Relational Data Model 2.1 Introduction Basic concepts of information models, their realisation in databases comprising data objects and object relationships, and their management by DBMS s that
Managing Objects with Data Dictionary Views. Copyright 2006, Oracle. All rights reserved.
Managing Objects with Data Dictionary Views Objectives After completing this lesson, you should be able to do the following: Use the data dictionary views to research data on your objects Query various
INTERNATIONAL STANDARD
INTERNATIONAL STANDARD ISO/IEC 14662 First edition Information Technologies - Open-edi reference model Technologie de l'information - Modèle de référence EDI-ouvert Reference number Page 2 Contents Foreword...
CONSOLIDATED VERSION IEC 62304. Medical device software Software life cycle processes. colour inside. Edition 1.1 2015-06
IEC 62304 CONSOLIDATED VERSION Edition 1.1 2015-06 colour inside Medical device software life cycle processes INTERNATIONAL ELECTROTECHNICAL COMMISSION ICS 11.040 ISBN 978-2-8322-2765-7 Warning! Make sure
HP Quality Center. Upgrade Preparation Guide
HP Quality Center Upgrade Preparation Guide Document Release Date: November 2008 Software Release Date: November 2008 Legal Notices Warranty The only warranties for HP products and services are set forth
Databasesystemer, forår 2005 IT Universitetet i København. Forelæsning 3: Business rules, constraints & triggers. 3. marts 2005
Databasesystemer, forår 2005 IT Universitetet i København Forelæsning 3: Business rules, constraints & triggers. 3. marts 2005 Forelæser: Rasmus Pagh Today s lecture Constraints and triggers Uniqueness
ISO/IEC Directives, Part 1 Consolidated ISO Supplement Procedures specific to ISO
ISO/IEC Directives, Part 1 Consolidated ISO Supplement Procedures specific to ISO Directives ISO/IEC, Partie 1 Supplément ISO consolidé Procédures spécifiques à l ISO Sixth edition, 2015 [Based on the
The process of database development. Logical model: relational DBMS. Relation
The process of database development Reality (Universe of Discourse) Relational Databases and SQL Basic Concepts The 3rd normal form Structured Query Language (SQL) Conceptual model (e.g. Entity-Relationship
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
INTERNATIONAL TELECOMMUNICATION UNION
INTERNATIONAL TELECOMMUNICATION UNION ITU-T X.680 TELECOMMUNICATION STANDARDIZATION SECTOR OF ITU Amendment 1 (06/99) SERIES X: DATA NETWORKS AND OPEN SYSTEM COMMUNICATIONS OSI networking and system aspects
Temporal Features in SQL standard
WG2 N1536 WG3: KOA-046 Temporal Features in SQL standard Krishna Kulkarni, IBM Corporation [email protected] May 13, 2011 1 Agenda Brief description of the SQL standard List of features in the latest
International Software & Systems Engineering. Standards. Jim Moore The MITRE Corporation Chair, US TAG to ISO/IEC JTC1/SC7 James.W.Moore@ieee.
This presentation represents the opinion of the author and does not present positions of The MITRE Corporation or of the U.S. Department of Defense. Prepared for the 4th Annual PSM Users Group Conference
The new ISO standard Standard Template
How Many Business Management Systems do we Need? Hunterston A, 26 September 2012 The new ISO standard Standard Template Graham Watson Integre Ltd. Outline Background to Annex SL ISO/IEC directives TMB
Certificate Management Profile
1 2 3 4 Document Number: DSP1096 Date: 2011-09-16 Version: 1.0.0 5 6 7 8 Document Type: Specification Document Status: DMTF Standard Document Language: en-us 9 DSP1096 10 11 Copyright notice Copyright
Published International Standards Developed by ISO/IEC JTC 1/SC 37 - Biometrics
Published International Standards Developed by ISO/IEC JTC 1/SC 37 - Biometrics Revised October 25, 2007 These standards can be obtained (for a fee) at ANSI s estandards Store: http://webstore.ansi.org/
Database Security Sabrina De Capitani di Vimercati, Dip. Elettronica, Universita di Brescia, 25123 Brescia, Italy Pierangela Samarati, Dip. di Tecnologie dell'informazione, Universita di Milano, 26013
CHAPTER 2 DATABASE MANAGEMENT SYSTEM AND SECURITY
CHAPTER 2 DATABASE MANAGEMENT SYSTEM AND SECURITY 2.1 Introduction In this chapter, I am going to introduce Database Management Systems (DBMS) and the Structured Query Language (SQL), its syntax and usage.
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
ISO/IEC JTC 1/SC 32 N 2096
ISO/IEC JTC 1/SC 32 N 2096 Date: 2011-04-16 REPLACES: 32N1948 ISO/IEC JTC 1/SC 32 Data Management and Interchange Secretariat: United States of America (ANSI) Administered by Farance Inc. on behalf of
Duration Vendor Audience 5 Days Oracle End Users, Developers, Technical Consultants and Support Staff
D80198GC10 Oracle Database 12c SQL and Fundamentals Summary Duration Vendor Audience 5 Days Oracle End Users, Developers, Technical Consultants and Support Staff Level Professional Delivery Method Instructor-led
Database Design and Normalization
Database Design and Normalization 3 CHAPTER IN THIS CHAPTER The Relational Design Theory 48 46 Database Design Unleashed PART I Access applications are database applications, an obvious statement that
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
Model document of a draft Amendment
Model document of a draft Amendment The model document shown on the following pages demonstrates the application of certain instructions contained in the ISO/IEC Directives, Part 2, 2004, Rules for the
Information and documentation The Dublin Core metadata element set
ISO TC 46/SC 4 N515 Date: 2003-02-26 ISO 15836:2003(E) ISO TC 46/SC 4 Secretariat: ANSI Information and documentation The Dublin Core metadata element set Information et documentation Éléments fondamentaux
Information technology Programming languages Fortran Enhanced data type facilities
ISO/IEC JTC1/SC22/WG5 N1379 Working draft of ISO/IEC TR 15581, second edition Information technology Programming languages Fortran Enhanced data type facilities This page to be supplied by ISO. No changes
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
This document is a preview generated by EVS
INTERNATIONAL STANDARD ISO/IEC 27033-1 Second edition 2015-08-15 Information technology Security techniques Network security Part 1: Overview and concepts Technologies de l information Techniques de sécurité
Information technology Programming languages Fortran Enhanced Module Facilities
Reference number of working document: ISO/IEC JTC1/SC22/WG5 N1602 Date: 2004-5-6 Reference number of document: ISO/IEC TR 19767:2004(E) Committee identification: ISO/IEC JTC1/SC22 Secretariat: ANSI Information
INTERNATIONAL TELECOMMUNICATION UNION
INTERNATIONAL TELECOMMUNICATION UNION ITU-T X.680 TELECOMMUNICATION STANDARDIZATION SECTOR OF ITU (07/2002) SERIES X: DATA NETWORKS AND OPEN SYSTEM COMMUNICATIONS OSI networking and system aspects Abstract
PART 2. TEXAS DEPARTMENT OF INSURANCE, DIVISION OF WORKERS' COMPENSATION SERVICE TITLE 4. AGRICULTURE TITLE 28. INSURANCE
TITLE 4. AGRICULTURE PART 12. SERVICE TEXAS A&M FOREST CHAPTER 215. FOREST ZONE DETERMINATION PROCEDURE 4 TAC 215.1, 215.5, 215.9, 215.13, 215.17, 215.21, 215.35 Texas A&M Forest Service (Agency) adopts
Exposed Database( SQL Server) Error messages Delicious food for Hackers
Exposed Database( SQL Server) Error messages Delicious food for Hackers The default.asp behavior of IIS server is to return a descriptive error message from the application. By attacking the web application
Private Circulation Document: IST/35_07_0075
Private Circulation Document: IST/3_07_007 BSI Group Headquarters 389 Chiswick High Road London W4 4AL Tel: +44 (0) 20 8996 9000 Fax: +44 (0) 20 8996 7400 www.bsi-global.com Committee Ref: IST/3 Date:
Fine Grained Auditing In Oracle 10G
Fine Grained Auditing In Oracle 10G Authored by: Meenakshi Srivastava ([email protected]) 2 Abstract The purpose of this document is to develop an understanding of Fine Grained Auditing(FGA)
Introduction This document s purpose is to define Microsoft SQL server database design standards.
Introduction This document s purpose is to define Microsoft SQL server database design standards. The database being developed or changed should be depicted in an ERD (Entity Relationship Diagram). The
DRAFT ÖNORM ISO/IEC 27005
DRAFT ÖNORM ISO/IEC 27005 Edition: 2013-07-01 Information technology Security techniques Information security risk management (ISO/IEC 27005:2011) Informationstechnologie Sicherheitstechnik Informationssicherheits-
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
Simple Identity Management Profile
1 2 3 4 Document Number: DSP1034 Date: 2009-06-17 Version: 1.0.1 5 6 7 8 Document Type: Specification Document Status: DMTF Standard Document Language: E 9 DSP1034 10 11 Copyright Notice Copyright 2008,
news from Tom Bacon about Monday's lecture
ECRIC news from Tom Bacon about Monday's lecture I won't be at the lecture on Monday due to the work swamp. The plan is still to try and get into the data centre in two weeks time and do the next migration,
Baba Piprani. Canada
META MODEL MODEL FOR MASTER DATA Baba Piprani Suneil Dham Canada ORM Workshop, Crete, Greece, 2010 1 Your Presenter: Baba Piprani MetaGlobal Systems, Canada Over 30 years experience teaching/implementing
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
Cloud Infrastructure Management Interface - Common Information Model (CIMI-CIM)
1 2 3 4 5 Document Number: DSP0264 Version: 0.0.09 Date: 2011-09-07 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 Cloud Infrastructure Management Interface - Common Information Model (CIMI-CIM)
Relational model. Relational model - practice. Relational Database Definitions 9/27/11. Relational model. Relational Database: Terminology
COS 597A: Principles of Database and Information Systems elational model elational model A formal (mathematical) model to represent objects (data/information), relationships between objects Constraints
Data Modeling Basics
Information Technology Standard Commonwealth of Pennsylvania Governor's Office of Administration/Office for Information Technology STD Number: STD-INF003B STD Title: Data Modeling Basics Issued by: Deputy
OpenGIS Implementation Specification for Geographic information - Simple feature access - Part 2: SQL option
Open Geospatial Consortium Inc. Date: 2006-10-05 Reference number of this document: OGC 06-104r3 Version: 1.2.0 Category: OpenGIS Implementation Specification Editor: John R. Herring OpenGIS Implementation
FIA FIA. Installation Standards - 2004. e-ready Building Next Generation IT infrastructures. ϕ The Cabling Partnership AGENDA
Installation Standards - 2004 January 2004, Issue 1 Mike Gilmore Standards Activities Member: ISO/IEC JTC1 SC25 WG3: Generic Cabling ISO/IEC JTC1 SC25 Project Team: SOHO Convenor: ISO/IEC JTC1 SC25 WG3
KB_SQL SQL Reference Guide Version 4
KB_SQL SQL Reference Guide Version 4 1995, 1999 by KB Systems, Inc. All rights reserved. KB Systems, Inc., Herndon, Virginia, USA. Printed in the United States of America. No part of this manual may be
Systems and software engineering Lifecycle profiles for Very Small Entities (VSEs) Part 5-6-2:
TECHNICAL REPORT ISO/IEC TR 29110-5-6-2 First edition 2014-08-15 Systems and software engineering Lifecycle profiles for Very Small Entities (VSEs) Part 5-6-2: Systems engineering Management and engineering
SQL DATA DEFINITION: KEY CONSTRAINTS. CS121: Introduction to Relational Database Systems Fall 2015 Lecture 7
SQL DATA DEFINITION: KEY CONSTRAINTS CS121: Introduction to Relational Database Systems Fall 2015 Lecture 7 Data Definition 2 Covered most of SQL data manipulation operations Continue exploration of SQL
SQL Server. 2012 for developers. murach's TRAINING & REFERENCE. Bryan Syverson. Mike Murach & Associates, Inc. Joel Murach
TRAINING & REFERENCE murach's SQL Server 2012 for developers Bryan Syverson Joel Murach Mike Murach & Associates, Inc. 4340 N. Knoll Ave. Fresno, CA 93722 www.murach.com [email protected] Expanded
SQLMutation: A tool to generate mutants of SQL database queries
SQLMutation: A tool to generate mutants of SQL database queries Javier Tuya, Mª José Suárez-Cabal, Claudio de la Riva University of Oviedo (SPAIN) {tuya cabal claudio} @ uniovi.es Abstract We present a
This document is a preview generated by EVS
INTERNATIONAL STANDARD ISO 10781 Second edition 2015-08-01 Health Informatics HL7 Electronic Health Records-System Functional Model, Release 2 (EHR FM) Informatique de santé Modèle fonctionnel d un système
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
xxxxx Conformity assessment Requirements for third party certification auditing of environmental management systems - competence requirements
NEW WORK ITEM PROPOSAL Date of presentation 2011-02-25 Reference number (to be given by the Secretariat) Proposer ISO/TC 207/SC 2 ISO/TC 207 / SC 2 N 251 Secretariat NEN A proposal for a new work item
ITM661 Database Systems. Database Security and Administration
ITM661 Database Systems Database Security and Administration Outline Introduction to Database Security Issues Types of Security Threats to databases Database Security and DBA Access Protection, User Accounts,
Triggers & Packages. {INSERT [OR] UPDATE [OR] DELETE}: This specifies the DML operation.
Triggers & Packages An SQL trigger is a mechanism that automatically executes a specified PL/SQL block (referred to as the triggered action) when a triggering event occurs on the table. The triggering
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
In This Lecture. Security and Integrity. Database Security. DBMS Security Support. Privileges in SQL. Permissions and Privilege.
In This Lecture Database Systems Lecture 14 Natasha Alechina Database Security Aspects of security Access to databases Privileges and views Database Integrity View updating, Integrity constraints For more
JEFFERSON COLLEGE COURSE SYLLABUS CIS-236 SQL AND DATABASE DESIGN. 3 Credit Hours. Prepared by: Chris DeGeare CIS Instructor. Revised: 3/11/2013
JEFFERSON COLLEGE COURSE SYLLABUS CIS-236 SQL AND DATABASE DESIGN 3 Credit Hours Prepared by: Chris DeGeare CIS Instructor Revised: 3/11/2013 Dr. Mary Beth Ottinger, Division Chair, Business & Technical
[MS-WSSDM]: Windows SharePoint Services: Content Database Data Migration Communications Protocol Specification
[MS-WSSDM]: Windows SharePoint Services: Content Database Data Migration Communications Protocol Specification Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation.
INTERNATIONAL STANDARD
INTERNATIONAL STANDARD IEC 62616 Edition 1.0 2010-02 Maritime navigation and radiocommunication equipment and systems Bridge navigational watch alarm system (BNWAS) INTERNATIONAL ELECTROTECHNICAL COMMISSION
Information Technology Metamodel Framework for Interoperability (MFI) Part 9: On Demand Model Selection
ISO 2011 All rights reserved Reference number of working document: ISO/IEC JTC 1/SC 32/WG 2 N1513 Date: 2011-03-01 Reference number of document: ISO/IEC WD 19763-9 Committee identification: ISO/IEC JTC
1. INTRODUCTION TO RDBMS
Oracle For Beginners Page: 1 1. INTRODUCTION TO RDBMS What is DBMS? Data Models Relational database management system (RDBMS) Relational Algebra Structured query language (SQL) What Is DBMS? Data is one
Security Issues in the Database Language SQL W. Timothy Polk and Lawrence E. Bassham
NIST Special Publication 800-8 Security Issues in the Database Language SQL W. Timothy Polk and Lawrence E. Bassham The Database Language SQL (SQL) is a standard interface for accessing and manipulating
Information technology Programming languages Ada
Information technology Programming languages Ada AMENDMENT 1 Technologies de l'information Langages de programmation Ada AMENDEMENT 1 Amendment 1 to International Standard ISO/IEC 8652:1995 was prepared
Oracle SQL. Course Summary. Duration. Objectives
Oracle SQL Course Summary Identify the major structural components of the Oracle Database 11g Create reports of aggregated data Write SELECT statements that include queries Retrieve row and column data
Oracle Database: SQL and PL/SQL Fundamentals
Oracle University Contact Us: +966 12 739 894 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training is designed to
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
[MS-ASMS]: Exchange ActiveSync: Short Message Service (SMS) Protocol
[MS-ASMS]: Exchange ActiveSync: Short Message Service (SMS) Protocol Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications
Physical Design. Meeting the needs of the users is the gold standard against which we measure our success in creating a database.
Physical Design Physical Database Design (Defined): Process of producing a description of the implementation of the database on secondary storage; it describes the base relations, file organizations, and
D61830GC30. MySQL for Developers. Summary. Introduction. Prerequisites. At Course completion After completing this course, students will be able to:
D61830GC30 for Developers Summary Duration Vendor Audience 5 Days Oracle Database Administrators, Developers, Web Administrators Level Technology Professional Oracle 5.6 Delivery Method Instructor-led
XML for Manufacturing Systems Integration
Information Technology for Engineering & Manufacturing XML for Manufacturing Systems Integration Tom Rhodes Information Technology Laboratory Overview of presentation Introductory material on XML NIST
Language Reference Guide
Language Reference Guide InterBase XE April, 2011 Copyright 1994-2011 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All
Week 2 Unit 1: Database Schemas and Database Tables
Week 2 Unit 1: Database Schemas and Database Tables 2 Database Schemas and Database Tables The SAP HANA Repository Object management, versioning, and transport Software component delivery and patching
