B Table Descriptions and Data.

Slides:



Advertisements
Similar presentations
SEN In, Out and Beyond All About… All About... [insert company name]
Advertisements

Creating Tables. 2 home back first prev next last What Will I Learn? List and provide an example of each of the number, character, and date data types.
Occidental Petroleum PeopleSoft 8.9 HR Delta Overview June 2006.
Database Design (Data Modeling) DCO11310 Database Systems and Design By Rose Chang.
9 Copyright © 2012, Oracle and/or its affiliates. All rights reserved. Using the Set Operators Assist. Prof. Pongpisit Wuttidittachotti, Ph.D. Faculty.
Seminar #1 – Refreshing databases concepts and SQL CM036: Advanced Databases1 Seminar 1: Revisiting Databases and SQL Purpose To refresh basic concepts.
Part 1 Crystal Reports Learning the Basics. O BJECTIVES To provide information and direction to those who are responsible for FIS, HRIS and/or SIS reporting.
Seminar #3 CM036: Advanced Databases1 Seminar 4: Relational Algebra and its Simulation using SQL Purpose To understand how the relational operations are.
1 Copyright © 2004, Oracle. All rights reserved. Introduction.
Join, Subqueries and set operators. Obtaining Data from Multiple Tables EMPLOYEES DEPARTMENTS … …
MS Access. Access is a DBMS/RDMS DBMS = Database Management System RDMS = Relational Database Management System.
How can we optimize our working in Microsoft Excel?
Introduction to SQL PART Ⅰ 第一讲 Writing Basic SQL SELECT Statements.
15 Copyright © Oracle Corporation, All rights reserved. Using SET Operators.
CSED421 Database Systems Lab Join. Human Resources (HR) schema.
1 Copyright © 2005, Oracle. All rights reserved. Introduction.
Copyright © 2004, Oracle. All rights reserved. Using the Set Operators.
Relational Algebra Sample Questions.
Excel Skills for Interpreting Your Data for HR Presenter: Mary Martin.
CSCI 6442 Database Management II INTRODUCTION Copyright 2016 David C. Roberts, all rights reserved.
I Copyright © 2007, Oracle. All rights reserved. Introduction.
Howard Paul. Sequential Access Index Files and Data File Random Access.
Join CSED421 Database Systems Lab. Joining Tables Use a join to query data from more than one table. SELECTtable1.column, table2.column FROMtable1, table2.
I Copyright © 2007, Oracle. All rights reserved. Introduction.
Seminar #6 CG096 Advanced Database Technologies1 Advanced Databases Seminar 6: Implementing Relational Algebra Data Model using SQL.
Introduction. 1. The people in the company AND 2. A department in a company From the CEO to the janitor.
4 Copyright © 2011, Oracle and/or its affiliates. All rights reserved. Using Data Model Editor to Create Data Models Based on a SQL Query Data Set.
MIS 3053 Database Design & Applications The University of Tulsa Professor: Akhilesh Bajaj ER Model Lecture 3 © Akhilesh Bajaj, 2000, 2002, All Rights.
Best 20 jobs jobs sites.
My Career Path at HSBC Bank Assignment 2: My Career Path at HSBC Bank Name: Jumana AlMaghrabi ID:
Entity/Relationship Modelling
Week 11 – Data Warehouse INFOSYS 222.
Entity- Relationship (ER) Model
Introduction.
Chapter 1 Introduction.
Oracle Join Syntax.
Using the Set Operators
بسم الله الرحمن الرحيم.
HCS 341 Possible Is Everything/tutorialrank.com
BUS 303 HELP Perfect Education/ bus303help.com.
Dwight O’Neal Period 1 and 6
Entity-Relationship Model and Diagrams (continued)
Using the Set Operators
Introduction.
ERD Exercises.
Practice of ER modeling
Chapter 1 Introduction.
Displaying Data from Multiple Tables Using Joins
Entity-Relationship Modeling "Extended"
Introduction.
Oracle Join Syntax.
<Your Organization and/or Health Center Name>
Name of Your UNESCO Site
Relational Algebra Sample Questions.
Introduction.
ER Modeling Case Studies
Chapter 1 Introduction.
Chapter 1 Introduction.
Using SQL*Plus.
Chapter 9: Database Systems
Additional Practices Table Descriptions and Data.
Oracle Join Syntax.
Displaying Data from Multiple Tables
SQLPLUS: Oracle SQL Interface
Using the Set Operators
Introduction to Relational databases

Entity-Relationship Modeling "Extended"
Entity-Relationship Modeling "Extended"
IS6145 Database Analysis and Design Lecture 6: Practice with ERDs
Presentation transcript:

B Table Descriptions and Data

Human Resources (HR) Data Set JOB_GRADES GRADE_LEVEL LOWEST_SAL HIGHEST_SAL

Human Resources (HR) Data Set The Human Resources (HR) schema is part of the Oracle Common Schema that can be installed in an Oracle database. The practices in this course use the data from the HR schema. Table Descriptions REGIONS contains rows representing a region (such as Americas, Asia, and so on). COUNTRIES contains rows for countries, each of which are associated with a region. LOCATIONS contains the addresses of specific offices, warehouses, and/or production sites of a company in a particular country. DEPARTMENTS shows details of the departments in which employees work. Each department can have a relationship representing the department manager in the EMPLOYEES table. EMPLOYEES contains details about each employee who works for a department. Some employees may not be assigned to any department. JOBS contains the job types that can be held by each employee. JOB_HISTORY contains the job history of the employees. If an employee changes departments within the job or changes jobs within the department, a new row is inserted in this table with the old job information of the employee. JOB_GRADES identifies a salary range per job grade. The salary ranges do not overlap.

COUNTRIES Table DESCRIBE countries SELECT * FROM countries;

DEPARTMENTS Table DESCRIBE departments SELECT * FROM departments;

EMPLOYEES Table DESCRIBE employees SELECT * FROM employees;

EMPLOYEES Table (continued)

JOBS Table DESCRIBE jobs SELECT * FROM jobs;

JOB_GRADES Table DESCRIBE job_grades SELECT * FROM job_grades;

JOB_HISTORY Table DESCRIBE job_history SELECT * FROM job_history;

LOCATIONS Table DESCRIBE locations SELECT * FROM locations;