PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING STORAGE(INITIAL NEXT MINEXTENTS 1 MAXEXTENTS

Size: px
Start display at page:

Download "PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING STORAGE(INITIAL NEXT MINEXTENTS 1 MAXEXTENTS"

Transcription

1 -- DDL for Table ROSTER_INFO CREATE TABLE "RHAND6"."ROSTER_INFO" ( "ROSTERID" NUMBER(*,0), "PLAYERID" NUMBER(*,0), "YEAR" NUMBER(*,0), "TEAMNAME" VARCHAR2(50 BYTE), "LEAGUE" VARCHAR2(2 BYTE), "SALARY" NUMBER(*,0), "STINTS" NUMBER(*,0) ) SEGMENT CREATION IMMEDIATE PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING -- DDL for Index ROSTER_PK CREATE UNIQUE INDEX "RHAND6"."ROSTER_PK" ON "RHAND6"."ROSTER_INFO" ("PLAYERID", "YEAR", "ROSTERID") PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS

2 -- Constraints for Table ROSTER_INFO ALTER TABLE "RHAND6"."ROSTER_INFO" ADD CONSTRAINT "ROSTER_PK" PRIMARY KEY ("PLAYERID", "YEAR", "ROSTERID") USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS TABLESPACE "USERS" ENABLE; ALTER TABLE "RHAND6"."ROSTER_INFO" MODIFY ("YEAR" NOT NULL ENABLE); ALTER TABLE "RHAND6"."ROSTER_INFO" MODIFY ("PLAYERID" NOT NULL ENABLE); ALTER TABLE "RHAND6"."ROSTER_INFO" MODIFY ("ROSTERID" NOT NULL ENABLE); -- DDL for Trigger ROSTER_TRG CREATE OR REPLACE TRIGGER "RHAND6"."ROSTER_TRG" BEFORE INSERT ON ROSTER_INFO FOR EACH ROW <<COLUMN_SEQUENCES>> IF INSERTING AND :NEW.ROSTERID IS NULL THEN SELECT ROSTER_SEQ.NEXTVAL INTO :NEW.ROSTERID FROM SYS.DUAL; END IF; END COLUMN_SEQUENCES;

3 END; / ALTER TRIGGER "RHAND6"."ROSTER_TRG" ENABLE; -- DDL for Table PLAYER_INFO CREATE TABLE "RHAND6"."PLAYER_INFO" ( "PLAYERID" NUMBER(*,0), "PLAYERKEY" VARCHAR2(25 BYTE), "FIRSTNAME" VARCHAR2(25 BYTE), "LASTNAME" VARCHAR2(50 BYTE), "BATS" VARCHAR2(7 BYTE), "THROWS" VARCHAR2(7 BYTE), "BIRTHDAY" DATE, "AGE" NUMBER(*,0), "PLAYERTEAMLEAGUE" VARCHAR2(50 BYTE) ) SEGMENT CREATION IMMEDIATE PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING -- DDL for Index PLAYERINFO_PK

4 CREATE UNIQUE INDEX "RHAND6"."PLAYERINFO_PK" ON "RHAND6"."PLAYER_INFO" ("PLAYERID") PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS -- Constraints for Table PLAYER_INFO ALTER TABLE "RHAND6"."PLAYER_INFO" MODIFY ("PLAYERTEAMLEAGUE" NOT NULL ENABLE); ALTER TABLE "RHAND6"."PLAYER_INFO" ADD CONSTRAINT "PLAYERINFO_PK" PRIMARY KEY ("PLAYERID") USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS TABLESPACE "USERS" ENABLE; ALTER TABLE "RHAND6"."PLAYER_INFO" MODIFY ("PLAYERID" NOT NULL ENABLE); -- DDL for Trigger PLAYERINFO_TRG CREATE OR REPLACE TRIGGER "RHAND6"."PLAYERINFO_TRG" BEFORE INSERT ON PLAYER_INFO FOR EACH ROW <<COLUMN_SEQUENCES>>

5 NULL; END COLUMN_SEQUENCES; END; / ALTER TRIGGER "RHAND6"."PLAYERINFO_TRG" ENABLE; -- DDL for Table PITCHING_STATS CREATE TABLE "RHAND6"."PITCHING_STATS" ( "PITCHINGID" NUMBER(*,0), "ROSTERID" NUMBER(*,0), "PLAYERID" NUMBER(*,0), "YEAR" NUMBER(*,0), "G" NUMBER(*,0), "ERA" NUMBER(*,0), "GS" NUMBER(*,0), "W" NUMBER(*,0), "L" NUMBER(*,0), "WINPCT" NUMBER(*,0), "CG" NUMBER(*,0), "SV" NUMBER(*,0), "IP" NUMBER(*,0), "HA" NUMBER(*,0), "RA" NUMBER(*,0), "ER" NUMBER(*,0), "BBA" NUMBER(*,0),

6 "SOA" NUMBER(*,0), "GP" NUMBER(*,0), "HRA" NUMBER(*,0), "SHO" NUMBER(*,0), "WHIP" NUMBER(*,0), "GF" NUMBER(*,0), "BFP" NUMBER(*,0), "HBPA" NUMBER(*,0), "IBB" NUMBER(*,0), "ERAPLUS" NUMBER(*,0) ) SEGMENT CREATION IMMEDIATE PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING -- DDL for Index PITCHING_STATS_PK CREATE UNIQUE INDEX "RHAND6"."PITCHING_STATS_PK" ON "RHAND6"."PITCHING_STATS" ("PITCHINGID") PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS -- Constraints for Table PITCHING_STATS

7 ALTER TABLE "RHAND6"."PITCHING_STATS" ADD CONSTRAINT "PITCHING_STATS_PK" PRIMARY KEY ("PITCHINGID") USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS TABLESPACE "USERS" ENABLE; ALTER TABLE "RHAND6"."PITCHING_STATS" MODIFY ("PITCHINGID" NOT NULL ENABLE); -- Ref Constraints for Table PITCHING_STATS ALTER TABLE "RHAND6"."PITCHING_STATS" ADD CONSTRAINT "PITCHING_STATS_FK1" FOREIGN KEY ("PLAYERID") REFERENCES "RHAND6"."PLAYER_INFO" ("PLAYERID") ENABLE; -- DDL for Trigger PITCHING_STATS_TRG CREATE OR REPLACE TRIGGER "RHAND6"."PITCHING_STATS_TRG" BEFORE INSERT ON PITCHING_STATS FOR EACH ROW <<COLUMN_SEQUENCES>> NULL; END COLUMN_SEQUENCES;

8 END; / ALTER TRIGGER "RHAND6"."PITCHING_STATS_TRG" ENABLE; -- DDL for Table FIELDING_STATS CREATE TABLE "RHAND6"."FIELDING_STATS" ( "FIELDINGID" NUMBER(*,0), "ROSTERID" NUMBER(*,0), "PLAYERID" NUMBER(*,0), "YEAR" NUMBER(*,0), "POS" VARCHAR2(20 BYTE), "G" NUMBER(*,0), "GS" NUMBER(*,0), "INN" NUMBER(*,0), "FPCT" NUMBER(*,0), "TC" NUMBER(*,0), "PO" NUMBER(*,0), "A" NUMBER(*,0), "E" NUMBER(*,0), "DP" NUMBER(*,0) ) SEGMENT CREATION IMMEDIATE PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING

9 -- DDL for Index FIELDING_STATS_PK CREATE UNIQUE INDEX "RHAND6"."FIELDING_STATS_PK" ON "RHAND6"."FIELDING_STATS" ("FIELDINGID") PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS -- Constraints for Table FIELDING_STATS ALTER TABLE "RHAND6"."FIELDING_STATS" ADD CONSTRAINT "FIELDING_STATS_PK" PRIMARY KEY ("FIELDINGID") USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS TABLESPACE "USERS" ENABLE; ALTER TABLE "RHAND6"."FIELDING_STATS" MODIFY ("PLAYERID" NOT NULL ENABLE); ALTER TABLE "RHAND6"."FIELDING_STATS" MODIFY ("ROSTERID" NOT NULL ENABLE); ALTER TABLE "RHAND6"."FIELDING_STATS" MODIFY ("FIELDINGID" NOT NULL ENABLE); -- Ref Constraints for Table FIELDING_STATS

10 ALTER TABLE "RHAND6"."FIELDING_STATS" ADD CONSTRAINT "FIELDING_STATS_FK1" FOREIGN KEY ("PLAYERID") REFERENCES "RHAND6"."PLAYER_INFO" ("PLAYERID") ENABLE; -- DDL for Trigger FIELDING_STATS_TRG CREATE OR REPLACE TRIGGER "RHAND6"."FIELDING_STATS_TRG" BEFORE INSERT ON FIELDING_STATS FOR EACH ROW <<COLUMN_SEQUENCES>> NULL; END COLUMN_SEQUENCES; END; / ALTER TRIGGER "RHAND6"."FIELDING_STATS_TRG" ENABLE; -- DDL for Table BATTING_STATS CREATE TABLE "RHAND6"."BATTING_STATS" ( "BATTINGID" NUMBER(*,0), "ROSTERID" NUMBER(*,0), "PLAYERID" NUMBER(*,0),

11 "YEAR" NUMBER(*,0), "G" NUMBER(*,0), "AVG" NUMBER(*,0), "OPS" NUMBER(*,0), "SLG" NUMBER(*,0), "OBP" NUMBER(*,0), "AB" NUMBER(*,0), "R" NUMBER(*,0), "HITS" NUMBER(*,0), "DOUBLES" NUMBER(*,0), "TRIPLES" NUMBER(*,0), "RBI" NUMBER(*,0), "BB" NUMBER(*,0), "SO" NUMBER(*,0), "SB" NUMBER(*,0), "CS" NUMBER(*,0), "HBP" NUMBER(*,0), "SH" NUMBER(*,0), "SF" NUMBER(*,0), "IBBA" NUMBER(*,0), "OPSPLUS" NUMBER(*,0) ) SEGMENT CREATION IMMEDIATE PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING

12 -- DDL for Index BATTING_STATS_PK CREATE UNIQUE INDEX "RHAND6"."BATTING_STATS_PK" ON "RHAND6"."BATTING_STATS" ("BATTINGID") PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS -- Constraints for Table BATTING_STATS ALTER TABLE "RHAND6"."BATTING_STATS" ADD CONSTRAINT "BATTING_STATS_PK" PRIMARY KEY ("BATTINGID") USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS TABLESPACE "USERS" ENABLE; ALTER TABLE "RHAND6"."BATTING_STATS" MODIFY ("BATTINGID" NOT NULL ENABLE); -- DDL for Trigger BATTING_STATS_TRG CREATE OR REPLACE TRIGGER "RHAND6"."BATTING_STATS_TRG" BEFORE INSERT ON BATTING_STATS FOR EACH ROW

13 <<COLUMN_SEQUENCES>> IF INSERTING AND :NEW.BATTINGID IS NULL THEN SELECT BATTING_STATS_SEQ.NEXTVAL INTO :NEW.BATTINGID FROM SYS.DUAL; END IF; END COLUMN_SEQUENCES; END; / ALTER TRIGGER "RHAND6"."BATTING_STATS_TRG" ENABLE;

Configure ODBC on ISE 2.3 with Oracle Database

Configure ODBC on ISE 2.3 with Oracle Database Configure ODBC on ISE 2.3 with Oracle Database Contents Introduction Prerequisites Requirements Components Used Configure Step 1. Oracle Basic Configuration Step 2. ISE Basic Configuration Step 3. Configure

More information

Schema Comparison Report

Schema Comparison Report 1 - Overview for V123_V122_Comparison Name: Project: Job Host: Start Time: Elapsed Time: V123_V122_Comparison Change Management DHS1568177 Jul 26, 2012 2:19 PM 00:30 (mm:ss) 2 - Source Name: Type: Archive

More information

Schema Comparison Report

Schema Comparison Report 1 - Overview for V142_V141_Comparison Project: Job Host: Start Time: Elapsed Time: V142_V141_Comparison Change Management DHS1568177 May 14, 2014 1:38 PM 00:21 (mm:ss) 2 - Source Archive Creation Date:

More information

HW 6+7 Advanced: CS 110X C 2013

HW 6+7 Advanced: CS 110X C 2013 HW 6+7 Advanced: CS 110X C 2013 Note: This homework (and all remaining homework assignments) is a partner homework and must be completed by each partner pair. When you complete this assignment, you must

More information

04 Storage management 15/07/17 12:34 AM. Storage management

04 Storage management 15/07/17 12:34 AM. Storage management Storage management 1 "High water" and "low water" marks PCTFREE and PCTUSED parameters PCTFREE ("high water" mark) and PCTUSED ("low water" mark) parameters control the use of free space for inserts and

More information

Oracle Alter Table Add Unique Constraint Using Index Tablespace

Oracle Alter Table Add Unique Constraint Using Index Tablespace Oracle Alter Table Add Unique Constraint Using Index Tablespace You must also have space quota in the tablespace in which space is to be acquired in Additional Prerequisites for Constraints and Triggers

More information

SecureFiles Migration O R A C L E W H I T E P A P E R F E B R U A R Y

SecureFiles Migration O R A C L E W H I T E P A P E R F E B R U A R Y SecureFiles Migration O R A C L E W H I T E P A P E R F E B R U A R Y 2 0 1 8 Table of Contents Disclaimer 1 Introduction 2 Using SecureFiles 2 Migration Techniques 3 Migration with Online Redefinition

More information

Data Modelling and Databases. Exercise Session 7: Integrity Constraints

Data Modelling and Databases. Exercise Session 7: Integrity Constraints Data Modelling and Databases Exercise Session 7: Integrity Constraints 1 Database Design Textual Description Complete Design ER Diagram Relational Schema Conceptual Modeling Logical Modeling Physical Modeling

More information

Private Institute of Aga NETWORK DATABASE LECTURER NIYAZ M. SALIH

Private Institute of Aga NETWORK DATABASE LECTURER NIYAZ M. SALIH Private Institute of Aga 2018 NETWORK DATABASE LECTURER NIYAZ M. SALIH Data Definition Language (DDL): String data Types: Data Types CHAR(size) NCHAR(size) VARCHAR2(size) Description A fixed-length character

More information

! "# " "$ %&' ($$$ )%&' *+),%&' -.*&*/

! #  $ %&' ($$$ )%&' *+),%&' -.*&*/ 1 ! "# " "$ %&' ($$$ )%&' *+),%&' -.*&*/ 2 010232 %&'24& 0506260 021 3 4 &*7+8 9!"#$%#&: 5 Probably You Do Not Need to Actually Design Anything 6 4*+/+.; "#&%$' 7 "#&%$' 4*+/+.; () OBJECT *object_id name

More information

C. Use the TO_CHAR function around SYSDATE, that is, 1_date := TO_CHAR (SYSDATE).

C. Use the TO_CHAR function around SYSDATE, that is, 1_date := TO_CHAR (SYSDATE). Volume: 75 Questions Question: 1 Examine this code: Users of this function may set different date formats in their sessions. Which two modifications must be made to allow the use of your session s date

More information

EGCI 321: Database Systems. Dr. Tanasanee Phienthrakul

EGCI 321: Database Systems. Dr. Tanasanee Phienthrakul 1 EGCI 321: Database Systems Dr. Tanasanee Phienthrakul 2 Chapter 10 Data Definition Language (DDL) 3 Basic SQL SQL language Considered one of the major reasons for the commercial success of relational

More information

ORACLE 8 OBJECT ORIENTED TECHNOLOGY ORACLE SOFTWARE STRUCTURES SERVER SIDE BACKGROUND PROCESSES DATABASE SERVER AND DATABASE INSTANCE

ORACLE 8 OBJECT ORIENTED TECHNOLOGY ORACLE SOFTWARE STRUCTURES SERVER SIDE BACKGROUND PROCESSES DATABASE SERVER AND DATABASE INSTANCE ORACLE 8 IS ORDBMS HANDLES VLDB - GIGABYTES/TERABYTES 10,000 CONCURRENT USERS PARTITIONED TABLES AND INDEXES SINGLE DATA BLOCK IS INACCESSSIBLE CAN ACCESS MULTIPLE PARTITION IN PARALLEL FOR CONCURRENT

More information

Problem Set 5 - BABIP

Problem Set 5 - BABIP Problem Set 5 - BABIP Assignment 1. Use a join command to link the Batting and Master data frames in the Lahman package. Make a new column called name in which you combine the first and last name of each

More information

Support Vector Machines: Brief Overview" November 2011 CPSC 352

Support Vector Machines: Brief Overview November 2011 CPSC 352 Support Vector Machines: Brief Overview" Outline Microarray Example Support Vector Machines (SVMs) Software: libsvm A Baseball Example with libsvm Classifying Cancer Tissue: The ALL/AML Dataset Golub et

More information

CMPT 354: Database System I. Lecture 2. Relational Model

CMPT 354: Database System I. Lecture 2. Relational Model CMPT 354: Database System I Lecture 2. Relational Model 1 Outline An overview of data models Basics of the Relational Model Define a relational schema in SQL 2 Outline An overview of data models Basics

More information

Oracle Data Pump Internals

Oracle Data Pump Internals Oracle Data Pump Internals Dean Gagne Oracle USA Nashua NH USA Keywords: Oracle Data Pump, export, import, transportable tablespace, parallel, restart Introduction Oracle Data Pump was a new feature introduced

More information

Keys are fields in a table which participate in below activities in RDBMS systems:

Keys are fields in a table which participate in below activities in RDBMS systems: Keys are fields in a table which participate in below activities in RDBMS systems: 1. To create relationships between two tables. 2. To maintain uniqueness in a table. 3. To keep consistent and valid data

More information

SQL Server 2008 Tutorial 3: Database Creation

SQL Server 2008 Tutorial 3: Database Creation SQL Server 2008 Tutorial 3: Database Creation IT 5101 Introduction to Database Systems J.G. Zheng Fall 2011 DDL Action in SQL Server Creating and modifying structures using the graphical interface Table

More information

SWEN-220 Mathematical Models of Software. Conceptual to Relational Mapping

SWEN-220 Mathematical Models of Software. Conceptual to Relational Mapping SWEN-220 Mathematical Models of Software Conceptual to Relational Mapping 1 Relational (Logical) Design Logical design is where a conceptual design is mapped to a relational schema. Entry = Conceptual

More information

Assignment 7: Integrity Constraints

Assignment 7: Integrity Constraints Data Modelling and Databases Exercise dates: April 19, 2018 Ce Zhang, Gustavo Alonso Last update: April 19, 2018 Spring Semester 2018 Head TA: Ingo Müller Assignment 7: Integrity Constraints This assignment

More information

An Introduction to Structured Query Language

An Introduction to Structured Query Language An Introduction to Structured Query Language Grant Weddell Cheriton School of Computer Science University of Waterloo CS 348 Introduction to Database Management Winter 2017 CS 348 (Intro to DB Mgmt) SQL

More information

MySQL Introduction. By Prof. B.A.Khivsara

MySQL Introduction. By Prof. B.A.Khivsara MySQL Introduction By Prof. B.A.Khivsara Note: The material to prepare this presentation has been taken from internet and are generated only for students reference and not for commercial use. Outline Design

More information

An Introduction to Structured Query Language

An Introduction to Structured Query Language An Introduction to Structured Query Language Grant Weddell Cheriton School of Computer Science University of Waterloo CS 348 Introduction to Database Management Spring 2016 CS 348 (Intro to DB Mgmt) SQL

More information

WHAT IS SQL. Database query language, which can also: Define structure of data Modify data Specify security constraints

WHAT IS SQL. Database query language, which can also: Define structure of data Modify data Specify security constraints SQL KEREM GURBEY WHAT IS SQL Database query language, which can also: Define structure of data Modify data Specify security constraints DATA DEFINITION Data-definition language (DDL) provides commands

More information

The Relational Model

The Relational Model The Relational Model What is the Relational Model Relations Domain Constraints SQL Integrity Constraints Translating an ER diagram to the Relational Model and SQL Views A relational database consists

More information

An Introduction to Structured Query Language

An Introduction to Structured Query Language An Introduction to Structured Query Language Alexandra Roatiş David R. Cheriton School of Computer Science University of Waterloo CS 348 Introduction to Database Management Winter 2016 CS 348 SQL Winter

More information

Working with Columns, Characters and Rows. Copyright 2008, Oracle. All rights reserved.

Working with Columns, Characters and Rows. Copyright 2008, Oracle. All rights reserved. Working with Columns, Characters and Rows What Will I Learn? In this lesson, you will learn to: Apply the concatenation operator to link columns to other columns, arithmetic expressions or constant values

More information

Alper VAHAPLAR

Alper VAHAPLAR Alper VAHAPLAR 2017 2018 DDL (Data Definition Language) Database and table creation, update and delete operations, DML (Data Manipulation Language) Data Entry, query, update and delete operations, DCL

More information

GFC_ARCH_MGMT: SEGMENT MANAGEMENT UTILITY PACKAGE

GFC_ARCH_MGMT: SEGMENT MANAGEMENT UTILITY PACKAGE T E C H N I C A L N O T E GFC_ARCH_MGMT: SEGMENT MANAGEMENT UTILITY PACKAGE Prepared By David Kurtz, Go-Faster Consultancy Ltd. Technical Note Version 0.08 Tuesday 15 July 2014 (E-mail: david.kurtz@go-faster.co.uk,

More information

Oracle 1z z0-146 Oracle Database 11g: Advanced PL/SQL. Practice Test. Version QQ:

Oracle 1z z0-146 Oracle Database 11g: Advanced PL/SQL. Practice Test. Version QQ: Oracle 1z0-146 1z0-146 Oracle Database 11g: Advanced PL/SQL Practice Test Version 1.1 QUESTION NO: 1 Which two types of metadata can be retrieved by using the various procedures in the DBMS_METADATA PL/SQL

More information

Homework Assignment 2. Due Date: October 21th, :30pm (noon) CS425 - Database Organization Results

Homework Assignment 2. Due Date: October 21th, :30pm (noon) CS425 - Database Organization Results Name CWID Homework Assignment 2 Due Date: October 21th, 2014 12:30pm (noon) CS425 - Database Organization Results Please leave this empty! 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 2.9 2.10 2.11 2.12 2.15 2.16 2.17

More information

DB Creation with SQL DDL

DB Creation with SQL DDL DB Creation with SQL DDL Outline SQL Concepts Data Types Schema/Table/View Creation Transactions and Access Control Objectives of SQL Ideally, database language should allow user to: create the database

More information

3.1. Keys: Super Key, Candidate Key, Primary Key, Alternate Key, Foreign Key

3.1. Keys: Super Key, Candidate Key, Primary Key, Alternate Key, Foreign Key Unit 3: Types of Keys & Data Integrity 3.1. Keys: Super Key, Candidate Key, Primary Key, Alternate Key, Foreign Key Different Types of SQL Keys A key is a single or combination of multiple fields in a

More information

Database Foundations. 6-3 Data Definition Language (DDL) Copyright 2015, Oracle and/or its affiliates. All rights reserved.

Database Foundations. 6-3 Data Definition Language (DDL) Copyright 2015, Oracle and/or its affiliates. All rights reserved. Database Foundations 6-3 Roadmap You are here Introduction to Oracle Application Express Structured Query Language (SQL) Data Definition Language (DDL) Data Manipulation Language (DML) Transaction Control

More information

Chapter 13 : Informatics Practices. Class XI ( As per CBSE Board) SQL Commands. New Syllabus Visit : python.mykvs.in for regular updates

Chapter 13 : Informatics Practices. Class XI ( As per CBSE Board) SQL Commands. New Syllabus Visit : python.mykvs.in for regular updates Chapter 13 : Informatics Practices Class XI ( As per CBSE Board) SQL Commands New Syllabus 2018-19 SQL SQL is an acronym of Structured Query Language.It is a standard language developed and used for accessing

More information

INDEX. 1 Basic SQL Statements. 2 Restricting and Sorting Data. 3 Single Row Functions. 4 Displaying data from multiple tables

INDEX. 1 Basic SQL Statements. 2 Restricting and Sorting Data. 3 Single Row Functions. 4 Displaying data from multiple tables INDEX Exercise No Title 1 Basic SQL Statements 2 Restricting and Sorting Data 3 Single Row Functions 4 Displaying data from multiple tables 5 Creating and Managing Tables 6 Including Constraints 7 Manipulating

More information

CSE 530A. ER Model to Relational Schema. Washington University Fall 2013

CSE 530A. ER Model to Relational Schema. Washington University Fall 2013 CSE 530A ER Model to Relational Schema Washington University Fall 2013 Relational Model A relational database consists of a group of relations (a.k.a., tables) A relation (table) is a set of tuples (rows)

More information

ACS-3902 Fall Ron McFadyen 3D21 Slides are based on chapter 5 (7 th edition) (chapter 3 in 6 th edition)

ACS-3902 Fall Ron McFadyen 3D21 Slides are based on chapter 5 (7 th edition) (chapter 3 in 6 th edition) ACS-3902 Fall 2016 Ron McFadyen 3D21 ron.mcfadyen@acs.uwinnipeg.ca Slides are based on chapter 5 (7 th edition) (chapter 3 in 6 th edition) 1 The Relational Data Model and Relational Database Constraints

More information

Oracle 1Z Oracle9i: Program with PL/SQL. Download Full Version :

Oracle 1Z Oracle9i: Program with PL/SQL. Download Full Version : Oracle 1Z0-147 Oracle9i: Program with PL/SQL Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-147 Answer: C QUESTION: 118 Which two describe a stored procedure? (Choose two.) A.

More information

IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps://

IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps:// IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps://www.certqueen.com Exam : 1Z0-146 Title : Oracle database 11g:advanced pl/sql Version : Demo 1 / 9 1.The database instance was

More information

An Introduction to Structured Query Language

An Introduction to Structured Query Language An Introduction to Structured Query Language Grant Weddell David R. Cheriton School of Computer Science University of Waterloo CS 348 Introduction to Database Management Spring 2012 CS 348 (Intro to DB

More information

Using DDL Statements to Create and Manage Tables. Copyright 2004, Oracle. All rights reserved.

Using DDL Statements to Create and Manage Tables. Copyright 2004, Oracle. All rights reserved. Using DDL Statements to Create and Manage Tables Copyright 2004, Oracle. All rights reserved. Objectives After completing this lesson, you should be able to do the following: Categorize the main database

More information

An Introduction to Structured Query Language

An Introduction to Structured Query Language An Introduction to Structured Query Language Grant Weddell David R. Cheriton School of Computer Science University of Waterloo CS 348 Introduction to Database Management Spring 2012 CS 348 (Intro to DB

More information

E-R Diagram to Relational Schema. Translating Entity-Relationship to Relational Tables. Representing Weak Entity Sets. Representing Strong Entity Sets

E-R Diagram to Relational Schema. Translating Entity-Relationship to Relational Tables. Representing Weak Entity Sets. Representing Strong Entity Sets E-R Diagram to Relational Schema Translating Entity-Relationship to Relational Tables Fall 2015 David Toman School of Computer Science University of Waterloo Main ideas: Each entity set maps to a new table

More information

CLASS DISCUSSION AND NOTES

CLASS DISCUSSION AND NOTES Mon CLASS DISCUSSION AND NOTES October 2009 Tue Wed Thu Fri 19 20 21 22 23 AH-6; PBL & Project Peer Evaluations Chap. 7 SQL/DB Construction AH-6; PBL & Project Peer Evaluations Chap. 7 SQL/DB Construction

More information

Using DDL Statements to Create and Manage Tables. Copyright 2004, Oracle. All rights reserved.

Using DDL Statements to Create and Manage Tables. Copyright 2004, Oracle. All rights reserved. Using DDL Statements to Create and Manage Tables Copyright 2004, Oracle. All rights reserved. Objectives After completing this lesson, you should be able to do the following: Categorize the main database

More information

Chapter 1 SQL and Data

Chapter 1 SQL and Data Chapter 1 SQL and Data What is SQL? Structured Query Language An industry-standard language used to access & manipulate data stored in a relational database E. F. Codd, 1970 s IBM 2 What is Oracle? A relational

More information

Database Technology Introduction. Heiko Paulheim

Database Technology Introduction. Heiko Paulheim Database Technology Introduction Outline The Need for Databases Data Models Relational Databases Database Design Storage Manager Query Processing Transaction Manager Introduction to the Relational Model

More information

ORACLE 12C NEW FEATURE. A Resource Guide NOV 1, 2016 TECHGOEASY.COM

ORACLE 12C NEW FEATURE. A Resource Guide NOV 1, 2016 TECHGOEASY.COM ORACLE 12C NEW FEATURE A Resource Guide NOV 1, 2016 TECHGOEASY.COM 1 Oracle 12c New Feature MULTITENANT ARCHITECTURE AND PLUGGABLE DATABASE Why Multitenant Architecture introduced with 12c? Many Oracle

More information

Relational Data Model. Christopher Simpkins

Relational Data Model. Christopher Simpkins Relational Data Model Christopher Simpkins 1 / 22 Relational Data Model A relation schema R(A a,..., A n ) is a relation name R and a list of attributes A 1,..., A n. Each attribute A i is the name of

More information

Translating Entity-Relationship to Relational Tables

Translating Entity-Relationship to Relational Tables Translating Entity-Relationship to Relational Tables Spring 2018 School of Computer Science University of Waterloo Databases CS348 (University of Waterloo) ER to Relational 1 / 39 E-R Diagram to Relational

More information

Translating Entity-Relationship to Relational Tables

Translating Entity-Relationship to Relational Tables Translating Entity-Relationship to Relational Tables Fall 2017 School of Computer Science University of Waterloo Databases CS348 (University of Waterloo) ER to Relational 1 / 39 Outline 1 ER to Relational

More information

Advanced SQL. Nov 21, CS445 Pacific University 1

Advanced SQL. Nov 21, CS445 Pacific University 1 Advanced SQL Nov 21, 2017 http://zeus.cs.pacificu.edu/chadd/cs445f17/advancedsql.tar.gz Pacific University 1 Topics Views Triggers Stored Procedures Control Flow if / case Binary Data Pacific University

More information

QUIZ 1 REVIEW SESSION DATABASE MANAGEMENT SYSTEMS

QUIZ 1 REVIEW SESSION DATABASE MANAGEMENT SYSTEMS QUIZ 1 REVIEW SESSION DATABASE MANAGEMENT SYSTEMS SCHEMA DESIGN & RELATIONAL ALGEBRA A database schema is the skeleton structure that represents the logical view of the entire database Logical design of

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

Tables From Existing Tables

Tables From Existing Tables Creating Tables From Existing Tables After completing this module, you will be able to: Create a clone of an existing table. Create a new table from many tables using a SQL SELECT. Define your own table

More information

Assignment 6: SQL III Solution

Assignment 6: SQL III Solution Data Modelling and Databases Exercise dates: April 12/April 13, 2018 Ce Zhang, Gustavo Alonso Last update: April 16, 2018 Spring Semester 2018 Head TA: Ingo Müller Assignment 6: SQL III Solution This assignment

More information

Structure Query Language (SQL)

Structure Query Language (SQL) Structure Query Language (SQL) 1 6.12.2 OR operator OR operator is also used to combine multiple conditions with Where clause. The only difference between AND and OR is their behavior. When we use AND

More information

Chapter 2: Intro to Relational Model

Chapter 2: Intro to Relational Model Non è possibile visualizzare l'immagine. Chapter 2: Intro to Relational Model Database System Concepts, 6 th Ed. See www.db-book.com for conditions on re-use Example of a Relation attributes (or columns)

More information

Oracle Tables TECHGOEASY.COM

Oracle Tables TECHGOEASY.COM Oracle Tables TECHGOEASY.COM 1 Oracle Tables WHAT IS ORACLE DATABASE TABLE? -Tables are the basic unit of data storage in an Oracle Database. Data is stored in rows and columns. -A table holds all the

More information

Oracle9i DBA Fundamentals I

Oracle9i DBA Fundamentals I Oracle9i DBA Fundamentals I Volume 2 Student Guide D11321GC10 Production 1.0 May 2001 D32644 Authors Sarath Chandran Marie St. Gelais S Matt Taylor Jr Technical Reviewers Howard Bradley Ruth Baylis Paul

More information

Database Management Systems,

Database Management Systems, Database Management Systems SQL Query Language (1) 1 Topics Introduction SQL History Domain Definition Elementary Domains User-defined Domains Creating Tables Constraint Definition INSERT Query SELECT

More information

Database Programming with SQL

Database Programming with SQL Database Programming with SQL 14-1 Objectives This lesson covers the following objectives: Define the term "constraint" as it relates to data integrity State when it is possible to define a constraint

More information

GridDB Advanced Edition SQL reference

GridDB Advanced Edition SQL reference GMA022C1 GridDB Advanced Edition SQL reference Toshiba Solutions Corporation 2016 All Rights Reserved. Introduction This manual describes how to write a SQL command in the GridDB Advanced Edition. Please

More information

Seminar: Presenter: Oracle Database Objects Internals. Oren Nakdimon.

Seminar: Presenter: Oracle Database Objects Internals. Oren Nakdimon. Seminar: Oracle Database Objects Internals Presenter: Oren Nakdimon www.db-oriented.com oren@db-oriented.com 054-4393763 @DBoriented 1 Oren Nakdimon Who Am I? Chronology by Oracle years When What Where

More information

SQL Commands & Mongo DB New Syllabus

SQL Commands & Mongo DB New Syllabus Chapter 15 : Computer Science Class XI ( As per CBSE Board) SQL Commands & Mongo DB New Syllabus 2018-19 SQL SQL is an acronym of Structured Query Language.It is a standard language developed and used

More information

Part 4: B-Tree Indexes

Part 4: B-Tree Indexes 4. B-Tree Indexes 4-1 References: Part 4: B-Tree Indexes Elmasri/Navathe: Fundamentals of Database Systems, 3nd Ed., 6. Index Structures for Files, 16.3 Physical Database Design in Relational Databases,

More information

CUBE, ROLLUP, AND MATERIALIZED VIEWS: MINING ORACLE GOLD John Jay King, King Training Resources

CUBE, ROLLUP, AND MATERIALIZED VIEWS: MINING ORACLE GOLD John Jay King, King Training Resources CUBE, ROLLUP, AND MATERIALIZED VIEWS: MINING ORACLE GOLD John Jay, Training Resources Abstract: Oracle8i provides new features that reduce the costs of summary queries and provide easier summarization.

More information

Downloaded from

Downloaded from Lesson 16: Table and Integrity Constraints Integrity Constraints are the rules that a database must follow at all times. Various Integrity constraints are as follows:- 1. Not Null: It ensures that we cannot

More information

Db2 Sql Alter Table Add Column Default Value

Db2 Sql Alter Table Add Column Default Value Db2 Sql Alter Table Add Column Default Value The RazorSQL alter table tool includes an Add Column option for adding were can I modify de NULL & DEFAULT default values for DB2 V9.1 for z/os 1.11. Adds or

More information

Lab # 2. Data Definition Language (DDL) Eng. Alaa O Shama

Lab # 2. Data Definition Language (DDL) Eng. Alaa O Shama The Islamic University of Gaza Faculty of Engineering Department of Computer Engineering ECOM 4113: Database Lab Lab # 2 Data Definition Language (DDL) Eng. Alaa O Shama October, 2015 Objective To be familiar

More information

Enhancements and New Features in Oracle 12c Summarized

Enhancements and New Features in Oracle 12c Summarized Enhancements and New Features in Oracle 12c Summarized In this blog post I would be highlighting few of the features that are now available on Oracle Database 12cRelease. Here listing below in a summarized

More information

Databases (MariaDB/MySQL) CS401, Fall 2015

Databases (MariaDB/MySQL) CS401, Fall 2015 Databases (MariaDB/MySQL) CS401, Fall 2015 Database Basics Relational Database Method of structuring data as tables associated to each other by shared attributes. Tables (kind of like a Java class) have

More information

Research on Spatial Database Design and Tuning Based on Oracle and ARCSDE

Research on Spatial Database Design and Tuning Based on Oracle and ARCSDE Research on Spatial Database Design and Tuning Based on Oracle and ARCSDE Neeraj Kumar Parashar Shekhawati Institute of Technology,Sikar Email: neerajparashar333@gmail.com Sikar-332001, India Abstract:

More information

Data Manipulation (DML) and Data Definition (DDL)

Data Manipulation (DML) and Data Definition (DDL) Data Manipulation (DML) and Data Definition (DDL) 114 SQL-DML Inserting Tuples INSERT INTO REGION VALUES (6,'Antarctica','') INSERT INTO NATION (N_NATIONKEY, N_NAME, N_REGIONKEY) SELECT NATIONKEY, NAME,

More information

The "Parcels" Database Schema

The Parcels Database Schema The "Parcels" Database Schema These are the SQL statements needed to create the tables and indexes in the "Parcels" database (without the rows containing the data. DROP TABLE "PARCELS" CASCADE CONSTRAINTS;

More information

varchar(30), Primary Key (name))engine=innodb; bigint not null auto_increment, Primary Key (accountid))engine=innodb;

varchar(30), Primary Key (name))engine=innodb; bigint not null auto_increment, Primary Key (accountid))engine=innodb; DDL commands to create Relational schema create table Items( name photo date publisherid varchar(150), Primary Key (name))engine=innodb; create table Users ( username email password rateavg bigint not

More information

CS/INFO 4154: Analytics-driven Game Design

CS/INFO 4154: Analytics-driven Game Design CS/INFO 4154: Analytics-driven Game Design Class 20: SQL Final Course Deadlines We will not meet during the scheduled exam time Final report will be due at the end of exam time Cornell cannot delete exam

More information

UBC Graduate Information System (GIS)

UBC Graduate Information System (GIS) UBC Graduate Information System (GIS) Project Design University of British Columbia Okanagan COSC 304 Fall 2009 Version: 1.1 Date: 11/02/2009 Project Team Kyle Kotowick () Andrew Campbell () Document Control

More information

Database Foundations. 6-4 Data Manipulation Language (DML) Copyright 2015, Oracle and/or its affiliates. All rights reserved.

Database Foundations. 6-4 Data Manipulation Language (DML) Copyright 2015, Oracle and/or its affiliates. All rights reserved. Database Foundations 6-4 Roadmap You are here Introduction to Oracle Application Express Structured Query Language (SQL) Data Definition Language (DDL) Data Manipulation Language (DML) Transaction Control

More information

Exam code: Exam name: Database Fundamentals. Version 16.0

Exam code: Exam name: Database Fundamentals. Version 16.0 98-364 Number: 98-364 Passing Score: 800 Time Limit: 120 min File Version: 16.0 Exam code: 98-364 Exam name: Database Fundamentals Version 16.0 98-364 QUESTION 1 You have a table that contains the following

More information

Data about data is database Select correct option: True False Partially True None of the Above

Data about data is database Select correct option: True False Partially True None of the Above Within a table, each primary key value. is a minimal super key is always the first field in each table must be numeric must be unique Foreign Key is A field in a table that matches a key field in another

More information

XDM TEST DATA PROVISION & DATA MIGRATION. UBS Hainer GmbH, the IBM Business Partner

XDM TEST DATA PROVISION & DATA MIGRATION. UBS Hainer GmbH, the IBM Business Partner TEST DATA PROVISION & DATA MIGRATION Decoupling: Data Security & Consistency Production DB2, Oracle, etc. Clone Preproduction DB2, Oracle, etc. Copies Test Environments 2 Row Level Processing Unit Tests

More information

IT360: Applied Database Systems. SQL: Structured Query Language DDL and DML (w/o SELECT) (Chapter 7 in Kroenke) SQL: Data Definition Language

IT360: Applied Database Systems. SQL: Structured Query Language DDL and DML (w/o SELECT) (Chapter 7 in Kroenke) SQL: Data Definition Language IT360: Applied Database Systems SQL: Structured Query Language DDL and DML (w/o SELECT) (Chapter 7 in Kroenke) 1 Goals SQL: Data Definition Language CREATE ALTER DROP SQL: Data Manipulation Language INSERT

More information

DATABASE MANAGEMENT SYSTEMS

DATABASE MANAGEMENT SYSTEMS DATABASE MANAGEMENT SYSTEMS Associate Professor Dr. Raed Ibraheem Hamed University of Human Development, College of Science and Technology Departments of IT and Computer Science 2015 2016 1 The ALTER TABLE

More information

Sql Server Syllabus. Overview

Sql Server Syllabus. Overview Sql Server Syllabus Overview This SQL Server training teaches developers all the Transact-SQL skills they need to create database objects like Tables, Views, Stored procedures & Functions and triggers

More information

Index. Accent Sensitive (AS), 20 Aggregate functions, 286 Atomicity consistency isolation durability (ACID), 265

Index. Accent Sensitive (AS), 20 Aggregate functions, 286 Atomicity consistency isolation durability (ACID), 265 Index A Accent Sensitive (AS), 20 Aggregate functions, 286 Atomicity consistency isolation durability (ACID), 265 B Balanced (B)-Trees clustered index, 237 non-clustered index, 239 BULK INSERT statement

More information

Oracle 1Z MySQL 5.6 Developer.

Oracle 1Z MySQL 5.6 Developer. Oracle 1Z0-882 MySQL 5.6 Developer http://killexams.com/exam-detail/1z0-882 SELECT... WHERE DATEDIFF (dateline, 2013-01-01 ) = 0 C. Use numeric equivalents for comparing the two dates: SELECT...WHERE MOD(UNIX_TIMESTAMP

More information

UBC Graduate Information System (GIS)

UBC Graduate Information System (GIS) UBC Graduate Information System (GIS) Project Design University of British Columbia Okanagan COSC 304 Fall 2009 Version: 1.3 Date: 11/22/2009 Project Team Kyle Kotowick Andrew Campbell Document Control

More information

DBA_VIEWS DBA_SEQUENCES

DBA_VIEWS DBA_SEQUENCES Findexesontosabb táblák, nézetek DBA_OBJECTS/ALL_OBJECT OWNER (char) OBJECT_NAME (char) OBJECT_ID (number) OBJECT_TYPE (char) TABLE/INDEX/TRIGGER/VIEW CREATED létrehozva (dátum) LAST_DDL_TIME módosítva

More information

CIS430 /CIS530 Lab Assignment 6

CIS430 /CIS530 Lab Assignment 6 CIS430 /CIS530 Lab Assignment 6 1. Drop constraints for Employee and Department tables. 2. Create triggers to implement constraint EMPDEPTFK in Table Employee based on the following rules as defined in

More information

SQL Data Definition Language: Create and Change the Database Ray Lockwood

SQL Data Definition Language: Create and Change the Database Ray Lockwood Introductory SQL SQL Data Definition Language: Create and Change the Database Pg 1 SQL Data Definition Language: Create and Change the Database Ray Lockwood Points: DDL statements create and alter the

More information

C Examcollection.Premium.Exam.58q

C Examcollection.Premium.Exam.58q C2090-610.Examcollection.Premium.Exam.58q Number: C2090-610 Passing Score: 800 Time Limit: 120 min File Version: 32.2 http://www.gratisexam.com/ Exam Code: C2090-610 Exam Name: DB2 10.1 Fundamentals Visualexams

More information

Database and table creation

Database and table creation Database and table creation Introduction SQL - Structured Query Language used to create, modify databases, and to place and retrieve data from databases. SQL was developed in the 70s at IBM. It has become

More information

CGS 3066: Spring 2017 SQL Reference

CGS 3066: Spring 2017 SQL Reference CGS 3066: Spring 2017 SQL Reference Can also be used as a study guide. Only covers topics discussed in class. This is by no means a complete guide to SQL. Database accounts are being set up for all students

More information

Relational Model. Courses B0B36DBS, A4B33DS, A7B36DBS: Database Systems. Lecture 02: Martin Svoboda

Relational Model. Courses B0B36DBS, A4B33DS, A7B36DBS: Database Systems. Lecture 02: Martin Svoboda Courses B0B36DBS, A4B33DS, A7B36DBS: Database Systems Lecture 02: Relational Model Martin Svoboda 28. 2. 2017 Faculty of Electrical Engineering, Czech Technical University in Prague Lecture Outline Logical

More information

Fundamentals of Database Systems

Fundamentals of Database Systems Fundamentals of Database Systems Assignment: 1 Due Date: 8th August, 2017 Instructions This question paper contains 15 questions in 5 pages. Q1: The users are allowed to access different parts of data

More information

VERSION. Version Date Description. Estimate size of B-tree Indexes ! " # $$% & ' ( )*(!+ $ &-+ / ! 5 '9

VERSION. Version Date Description. Estimate size of B-tree Indexes !  # $$% & ' ( )*(!+ $ &-+ / ! 5 '9 VERSION Version Date Description! " # $$% & ' ( )*(!+, -./01))( -#*** $ &-+ / 2 3 4 5 2 62 25 7 8! 5 '9!"-" 5 27/12/2005 Guy Lambregts OCP DBA Steria Benelux Page : 2 1. INTRODUCTION...4 2. HOW MANY LEAF

More information

CS 186 Midterm, Spring 2003 Page 1

CS 186 Midterm, Spring 2003 Page 1 UNIVERSITY OF CALIFORNIA College of Engineering Department of EECS, Computer Science Division CS 186 Spring 2003 J. Hellerstein Midterm Midterm Exam: Introduction to Database Systems This exam has five

More information