 CONACT UC:  Magnific training  +91-9052666559  

Slides:



Advertisements
Similar presentations
9 Creating and Managing Tables. Objectives After completing this lesson, you should be able to do the following: Describe the main database objects Create.
Advertisements

Data Definition Language (DDL)
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.
Virtual training week 4 structured query language (SQL)
Copyright  Oracle Corporation, All rights reserved. 10 Creating and Managing Tables.
Introduction to Structured Query Language (SQL)
Introduction to Structured Query Language (SQL)
Introduction to Oracle9i: SQL1 Basic SQL SELECT Statements.
A Guide to Oracle9i1 Using SQL Queries to Insert, Update, Delete, and View Data Chapter 3.
Chapter 3: Using SQL Queries to Insert, Update, Delete, and View Data
Introduction to Structured Query Language (SQL)
Chapter 5 Data Manipulation and Transaction Control Oracle 10g: SQL
ORACLE ONLINE TRAINING Contact our Support Team : SOFTNSOL India: Skype id : softnsoltrainings id:
Guide to Oracle10G1 Using SQL Queries to Insert, Update, Delete, and View Data Chapter 3.
Chapter 6 Additional Database Objects
Introduction to SEQUEL. What is SEQUEL? Acronym for Structural English Query Language Acronym for Structural English Query Language Standard language.
Chapter 9 Joining Data from Multiple Tables
11 Copyright © 2007, Oracle. All rights reserved. Creating Other Schema Objects.
Chapter 6 Additional Database Objects Oracle 10g: SQL.
CPS120: Introduction to Computer Science Lecture 19 Introduction to SQL.
10 Copyright © 2009, Oracle. All rights reserved. Using DDL Statements to Create and Manage Tables.
SQL (DDL & DML Commands)
SQL SQL Server : Overview SQL : Overview Types of SQL Database : Creation Tables : Creation & Manipulation Data : Creation & Manipulation Data : Retrieving.
1 Structured Query Language (SQL). 2 Contents SQL – I SQL – II SQL – III SQL – IV.
10 Creating and Managing Tables Objectives At the end of this lesson, you will be able to: Describe the main database objects Create tables Describe.
7 1 Chapter 7 Introduction to Structured Query Language (SQL) Database Systems: Design, Implementation, and Management, Seventh Edition, Rob and Coronel.
Quick review of SQL And conversion to Oracle SQL.
10-1 Copyright  Oracle Corporation, All rights reserved. Database Objects ObjectDescription TableBasic unit of storage; composed of rows and columns.
Nitin Singh/AAO RTI ALLAHABAD 1 SQL Nitin Singh/AAO RTI ALLAHABAD 2 OBJECTIVES §What is SQL? §Types of SQL commands and their function §Query §Index.
Oracle 11g DATABASE DEVELOPMENT LAB1. Introduction  Oracle 11g Database:-  Oracle 11g database is designed for some features, which helps to the organizations.
9 Copyright © Oracle Corporation, All rights reserved. Creating and Managing Tables.
Copyright  Oracle Corporation, All rights reserved. 10 Creating and Managing Tables.
6 1 Lecture 8: Introduction to Structured Query Language (SQL) J. S. Chou, P.E., Ph.D.
Chapter 2 Views. Objectives ◦ Create simple and complex views ◦ Creating a view with a check constraint ◦ Retrieve data from views ◦ Data manipulation.
ITBIS373 Database Development Lecture 3a - Chapter 3: Using SQL Queries to Insert, Update, Delete, and View Data.
Database Systems Design, Implementation, and Management Coronel | Morris 11e ©2015 Cengage Learning. All Rights Reserved. May not be scanned, copied or.
1 DBS201: Introduction to Structure Query Language (SQL) Lecture 1.
SQL Fundamentals  SQL: Structured Query Language is a simple and powerful language used to create, access, and manipulate data and structure in the database.
Database Lab Lecture 1. Database Languages Data definition language ( DDL ) Data definition language –defines data types and the relationships among them.
Chapter 4 Constraints Oracle 10g: SQL. Oracle 10g: SQL 2 Objectives Explain the purpose of constraints in a table Distinguish among PRIMARY KEY, FOREIGN.
Database Fundamental & Design by A.Surasit Samaisut Copyrights : All Rights Reserved.
AL-MAAREFA COLLEGE FOR SCIENCE AND TECHNOLOGY INFO 232: DATABASE SYSTEMS CHAPTER 7 (Part II) INTRODUCTION TO STRUCTURED QUERY LANGUAGE (SQL) Instructor.
9 Copyright © Oracle Corporation, All rights reserved. Creating and Managing Tables.
Chapter 13 Views Oracle 10g: SQL. Oracle 10g: SQL2 Objectives Create a view, using CREATE VIEW command or the CREATE OR REPLACE VIEW command Employ the.
Chapter 5 : Integrity And Security  Domain Constraints  Referential Integrity  Security  Triggers  Authorization  Authorization in SQL  Views 
Oracle 11g: SQL Chapter 7 User Creation and Management.
Creating and Managing Tables 14. ObjectivesObjectives After completing this lesson, you should be able to do the following: After completing this lesson,
Relational Database Management System(RDBMS) Structured Query Language(SQL)
Dr. Chen, Oracle Database System (Oracle) 1 Chapter 7 User Creation and Management Jason C. H. Chen, Ph.D. Professor of MIS School of Business Gonzaga.
Chapter 3 Table Creation and Management Oracle 10g: SQL.
LM 5 Introduction to SQL MISM 4135 Instructor: Dr. Lei Li.
13 Copyright © 2004, Oracle. All rights reserved. Migrating SQL Statements.
Oracle 11g: SQL Chapter 5 Data Manipulation and Transaction Control.
 Reviewing basic architecture concepts  Oracle 10g Architecture  Main features of 9i and 10g
More SQL: Complex Queries, Triggers, Views, and Schema Modification
SQL Query Getting to the data ……..
Prepared by : Moshira M. Ali CS490 Coordinator Arab Open University
SQL Creating and Managing Tables
Introduction to Oracle9i: SQL
Using the Set Operators
DATABASE MANAGEMENT SYSTEM
SQL Creating and Managing Tables
SQL Creating and Managing Tables
Chapter 2 Views.
SQL Fundamentals in Three Hours
Chapter 2 Views.
Index Note: A bolded number or letter refers to an entire lesson or appendix. A Adding Data Through a View ADD_MONTHS Function 03-22, 03-23,
Contents Preface I Introduction Lesson Objectives I-2
IST 318 Database Administration
Using the Set Operators
Presentation transcript:

 CONACT UC:  Magnific training   

Introduction  List the Oracle Database 10g Main Features  An Overview of: components, internet platform, apps server and developer suite  Describe Relational and Object Relational Database Designs  Review the System Development Life Cycle  Define the term Data Models  Describe different means of Sorting Data  Show how Multiple Tables can be related  Describe how SQL Communicates to the Database

 Define projection, selection, and join terminology  Review the basic SQL SELECT statement syntax  Select all columns using a wildcard notation from a table  State simple rules and guidelines for writing SQL statements  Write a query containing the arithmetic operators  Create a character expression with the concatenation operator  Using the iSQL*Plus Environment  SQL statements versus iSQL*Plus commands

 Limit rows using a selection  Using the WHERE clause to retrieve specific rows  Using the comparison conditions in the WHERE clause  Use the LIKE condition to compare literal values  List the logical conditions AND, OR, NOT  Describe the rules of precedence for the conditions  Sort rows with the ORDER BY clause  Use ampersand substitution in iSQL*Plus to restrict and sort output at run time

 Show the differences between single row and multiple row SQL functions  Categorize the character functions into case manipulation and character manipulation types  Use the character manipulation functions in the SELECT and WHERE clauses  Explain and use the DATE and numeric functions  Use the SYSDATE function to retrieve the current date in the default format  Introduce the DUAL table as a means to view function results  List the rules for applying the arithmetic operators on dates  Use the arithmetic operators with dates in the SELECT clause

 Describe and categorize the group functions  Use the group functions  Utilize the DISTINCT keyword with the group functions  Describe how nulls are handled with the group functions  Create groups of data with the GROUP BY clause  Group data by more than one column  Avoid illegal queries with the group functions  Exclude groups of data with the HAVING clause

 Identify Types of Joins  Retrieve Records with Natural Joins  Use Table Aliases to write shorter code and explicitly identify columns from multiple tables  Create a Join with the USING clause to identify specific columns between tables  Use the ON clause to specify arbitrary conditions or specify columns to Join  Create a Three-way join with the ON clause to retrieve information from 3 tables  List the Types of Outer Joins LEFT, RIGHT, and FULL  Generating a Cartesian Product

 List the syntax for sub queries in a SELECT statements WHERE clause  List the guidelines for using sub queries  Describe the types of sub queries  Execute single row sub queries and use the group functions in a sub query  Identify illegal statements with sub queries  Execute multiple row sub queries  Analyze how the ANY and ALL operators work in multiple row sub queries

 Use the UNION operator to return all rows from multiple tables and eliminate any duplicate rows  Use the UNION ALL operator to return all rows from multiple tables  Describe the INTERSECT operator  Use the INTERSECT operator  Explain the MINUS operator  Use the MINUS operator  List the SET operator guidelines  Order results when using the UNION operator

 Write INSERT statements to add rows to a table  Copy rows from another table  Create UPDATE statements to change data in a table  Generate DELETE statements to remove rows from a table  Use a script to manipulate data  Save and discard changes to a table through transaction processing  Show how read consistency works  Describe the TRUNCATE statement

 List the main database objects and describe the naming rules for database objects  Introduce the schema concept  Display the basic syntax for creating a table and show the DEFAULT option  Explain the different types of constraints  Show resulting exceptions when constraints are violated with DML statements  Create a table with a sub query  Describe the ALTER TABLE functionality  Remove a table with the DROP statement and Rename a table

 Categorize simple and complex views and compare them  Create a view  Retrieve data from a view  Explain a read-only view  List the rules for performing DML on complex views  Create a sequence  List the basic rules for when to create and not create an index  Create a synonym

 Describe the structure of each of the dictionary views  List the purpose of each of the dictionary views  Write queries that retrieve information from the dictionary views on the schema objects  Use the COMMENT command to document objects

 Controlling User Access  System versus Objects Privileges  Using Roles to define user groups  Changing Your Password  Granting Object Privileges  Confirming Privileges Granted  Revoking Object Privileges  Using Database Links

 Using the ALTER TABLE statement  Adding a Column  Modifying a Column  Dropping a Column, Set Column UNUSED  Adding, Enabling and Disabling Constraints  Creating Function-Based Indexes  Performing FLASHBACK operations  External Tables

-oracle apps financial Online Training contact us: or By Real Time Experts from Hyderabad, Bangalore,India,USA,Canada,UK, Australia,South Africa.