ExitCertified Training Training with Java Solaris Red Hat IBM Symantec Siebel PeopleSoft Certified
 
Start
Training Courses and Schedules
Training Savings
IT Certification
Training Solutions
Loading
Trust Your IT Training   |
Oracle University Awards ExitCertified Corporation with North American Partner of the Year.

Email Training Course

Oracle Database 10g: Introduction to SQL

Format: Instructor-Led Classroom
Other Formats:
 
 

Learn the SQL essentials using SQL Developer on Linux. This course offers students an introduction to Oracle Database 10g database technology. In this class students learn the concepts of relational databases and the powerful SQL programming language. This course provides the essential SQL skills that allow developers to write queries against single and multiple tables, manipulate data in tables, create database objects, and query meta data.

In addition, the advanced features of SQL in order to query and manipulate data within the database are taught. Advanced querying and reporting techniques are explained. Schema objects that are useful for data warehousing and other application areas are discussed in detail. Students learn about manipulating large data sets and storing and retrieving dates according to different time zones.

In this course, students use Oracle SQL Developer on Linux as the main development tool.

This course is a combination of Oracle Database 10g: SQL Fundamentals I and Oracle Database 10g: SQL Fundamentals II courses.

Learn to:
  • Use SQL Statements to retrieve data from tables
  • Create and manage tables, and other schema objects
  • Employ SQL functions to generate and retrieve customized data
  • Control privileges at the object and system level
  • Run data manipulation statements (DML) to update data in the Oracle Database 10g
  • Search data using Advanced Sub queries, and retrieve hierarchical dat

 
Oracle Certified Training Course   Oracle Training Savings
 

Skills Gained

 
  • Retrieve row and column data from tables with the SELECT statement.

  • Employ SQL functions to generate and retrieve customized data.

  • Run data manipulation statements (DML) to update data in the Oracle Database 10g.

 
  • Control user access and manage schema objects

  • Search data using advanced sub queries

Who Can Benefit

 
  • Application Developers

  • Business Intelligence Developer

  • Database Administrators

  • End Users

 
  • Forms Developer

  • PL/SQL Developer

  • Portal Developer

Prerequisites

 
  • Familiarity with Data Processing Concepts and Techniques

 
  • Ability to use a graphical user interface (GUI)

 
Enroll For This Class
Enroll For This Class
Oracle DB PeopleSoft Hyperion This course is taught by Certified Oracle instructors.

Oracle University has awarded ExitCertified the 2009 Partner of the Year and Outstanding Instructor Quality Awards

There is a difference....learn more.
Training Class Enrollment Ask A Question About This Training
Code: D17216GC30
Format: Instructor-Led Classroom
Length: 5
Certified By: Oracle
Tuition (CAD): $4,000
Browse Similar Training Classes
Related training classes
Courses you can take after
Oracle Database 10g: Advanced PL/SQL

Sort Schedule By: 
No Course Dates There are currently no scheduled dates for this course. If you are interested in this course, request a course date with the links below. We can also contact you when the course is scheduled in your area.
   
Request course date Request Course On-Site
 

Oracle Database 10g: Introduction to SQL Content Details

 
 
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
Writing SQL SELECT Statements
  • 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 Oracle SQL Developer Environment
Restricting and Sorting Data
  • 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 to restrict and sort output at run time
Using Single-Row Functions to Customize Output
  • 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
Reporting Aggregated Data Using the Group Functions
  • 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
Displaying Data from Multiple Tables
  • 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
Using Sub queries to Solve Queries
  • 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
Using the SET Operators
  • 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
Manipulating Data
  • 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
Using DDL Statements to Create and Manage Tables
  • 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
 
Creating Other Schema Objects
  • 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
Managing Objects with Data Dictionary Views
  • 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
  • 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
Manage Schema Objects
  • 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
Manipulating Large Data Sets
  • Using the MERGE Statement
  • Performing DML with Sub queries
  • Performing DML with a RETURNING Clause
  • Overview of Multi-table INSERT Statements
  • Tracking Changes in DML
Generating Reports by Grouping Related Data
  • Overview of GROUP BY Clause
  • Overview of Having Clause
  • Aggregating data with ROLLUP and CUBE Operators
  • Determine subtotal groups using GROUPING Functions
  • Compute multiple groupings with GROUPING SETS
  • Define levels of aggregation with Composite Columns
  • Create combinations with Concatenated Groupings
Managing Data in Different Time Zones
  • Time Zones
  • Using date and time functions
  • Identifying TIMESTAMP Data Types
  • Differentiating between DATE and TIMESTAMP
  • Performing Conversion Operations
Searching Data Using Advanced Sub queries
  • Sub query Overview
  • Using a Sub query
  • Comparing several columns using Multiple-Column Sub queries
  • Defining a Data source Using a Sub query in the FROM Clause
  • Returning one Value using Scalar Sub query Expressions
  • Performing ROW by-row processing with Correlated Sub queries
  • Reusing query blocks using the WITH Clause
Hierarchical Retrieval
  • Sample Data from the EMPLOYEES Table
  • The Tree Structure of Employee data
  • Hierarchical Queries
  • Ranking Rows with LEVEL
  • Formatting Hierarchical Reports Using LEVEL and LPAD
  • Pruning Branches with the WHERE and CONNECT BY clauses
Regular Expression Support
  • Regular Expression Support Overview
  • Describing simple and complex patterns for searching and manipulating data


  ExitCertified Training with Java Solaris Red Hat IBM Symantec Apple MySQL Siebel PeopleSoft  
  When you take a certified course with ExitCertified, you are learning from the creators of the products you use. Our commitment to your IT community, along with our authorization to deliver certified courses, ensures you receive a premium training experience.

There is a difference. Learn from the source.
 
Training Contacts  
   
Canada United States

Vancouver Training :: 604.633.3948
Victoria Training :: 1.866.328.3948
Calgary Training :: 403.291.2855
Edmonton Training :: 780.441.3948
Regina Training :: 1.866.328.3948
Toronto Training :: 416.487.3948
Ottawa Training :: 613.232.3948
Montreal Training :: 514.876.1666
Quebec City Training :: 514.876.1666

Sacramento Training :: 916.669.3970
San Francisco Training :: 415.975.3948
San Jose Training :: 408.288.3948
Las Vegas Training :: 1.800.803.3948
Phoenix Training :: 602.889.9350
Worldwide - 613.232.3948 Got Questions?
We are happy to help. Just email us with this form and we'll get back to you shortly.
   



(c) 2010 ExitCertified Corp. All rights reserved.


ExitCertified is a global provider of authorized technology training. Some of our popular course topic include:
 
Sun Microsystems Training Oracle Training Symantec Training IBM Training Red Hat - Linux Training
Java Training, J2EE Training, JSP Training, Java Courses, Servlets Training, EJB Training, Struts Training, Networking Courses, Solaris Training, Java Composite Application Platform (JCAPS) Training, Java Certification, SeeBeyond Training, XML Training, Solaris Certification, Corporate Training PeopleSoft Training, 11g Training, 11g Certification, Oracle SQL, Oracle PL/SQL, DBA Training, Oracle Certification, Hyperion Training, Fusion Middleware Training, 10g Training, Siebel Training, JD Edwards Training, Stellent Class, BEA Courses, e-Business Suite Altiris Training, NetBackup Training, Veritas Training, Symantec Certification, Virus Protection Courses, IT Security Training DB2 Training, Cognos Classes, WebSphere Training, CICS Training, Informix, Rational Training, Lotus, Notes and Domino Training, Tivoli Courses, AIX Class, CISCO Training, VMWare Training SUSE Training, RedHat Training , JBoss Training
         
MySQL Training Apple Training Hitachi - HDS Training Project Management PMI Training  
  Apple Course, Leopard Training, Xsan Training