Passionate about Learning
HOME      LIVE CHAT    My NetCom Free Catalog 1-888-563-8266
.
Home > Vendors > Oracle > Oracle Database 11g, 10g > Oracle Database 10g: Introduction to SQL - Accelerated Version

Oracle Database 10g: Introduction to SQL - Accelerated Version


Oracle Database 10g: Introduction to SQL - Accelerated Version Course Description

This course introduces Oracle Database 10g technology and the relational database concepts and the powerful SQL programming language. This course provides the learners with the essential SQL skills of querying the database, the meta data and creating database objects.

In addition, the course also delves into the advanced querying and reporting techniques, data warehousing concepts and manipulating large data sets in different time zones.

Intended Audience for the Oracle Database 10g: Introduction to SQL - Accelerated Version Course

  • Database Administrators
  • PL/SQL Developer
  • Forms Developer
  • System Analysts
  • Technical Consultant

Oracle Database 10g: Introduction to SQL - Accelerated Version Course Objectives

  • Search data using advanced sub queries
  • 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

Recommended Prerequisites for the Oracle Database 10g: Introduction to SQL - Accelerated Version course

The Oracle Database 10g: Introduction to SQL - Accelerated Version Course prepare students for the following Exams

  • 1Z0-042 : Oracle10g Database: Administration I

Recommended Next Steps after taking the Oracle Database 10g: Introduction to SQL - Accelerated Version Course

Oracle Database 10g: Introduction to SQL - Accelerated Version Course Outline

    1. Introduction
      1. List the Oracle Database 10g main features
      2. Provide an overview of: components, internet platform, apps server and developer suite
      3. Describe relational and object relational database designs
      4. Review the system development life cycle
      5. Describe different means of storing data
      6. Review the relational database concept
      7. Define the term data models
      8. Show how multiple tables can be related
    2. Retrieving Data Using the SQL SELECT Statement
      1. Define projection, selection, and join terminology
      2. Review the syntaxes for the basic SQL SELECT statements
      3. Use Arithmetic and Concatenation operators in SQL statements
      4. List the differences between SQL and iSQL*Plus
      5. Log into the database using iSQL*Plus
      6. Explain the iSQL*Plus interface
      7. Categorize the different types of iSQL*Plus commands
      8. Save SQL statements to script files
    3. Restricting and Sorting Data
      1. Limit rows using a selection
      2. Using the WHERE clause to retrieve specific rows
      3. Using the comparison conditions in the WHERE clause
      4. Use the LIKE condition to compare literal values
      5. List the logical conditions AND, OR, NOT
      6. Describe the rules of precedence for the conditions shown in this lesson
      7. Sort rows with the ORDER BY clause
      8. Use ampersand substitution in iSQL*Plus to restrict and sort output at run time
    4. Using Single Row Functions to Customize Reports
      1. Show the differences between single row and multiple row SQL functions
      2. Categorize the character functions into case manipulation and character manipulation types
      3. Use the character manipulation functions in the SELECT and WHERE clauses
      4. Explain and use the DATE and numeric functions
      5. Use the SYSDATE function to retrieve the current date in the default format
      6. Introduce the DUAL table as a means to view function results
      7. List the rules for applying the arithmetic operators on dates
      8. Use the arithmetic operators with dates in the SELECT clause
    5. Reporting Aggregated Data Using the Group Functions
      1. Describe and categorize the group functions
      2. Use the group functions
      3. Utilize the DISTINCT keyword with the group functions
      4. Describe how nulls are handled with the group functions
      5. Create groups of data with the GROUP BY clause
      6. Group data by more than one column
      7. Avoid illegal queries with the group functions
      8. Exclude groups of data with the HAVING clause
    6. Displaying Data From Multiple Tables
      1. Show the join tables syntax using SQL 99 syntax
      2. Use table aliases to write shorter code and explicitly identify columns from multiple tables
      3. Issue a SQL CROSS JOIN statement to produce a cartesian product
      4. Use the NATURAL JOIN clause to retrieve data from tables with the same named columns
      5. Create a join with the USING clause to identify specific columns between tables
      6. Create a three way join with the ON clause to retrieve information from 3 tables
      7. List the types of outer joins LEFT, RIGHT, and FULL
      8. Add additional conditions when joining tables with the AND clause
    7. Using Sub queries to Solve Queries
      1. List the syntax for sub queries in a SELECT statements WHERE clause
      2. List the guidelines for using sub queries
      3. Describe the types of sub queries
      4. Execute single row sub queries and use the group functions in a sub query
      5. Identify illegal statements with sub queries
      6. Execute multiple row sub queries
      7. Analyze how the ANY and ALL operators work in multiple row sub queries
      8. Explain how null values are handled in sub queries
    8. Using the SET Operators
      1. Use the UNION operator to return all rows from multiple tables and eliminate any duplicate rows
      2. Use the UNION ALL operator to return all rows from multiple tables
      3. Describe the INTERSECT operator
      4. Use the INTERSECT operator
      5. Explain the MINUS operator
      6. Use the MINUS operator
      7. List the SET operator guidelines
      8. Order results when using the UNION operator
    9. Manipulating Data
      1. Write INSERT statements to add rows to a table
      2. Copy rows from another table
      3. Create UPDATE statements to change data in a table
      4. Generate DELETE statements to remove rows from a table
      5. Use a script to manipulate data
      6. Save and discard changes to a table through transaction processing
      7. Show how read consistency works
      8. Describe the TRUNCATE statement
    10. Using DDL Statements to Create and Manage Tables
      1. List the main database objects and describe the naming rules for database objects
      2. Introduce the schema concept
      3. Display the basic syntax for creating a table and show the DEFAULT option
      4. Explain the different types of constraints
      5. Show resulting exceptions when constraints are violated with DML statements
      6. Create a table with a sub query
      7. Describe the ALTER TABLE functionality
      8. Remove a table with the DROP statement and Rename a table
    11. Creating Other Schema Objects
      1. List the main database objects and describe the naming rules for database objects
      2. Introduce the schema concept
      3. Display the basic syntax for creating a table and show the DEFAULT option
      4. Explain the different types of constraints
      5. Show resulting exceptions when constraints are violated with DML statements
      6. Create a table with a sub query and remove a table with the DROP statement
      7. Describe the ALTERTABLE functionality
      8. Rename a table
    12. Managing Objects with Data Dictionary Views
      1. Describe the structure of each of the dictionary views
      2. List the purpose of each of the dictionary views
      3. Write queries that retrieve information from the dictionary views on the schema objects
    13. Controlling User Access
      1. Controlling user access
      2. System versus objects privileges
      3. Creating user sessions and granting system privileges
      4. Using roles to define user groups
      5. Creating and granting privileges to a role
      6. Granting and revoking object privileges
      7. Changing your password
      8. Using Database Links
    14. Manage Schema Objects
      1. Creating directories
      2. Creating and querying external tables
      3. Creating Index Organized Tables
      4. Creating Function based indexes
      5. Dropping Columns
      6. Altering the structure of tables and adding constraints
      7. Performing FLASHBACK Statement
      8. Materialized Views overview
    15. Manipulating Large Data Sets
      1. Using the MERGE Statement
      2. Performing DML with Subqueries
      3. Performing DML with a RETURNING Clause
      4. Overview of Multitable INSERT Statements
      5. Tracking Changes in DML
    16. Generating Reports by Grouping Related Data
      1. Overview of GROUP BY and Having Clause
      2. Aggregating data with ROLLUP and CUBE Operators
      3. Determine subtotal groups using GROUPING Functions
      4. Compute multiple groupings with GROUPING SETS
      5. Define levels of aggregation with Composite Columns
      6. Create combinations with Concatenated Groupings
    17. Managing Data in Different Time Zones
      1. TIME ZONES
      2. Oracle9i Date time Support
      3. Conversion operations
    18. Searching Data Using Advanced Sub queries
      1. Subquery Overview
      2. Using a Sub query
      3. Comparing several columns using Multiple-Column Sub queries
      4. Defining a Data source Using a Sub query in the FROM Clause
      5. Returning one Value using Scalar Sub query Expressions
      6. Performing ROW by-row processing with Correlated Sub queries
      7. Reusing query blocks using the WITH Clause
    19. Hierarchical Data Retrieval
      1. Sample Data from the EMPLOYEES Table
      2. The Tree Structure of Employee data
      3. Hierarchical Queries
      4. Ranking Rows with LEVEL
      5. Formatting Hierarchical Reports Using LEVEL and LPAD
      6. Pruning Branches with the WHERE and CONNECT BY clauses
    20. Performing Regular Expression Support and Case Insensitive
      1. Regular Expression Support Overview
      2. Describing simple and complex patterns for searching and manipulating data

    Benefits of taking the Oracle Database 10g: Introduction to SQL - Accelerated Version course at NetCom

    • Why choose Oracle Training at NetCom Learning?
      As a recognition for training excellence, NetCom Learning was chosen by Microsoft as the 2007 Worldwide Learning Solutions Partner of the year out of 1400 training companies.

      In addition, we have won numerous other training awards for quality and customer satisfaction by CompTIA, EC-Council and other vendors. We are simply passionate about learning and achieving the highest customer satisfaction in your learning experience!

    • NetCom provides Authorized Training
      NetCom Learning is a Microsoft Gold Certified Partner for Learning Solutions (CPLS), Cisco Learning Partner, CompTIA Platinum Partner, EC-Council Accredited Training Center, Adobe Authorized Training Center, Autodesk Authorized Training Center and many others. We are proud to offer the highest quality, authorized training solutions from our many partners for our customers.

      See our comprehensive list of partner authorizations.

    • Award winning, world-class Instructors
      Finnbarr M.
      - Masters Degree in Computer Science from Boston University along with several certifications.
      - Over 25 years of experience in the IT field and expert in Unix, GNU/Linux, and Oracle ecosystems.
      - More than 10 years working as a Software Engineer in multinational companies such as Hewlett-Packard.

      Bio:

      Finnbarr has both breadth and in-depth knowledge of Unix, GNU/Linux, and Oracle with 25+ years of experience in operating system internals development, system administration, application development and project management on a wide variety of hardware and software platforms. As a Software Engineer, he developed and managed numerous projects in multinational companies such as Hewlett-Packard.

      Finnbarr is a member of the Institute of Electrical and Electronic Engineers as well as a Moderator at unix.com. He is also a top Instructor and Subject Matter Expert at NetCom Learning and is well recognized by the students for his knowledge and his great teaching technique.
    • Actual Client Testimonials
      Aug 29 2011
      My instructor is very knowledgeable. He was capable of answering all questions and explaining all material in detail. I am glad I chose NetCm for my training. All of the NetCm staff were courteous helpful, and polite.
      -Adrienne B.
      Course(s) Taken

      Jul 02 2011
      I am very pleased about my experience with NetCom Learning. It was a great course! The best experience I could have expected. Great instructor! Great everything! I am very happy. Thank You!
      -Lorena M.
      Course(s) Taken

      Jul 02 2011
      Very clean facilities, super friendly staff, knowledgeable instructor.
      -Alma C.
      Course(s) Taken

      Jul 02 2011
      Geoff was a great instructor during the Oracle course. He ensured I understood the material and brought a sense of fun to the class. I really really have to study for the certification course due to my limited database management skills. This training and certification will hopefully allow me to start a new career.
      -Denise L.
      Course(s) Taken

      Mar 07 2011
      [The Instructor] has knowledge, experience, approach and commitment. Further these classes are more important even for the experienced people. The arrangements and food are good .

      -Sai P.
      Course(s) Taken

      Mar 05 2011
      Although it was a lot of information it was a good experience. Very informative and very good.
      -Melvin H.
      Course(s) Taken

      Mar 05 2011
      NetCom has done a great service. The arrangements are good. The food is good. Geoff has done a very good job. His dedication to his profession is highly notable and appreciated. This class really refreshes the fundamentals.
      -Sai P.
      Course(s) Taken

      Mar 05 2011
      Geoff is one of the best instructors I've taken a course from. Very knowledgeable and I would take a course from him anytime.
      -Kyle A.
      Course(s) Taken

    • Awards won by NetCom
      NetCom Learning is an award winning, customer focused company. We are simply Passionate About Learning!

      See our list of awards.

    • Specialized Bootcamp Training
      This training is also available as a boot camp. NetCom is world famous for delivering specialized boot camp training to our clients.

      For answers to questions regarding our boot camp training delivery format, please refer to our Boot Camp FAQ section.


    Enrollment Options for the Oracle Database 10g: Introduction to SQL - Accelerated Version course

    • Contact us to customize this class with your own dates, times and location. You can also call 1-888-563-8266 or chat live with an Educational Consultant.

    Training Delivery Methods

    Take this training with one of the following training delivery methods below:
    • Classroom Training
      Classroom Training NetCom’s classroom training ensures that you have state-of-the-art tools, techniques and practices you need to succeed on the job. Our instructors are active practitioners and true masters in their fields. With convenient classes at multiple learning centers across the US, you never have to go far to get ahead.

    • Live Online Training (LOT)
      Live Online Training NetCom’s premium Live Online Training (we call it LOT) is the ultimate in convenience and cost-effectiveness. LOT combines interactive video instruction via the latest web conference technology, and post-class access to learning labs for a best-in-class learning experience.
      Learn more about LOT

    • Boot Camp Training
      Boot Camp Training NetCom’s intensive boot camps are designed to advance your skills in the shortest possible amount of time and get you certified. Boot camps go at a faster pace and often run for longer days, so you must have some level of subject matter experience before enrolling. Boot camps have mandatory assessment tests to ensure no one will slow down the class for other students. Learn more about Boot Camps

    • Private Onsite Training
      Private Onsite Training With NetCom’s private training programs, you decide where and when courses are held. Tailor the training to reflect your industry, corporate culture, goals and schedule. You pick the course content, length of training and instructional technique. Save money by doing bulk customized training.
      Learn more about Private Onsite Training

    • Private 1-on-1 Training
      Private 1-on-1 Training NetCom’s private 1-on-1 training focuses on the highest quality training possible. You get individualized, full attention from the instructor and you decide where and when courses are held. The training is custom tailored to reflect your industry, corporate culture, goals and schedule. You pick the course content, length of training and instructional technique.
      Learn more about Private 1-on-1 Training

    Contact us
    call usCall us Toll-free at 1-888-563-8266
    web formFREE Training Inquiry form
    live chatWebsite Live Chat
    email usContact us via Email: info@netcomlearning.com

    Duration: 2 days (20 hours)
    Pricing: Variable, please request
    Why pricing varies..Why pricing varies..

    Pricing depends on different training delivery methods, one or more students and availability of volume discounts or currently available promotions.

    Our prices are frequently lower since we are able to work with our clients closely on their needs and pass on the optimum amount of savings.

    In addition, we provide a price match guarantee for any competitive quotes.
    click to Live Chat

    .  Next Class Dates
    Contact us to customize this class with your own dates, times and location. You can also call 1-888-563-8266 or chat live with an Educational Consultant.
    .  Get More Information
    FREE Assessment Quiz
    Monthly Email Newsletter
    Request Print Catalog
    Student Loan Application
    Name: 
    Email:  
    Phone: 
    Comments:

    . .
    live chat

    .  CALL 1-888-563-8266
    . arrow  Need course pricing?
    arrow  Need more information?
    arrow  Worried about financing?
    NetCom IT training on YouTube
    NetCom IT training on Twitter
    NetCom IT training on Facebook
    NetCom on LinkedIn
    Newsletter:
    © 1998-2012, NetCom Learning. All Rights Reserved.