Introduction to Oracle9i: SQL

Size: px
Start display at page:

Download "Introduction to Oracle9i: SQL"

Transcription

1 Introduction to Oracle9i: SQL Student Guide Volume GC11 Production 1.1 October 2001 D33990

2 Authors Nancy Greenberg Priya Nathan Technical Contributors and Reviewers Josephine Turner Martin Alvarez Anna Atkinson Don Bates Marco Berbeek Andrew Brannigan Laszlo Czinkoczki Michael Gerlach Sharon Gray Rosita Hanoman Mozhe Jalali Sarah Jones Charbel Khouri Christopher Lawless Diana Lorentz Nina Minchen Cuong Nguyen Daphne Nougier Patrick Odell Laura Pezzini Stacey Procter Maribel Renau Bryan Roberts Helen Robertson Sunshine Salmon Casa Sharif Bernard Soleillant Craig Spoonemore Ruediger Steffan Karla Villasenor Andree Wheeley Lachlan Williams Copyright Oracle Corporation, 2000, All rights reserved. This documentation contains proprietary information of Oracle Corporation. It is provided under a license agreement containing restrictions on use and disclosure and is also protected by copyright law. Reverse engineering of the software is prohibited. If this documentation is delivered to a U.S. Government Agency of the Department of Defense, then it is delivered with Restricted Rights and the following legend is applicable: Restricted Rights Legend Use, duplication or disclosure by the Government is subject to restrictions for commercial computer software and shall be deemed to be Restricted Rights software under Federal law, as set forth in subparagraph (c)(1)(ii) of DFARS , Rights in Technical Data and Computer Software (October 1988). This material or any portion of it may not be copied in any form or by any means without the express prior written permission of Oracle Corporation. Any other copying is a violation of copyright law and may result in civil and/or criminal penalties. If this documentation is delivered to a U.S. Government Agency not within the Department of Defense, then it is delivered with Restricted Rights, as defined in FAR , Rights in Data-General, including Alternate III (June 1987). The information in this document is subject to change without notice. If you find any problems in the documentation, please report them in writing to Education Products, Oracle Corporation, 500 Oracle Parkway, Box SB-6, Redwood Shores, CA Oracle Corporation does not warrant that this document is error-free. Oracle and all references to Oracle products are trademarks or registered trademarks of Oracle Corporation. All other products or company names are used for identification purposes only, and may be trademarks of their respective owners. Publisher Nita Brozowski

3 Contents Preface Curriculum Map Introduction Objectives I-2 Oracle9i I-3 Oracle9i Application Server I-5 Oracle9i Database I-6 Relational and Object Relational Database Management System I-7 Oracle Internet Platform I-8 System Development Life Cycle I-9 Data Storage on Different Media I-11 Relational Database Concept I-12 Definition of a Relational Database I-13 Data Models I-14 Entity Relationship Model I-15 Entity Relationship Modeling Conventions I-16 Relating Multiple Tables I-18 Relational Database Terminology I-19 Relational Database Properties I-20 Communicating with a RDBMS Using SQL I-21 Relational Database Management System I-22 SQL Statements I-23 Tables Used in the Course I-24 1 Writing Basic SQL SELECT Statements Objectives 1-2 Capabilities of SQL SELECT Statements 1-3 Basic SELECT Statement 1-4 Selecting All Columns 1-5 Selecting Specific Columns 1-6 Writing SQL Statements 1-7 Column Heading Defaults 1-8 Arithmetic Expressions 1-9 Using Arithmetic Operators 1-10 Operator Precedence 1-11 Using Parentheses 1-13 Defining a Null Value 1-14 Null Values in Arithmetic Expressions 1-15 Defining a Column Alias 1-16 Using Column Aliases 1-17 Concatenation Operator 1-18 Using the Concatenation Operator 1-19 Literal Character Strings 1-20 Using Literal Character Strings 1-21 Duplicate Rows 1-22 Eliminating Duplicate Rows 1-23 iii

4 SQL and isql*plus Interaction 1-24 SQL Statements Versus isql*plus Commands 1-25 Overview of isql*plus 1-26 Logging In to isql*plus 1-27 The isql*plus Environment 1-28 Displaying Table Structure 1-29 Interacting with Script Files 1-31 Summary 1-34 Practice Overview Restricting and Sorting Data Objectives 2-2 Limiting Rows Using a Selection 2-3 Limiting the Rows Selected 2-4 Using the WHERE Clause 2-5 Character Strings and Dates 2-6 Comparison Conditions 2-7 Using Comparison Conditions 2-8 Other Comparison Conditions 2-9 Using the BETWEEN Condition 2-10 Using the IN Condition 2-11 Using the LIKE Condition 2-12 Using the NULL Conditions 2-14 Logical Conditions 2-15 Using the AND Operator 2-16 Using the OR Operator 2-17 Using the NOT Operator 2-18 Rules of Precedence 2-19 ORDER BY Clause 2-22 Sorting in Descending Order 2-23 Sorting by Column Alias 2-24 Sorting by Multiple Columns 2-25 Summary 2-26 Practice 2 Overview Single-Row Functions Objectives 3-2 SQL Functions 3-3 Two Types of SQL Functions 3-4 Single-Row Functions 3-5 Single-Row Functions 3-6 Character Functions 3-7 Character Functions 3-8 Case Manipulation Functions 3-9 Using Case Manipulation Functions 3-10 iv

5 Character-Manipulation Functions 3-11 Using the Character-Manipulation Functions 3-12 Number Functions 3-13 Using the ROUND Function 3-14 Using the TRUNC Function 3-15 Using the MOD Function 3-16 Working with Dates 3-17 Arithmetic with Dates 3-19 Using Arithmetic Operators with Dates 3-20 Date Functions 3-21 Using Date Functions 3-22 Practice 3, Part One: Overview 3-24 Conversion Functions 3-25 Implicit Data Type Conversion 3-26 Explicit Data Type Conversion 3-28 Using the TO_CHAR Function with Dates 3-31 Elements of the Date Format Model 3-32 Using the TO_CHAR Function with Dates 3-36 Using the TO_CHAR Function with Numbers 3-37 Using the TO_NUMBER and TO_DATE Functions 3-39 RR Date Format 3-40 Example of RR Date Format 3-41 Nesting Functions 3-42 General Functions 3-44 NVL Function 3-45 Using the NVL Function 3-46 Using the NVL2 Function 3-47 Using the NULLIF Function 3-48 Using the COALESCE Function 3-49 Conditional Expressions 3-51 The CASE Expression 3-52 Using the CASE Expression 3-53 The DECODE Function 3-54 Using the DECODE Function 3-55 Summary 3-57 Practice 3, Part Two: Overview Displaying Data from Multiple Tables Objectives 4-2 Obtaining Data from Multiple Tables 4-3 Cartesian Products 4-4 Generating a Cartesian Product 4-5 Types of Joins 4-6 Joining Tables Using Oracle Syntax 4-7 What is an Equijoin? 4-8 v

6 Retrieving Records with Equijoins 4-9 Additional Search Conditions Using the AND Operator 4-10 Qualifying Ambiguous Column Names 4-11 Using Table Aliases 4-12 Joining More than Two Tables 4-13 Non-Equijoins 4-14 Retrieving Records with Non-Equijoins 4-15 Outer Joins 4-16 Outer Joins Syntax 4-17 Using Outer Joins 4-18 Self Joins 4-19 Joining a Table to Itself 4-20 Practice 4, Part One: Overview 4-21 Joining Tables Using SQL: 1999 Syntax 4-22 Creating Cross Joins 4-23 Creating Natural Joins 4-24 Retrieving Records with Natural Joins 4-25 Creating Joins with the USING Clause 4-26 Retrieving Records with the USING Clause 4-27 Creating Joins with the ON Clause 4-28 Retrieving Records with the ON Clause 4-29 Creating Three-Way Joins with the ON Clause 4-30 INNER Versus OUTER Joins 4-31 LEFT OUTER JOIN 4-32 RIGHT OUTER JOIN 4-33 FULL OUTER JOIN 4-34 Additional Conditions 4-35 Summary 4-36 Practice 4, Part Two: Overview Aggregating Data Using Group Functions Objectives 5-2 What Are Group Functions? 5-3 Types of Group Functions 5-4 Group Functions Syntax 5-5 Using the AVG and SUM Functions 5-6 Using the MIN and MAX Functions 5-7 Using the COUNT Function 5-8 Using the DISTINCT Keyword 5-10 Group Functions and Null Values 5-11 Using the NVL Function with Group Functions 5-12 Creating Groups of Data 5-13 Creating Groups of Data: The GROUP BY Clause Syntax 5-14 Using the GROUP BY Clause 5-15 Grouping by More Than One Column 5-17 vi

7 Using the GROUP BY Clause on Multiple Columns 5-18 Illegal Queries Using Group Functions 5-19 Excluding Group Results 5-21 Excluding Group Results: The HAVING Clause 5-22 Using the HAVING Clause 5-23 Nesting Group Functions 5-25 Summary 5-26 Practice 5 Overview Subqueries Objectives 6-2 Using a Subquery to Solve a Problem 6-3 Subquery Syntax 6-4 Using a Subquery 6-5 Guidelines for Using Subqueries 6-6 Types of Subqueries 6-7 Single-Row Subqueries 6-8 Executing Single-Row Subqueries 6-9 Using Group Functions in a Subquery 6-10 The HAVING Clause with Subqueries 6-11 What is Wrong with this Statement? 6-12 Will this Statement Return Rows? 6-13 Multiple-Row Subqueries 6-14 Using the ANY Operator in Multiple-Row Subqueries 6-15 Using the ALL Operator in Multiple-Row Subqueries 6-16 Null Values in a Subquery 6-17 Summary 6-18 Practice 6 Overview Producing Readable Output with isql*plus Objectives 7-2 Substitution Variables 7-3 Using the & Substitution Variable 7-5 Character and Date Values with Substitution Variables 7-7 Specifying Column Names, Expressions, and Text 7-8 Defining Substitution Variables 7-10 DEFINE and UNDEFINE Commands 7-11 Using the DEFINE Command with & Substitution Variable 7-12 Using the && Substitution Variable 7-13 Using the VERIFY Command 7-14 Customizing the isql*plus Environment 7-15 SET Command Variables 7-16 isql*plus Format Commands 7-17 The COLUMN Command 7-18 Using the COLUMN Command 7-19 vii

8 COLUMN Format Models 7-20 Using the BREAK Command 7-21 Using the TTITLE and BTITLE Commands 7-22 Creating a Script File to Run a Report 7-24 Sample Report 7-26 Summary 7-28 Practice 7 Overview Manipulating Data Objectives 8-2 Data Manipulation Language 8-3 Adding a New Row to a Table 8-4 The INSERT Statement Syntax 8-5 Inserting New Rows 8-6 Inserting Rows with Null Values 8-7 Inserting Special Values 8-8 Inserting Specific Date Values 8-9 Creating a Script 8-10 Copying Rows from Another Table 8-11 Changing Data in a Table 8-12 The UPDATE Statement Syntax 8-13 Updating Rows in a Table 8-14 Updating Two Columns with a Subquery 8-15 Updating Rows Based on Another Table 8-16 Updating Rows: Integrity Constraint Error 8-17 Removing a Row from a Table 8-18 The DELETE Statement 8-19 Deleting Rows from a Table 8-20 Deleting Rows Based on Another Table 8-21 Deleting Rows: Integrity Constraint Error 8-22 Using a Subquery in an INSERT Statement 8-23 Using the WITH CHECK OPTION Keyword on DML Statements 8-25 Overview of the Explicit Default Feature 8-26 Using Explicit Default Values 8-27 The MERGE Statement 8-28 The MERGE Statement Syntax 8-29 Merging Rows 8-30 Database Transactions 8-32 Advantages of COMMIT and ROLLBACK Statements 8-34 Controlling Transactions 8-35 Rolling Back Changes to a Marker 8-36 Implicit Transaction Processing 8-37 State of the Data Before COMMIT or ROLLBACK 8-38 State of the Data after COMMIT 8-39 Committing Data 8-40 viii

9 State of the Data After ROLLBACK 8-41 Statement-Level Rollback 8-42 Read Consistency 8-43 Implementation of Read Consistency 8-44 Locking 8-45 Implicit Locking 8-46 Summary 8-47 Practice 8 Overview 8-48 Read Consistency Example Creating and Managing Tables Objectives 9-2 Database Objects 9-3 Naming Rules 9-4 The CREATE TABLE Statement 9-5 Referencing Another User s Tables 9-6 The DEFAULT Option 9-7 Creating Tables 9-8 Tables in the Oracle Database 9-9 Querying the Data Dictionary 9-10 Data Types 9-11 DateTime Data Types 9-13 TIMESTAMP WITH TIME ZONE Data Type 9-15 TIMESTAMP WITH LOCAL TIME Data Type 9-16 INTERVAL YEAR TO MONTH Data Type 9-17 INTERVAL DAY TO SECOND Data Type 9-18 Creating a Table by Using a Subquery Syntax 9-20 Creating a Table by Using a Subquery 9-21 The ALTER TABLE Statement 9-22 Adding a Column 9-24 Modifying a Column 9-26 Dropping a Column 9-27 The SET UNUSED Option 9-28 Dropping a Table 9-29 Changing the Name of an Object 9-30 Truncating a Table 9-31 Adding Comments to a Table 9-32 Summary 9-33 Practice 9 Overview 9-34 ix

10 10 Including Constraints Objectives 10-2 What are Constraints? 10-3 Constraint Guidelines 10-4 Defining Constraints 10-5 The NOT NULL Constraint 10-7 The UNIQUE Constraint 10-9 The PRIMARY KEY Constraint The FOREIGN KEY Constraint FOREIGN KEY Constraint Keywords The CHECK Constraint Adding a Constraint Syntax Adding a Constraint Dropping a Constraint Disabling Constraints Enabling Constraints Cascading Constraints Viewing Constraints Viewing the Columns Associated with Constraints Summary Practice 10 Overview Creating Views Objectives 11-2 Database Objects 11-3 What is a View? 11-4 Why use Views? 11-5 Simple Views and Complex Views 11-6 Creating a View 11-7 Retrieving Data from a View Querying a View Modifying a View Creating a Complex View Rules for Performing DML Operations on a View Using the WITH CHECK OPTION Clause Denying DML Operations Removing a View Inline Views Top-N Analysis Performing Top-N Analysis Example of Top-N Analysis Summary Practice 11 Overview x

11 12 Other Database Objects Objectives 12-2 Database Objects 12-3 What is a Sequence? 12-4 The CREATE SEQUENCE Statement Syntax 12-5 Creating a Sequence 12-6 Confirming Sequences 12-7 NEXTVAL and CURRVAL Pseudocolumns 12-8 Using a Sequence Modifying a Sequence Guidelines for Modifying a Sequence Removing a Sequence What is an Index? How Are Indexes Created? Creating an Index When to Create an Index When Not to Create an Index Confirming Indexes Function-Based Indexes Removing an Index Synonyms Creating and Removing Synonyms Summary Practice 12 Overview Controlling User Access Objectives 13-2 Controlling User Access 13-3 Privileges 13-4 System Privileges 13-5 Creating Users 13-6 User System Privileges 13-7 Granting System Privileges 13-8 What is a Role? 13-9 Creating and Granting Privileges to a Role Changing Your Password Object Privileges Granting Object Privileges Using the WITH GRANT OPTION and PUBLIC Keywords Confirming Privileges Granted How to Revoke Object Privileges Revoking Object Privileges Database Links Summary Practice 13 Overview xi

12 14 SQL Workshop Workshop Overview Using SET Operators Objectives 15-2 The SET Operators 15-3 Tables Used in This Lesson 15-4 The UNION Operator 15-7 Using the UNION Operator 15-8 The UNION ALL Operator Using the UNION ALL Operator The INTERSECT Operator Using the INTERSECT Operator The MINUS Operator SET Operator Guidelines The Oracle Server and SET Operators Matching the SELECT Statements Controlling the Order of Rows Summary Practice 15 Overview Oracle9i Datetime Functions Objectives 16-2 TIME ZONES 16-3 Oracle9i Datetime Support 16-4 TZ_OFFSET 16-6 CURRENT_DATE 16-8 CURRENT_TIMESTAMP 16-9 LOCALTIMESTAMP DBTIMEZONE and SESSIONTIMEZONE EXTRACT TIMESTAMP Conversion Using FROM_TZ STRING To TIMESTAMP Conversion Using TO_TIMESTAMP and TO_TIMESTAMP_TZ Time Interval Conversion with TO_YMINTERVAL Summary Practice 16 Overview Enhancements to the GROUP BY Clause Objectives 17-2 Review of Group Functions 17-3 Review of the GROUP BY Clause 17-4 Review of the HAVING Clause 17-5 GROUP BY with ROLLUP and CUBE Operators 17-6 ROLLUP Operator 17-7 ROLLUP Operator Example 17-8 xii

13 CUBE Operator 17-9 CUBE Operator: Example GROUPING Function GROUPING Function: Example GROUPING SETS GROUPING SETS: Example Composite Columns Composite Columns: Example Concatenated Groupings Concatenated Groupings Example Summary Practice 17 Overview Advanced Subqueries Objectives 18-2 What Is a Subquery? 18-3 Subqueries 18-4 Using a Subquery 18-5 Multiple-Column Subqueries 18-6 Column Comparisons 18-7 Pairwise Comparison Subquery 18-8 Nonpairwise Comparison Subquery 18-9 Using a Subquery in the FROM Clause Scalar Subquery Expressions Scalar Subqueries: Examples Correlated Subqueries Using Correlated Subqueries Using the EXISTS Operator Using the NOT EXISTS Operator Correlated UPDATE Correlated DELETE The WITH Clause WITH Clause: Example Summary Practice 18 Overview Hierarchical Retrieval Objectives 19-2 Sample Data from the EMPLOYEES Table 19-3 Natural Tree Structure 19-4 Hierarchical Queries 19-5 Walking the Tree 19-6 Walking the Tree: From the Bottom Up 19-8 Walking the Tree: From the Top Down 19-9 Ranking Rows with the LEVEL Pseudocolumn xiii

14 Formatting Hierarchical Reports Using LEVEL and LPAD Pruning Branches Summary Practice 19 Overview Oracle9i Extensions to DML and DDL Statements Objectives 20-2 Review of the INSERT Statement 20-3 Review of the UPDATE Statement 20-4 Overview of Multitable INSERT Statements 20-5 Overview of Multitable INSERT Statements 20-6 Types of Multitable INSERT Statements 20-7 Multitable INSERT Statements 20-8 Unconditional INSERT ALL Conditional INSERT ALL Conditional FIRST INSERT Pivoting INSERT External Tables Creating an External Table Example of Creating an External Table Querying External Tables CREATE INDEX with CREATE TABLE Statement Summary Practice 20 Overview A B C D E Practice solutions Table Descriptions and Data Using SQL* Plus Writing Advanced Scripts Oracle Architectural Components Index Additional Practices Additional Practice Solutions Additional Practices Table and Descriptions xiv

1 Writing Basic SQL SELECT Statements 2 Restricting and Sorting Data

1 Writing Basic SQL SELECT Statements 2 Restricting and Sorting Data 1 Writing Basic SQL SELECT Statements Objectives 1-2 Capabilities of SQL SELECT Statements 1-3 Basic SELECT Statement 1-4 Selecting All Columns 1-5 Selecting Specific Columns 1-6 Writing SQL Statements

More information

Oracle Syllabus Course code-r10605 SQL

Oracle Syllabus Course code-r10605 SQL Oracle Syllabus Course code-r10605 SQL Writing Basic SQL SELECT Statements Basic SELECT Statement Selecting All Columns Selecting Specific Columns Writing SQL Statements Column Heading Defaults Arithmetic

More information

Oracle Database 10g: SQL Fundamentals I

Oracle Database 10g: SQL Fundamentals I Oracle Database 10g: SQL Fundamentals I Volume I Student Guide D17108GC11 Edition 1.1 August 2004 D39766 Author Nancy Greenberg Technical Contributors and Reviewers Wayne Abbott Christian Bauwens Perry

More information

Oracle Database 10g: SQL Fundamentals I

Oracle Database 10g: SQL Fundamentals I Oracle Database 10g: SQL Fundamentals I Student Guide Volume I D17108GC21 Edition 2.1 December 2006 D48183 Authors Chaitanya Koratamaddi Nancy Greenberg Technical Contributors and Reviewers Wayne Abbott

More information

Oracle Database 11g: SQL Fundamentals I

Oracle Database 11g: SQL Fundamentals I Oracle Database 11g: SQL Fundamentals I Volume I Student Guide D49996GC11 Edition 1.1 April 2009 D59980 Authors Puja Singh Brian Pottle Technical Contributors and Reviewers Claire Bennett Tom Best Purjanti

More information

Introduction to Oracle9i: SQL Basics

Introduction to Oracle9i: SQL Basics Introduction to Oracle9i: SQL Basics Student Guide Volume 1 40057GC11 Production 1.1 November 2001 D34042 Authors Nancy Greenberg Priya Nathan Technical Contributors and Reviewers Josephine Turner Martin

More information

Introduction to Oracle9i: SQL

Introduction to Oracle9i: SQL Introduction to Oracle9i: SQL Student Guide Volume 2 40049GC11 Production 1.1 October 2001 D33991 Authors Nancy Greenberg Priya Nathan Technical Contributors and Reviewers Josephine Turner Martin Alvarez

More information

Introduction to Oracle9i: SQL Basics

Introduction to Oracle9i: SQL Basics Introduction to Oracle9i: SQL Basics Student Guide Volume 2 40057GC11 Production 1.1 November 2001 D34043 Authors Nancy Greenberg Priya Nathan Technical Contributors and Reviewers Josephine Turner Martin

More information

Table of Contents. PDF created with FinePrint pdffactory Pro trial version

Table of Contents. PDF created with FinePrint pdffactory Pro trial version Table of Contents Course Description The SQL Course covers relational database principles and Oracle concepts, writing basic SQL statements, restricting and sorting data, and using single-row functions.

More information

Oracle Database 10g: Introduction to SQL

Oracle Database 10g: Introduction to SQL ORACLE UNIVERSITY CONTACT US: 00 9714 390 9000 Oracle Database 10g: Introduction to SQL Duration: 5 Days What you will learn This course offers students an introduction to Oracle Database 10g database

More information

5. Single-row function

5. Single-row function 1. 2. Introduction Oracle 11g Oracle 11g Application Server Oracle database Relational and Object Relational Database Management system Oracle internet platform System Development Life cycle 3. Writing

More information

Oracle Database: Introduction to SQL

Oracle Database: Introduction to SQL Oracle Database: Introduction to SQL What you will learn Understanding the basic concepts of relational databases ensure refined code by developers. This course helps the participants to write subqueries,

More information

Oracle Database: Introduction to SQL Ed 2

Oracle Database: Introduction to SQL Ed 2 Oracle University Contact Us: +40 21 3678820 Oracle Database: Introduction to SQL Ed 2 Duration: 5 Days What you will learn This Oracle Database 12c: Introduction to SQL training helps you write subqueries,

More information

Oracle Database: Introduction to SQL

Oracle Database: Introduction to SQL Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database: Introduction to SQL Duration: 5 Days What you will learn This Oracle Database: Introduction to SQL training helps you write subqueries,

More information

Oracle Database: Introduction to SQL

Oracle Database: Introduction to SQL Oracle University Contact Us: (+202) 35 35 02 54 Oracle Database: Introduction to SQL Duration: 5 Days What you will learn View a newer version of this course This Oracle Database: Introduction to SQL

More information

Oracle Database 11g: Introduction to SQLRelease 2

Oracle Database 11g: Introduction to SQLRelease 2 Oracle University Contact Us: 0180 2000 526 / +49 89 14301200 Oracle Database 11g: Introduction to SQLRelease 2 Duration: 5 Days What you will learn In this course students learn the concepts of relational

More information

Oracle Database 11g: SQL and PL/SQL Fundamentals

Oracle Database 11g: SQL and PL/SQL Fundamentals Oracle University Contact Us: +33 (0) 1 57 60 20 81 Oracle Database 11g: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn In this course, students learn the fundamentals of SQL and PL/SQL

More information

Introduction to Computer Science and Business

Introduction to Computer Science and Business Introduction to Computer Science and Business This is the second portion of the Database Design and Programming with SQL course. In this portion, students implement their database design by creating a

More information

normalization are being violated o Apply the rule of Third Normal Form to resolve a violation in the model

normalization are being violated o Apply the rule of Third Normal Form to resolve a violation in the model Database Design Section1 - Introduction 1-1 Introduction to the Oracle Academy o Give examples of jobs, salaries, and opportunities that are possible by participating in the Academy. o Explain how your

More information

Oracle Database: SQL and PL/SQL Fundamentals NEW

Oracle Database: SQL and PL/SQL Fundamentals NEW Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training delivers the fundamentals of SQL and PL/SQL along with the

More information

AO3 - Version: 2. Oracle Database 11g SQL

AO3 - Version: 2. Oracle Database 11g SQL AO3 - Version: 2 Oracle Database 11g SQL Oracle Database 11g SQL AO3 - Version: 2 3 days Course Description: This course provides the essential SQL skills that allow developers to write queries against

More information

Oracle Database: SQL and PL/SQL Fundamentals Ed 2

Oracle Database: SQL and PL/SQL Fundamentals Ed 2 Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Database: SQL and PL/SQL Fundamentals Ed 2 Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals

More information

Course Outline and Objectives: Database Programming with SQL

Course Outline and Objectives: Database Programming with SQL Introduction to Computer Science and Business Course Outline and Objectives: Database Programming with SQL This is the second portion of the Database Design and Programming with SQL course. In this portion,

More information

MIS CURRICULUM. Advanced Excel Course - Working with Templates Designing the structure of a template Using templates for standardization of worksheets

MIS CURRICULUM. Advanced Excel Course - Working with Templates Designing the structure of a template Using templates for standardization of worksheets MIS CURRICULUM ADVANCE EXCEL Advanced Excel Course - Overview of the Basics of Excel Customizing common options in Excel Absolute and relative cells Protecting and un-protecting worksheets and cells Advanced

More information

Introduction to Oracle9i: SQL

Introduction to Oracle9i: SQL Introduction to Oracle9i: SQL Additional Practices Volume 3 40049GC11 Production 1.1 October 2001 D33992 Authors Nancy Greenberg Priya Nathan Technical Contributors and Reviewers Josephine Turner Martin

More information

ORACLE TRAINING. ORACLE Training Course syllabus ORACLE SQL ORACLE PLSQL. Oracle SQL Training Syllabus

ORACLE TRAINING. ORACLE Training Course syllabus ORACLE SQL ORACLE PLSQL. Oracle SQL Training Syllabus ORACLE TRAINING ORACLE Training Course syllabus ORACLE SQL ORACLE PLSQL Oracle SQL Training Syllabus Introduction to Oracle Database List the features of Oracle Database 11g Discuss the basic design, theoretical,

More information

Oracle Database 10g: SQL Fundamentals I

Oracle Database 10g: SQL Fundamentals I Oracle Database 10g: SQL Fundamentals I Electronic Presentation D17108GC11 Production 1.1 August 2004 D39769 Author Nancy Greenberg Technical Contributors and Reviewers Wayne Abbott Christian Bauwens Perry

More information

Oracle 12C DBA Online Training. Course Modules of Oracle 12C DBA Online Training: 1 Oracle Database 12c: Introduction to SQL:

Oracle 12C DBA Online Training. Course Modules of Oracle 12C DBA Online Training: 1 Oracle Database 12c: Introduction to SQL: Course Modules of Oracle 12C DBA Online Training: 1 Oracle Database 12c: Introduction to SQL: A. Introduction Course Objectives, Course Agenda and Appendixes Used in this Course Overview of Oracle Database

More information

Topics Fundamentals of PL/SQL, Integration with PROIV SuperLayer and use within Glovia

Topics Fundamentals of PL/SQL, Integration with PROIV SuperLayer and use within Glovia Topics Fundamentals of PL/SQL, Integration with PROIV SuperLayer and use within Glovia 1. Creating a Database Alias 2. Introduction to SQL Relational Database Concept Definition of Relational Database

More information

Oracle Developer Track Course Contents. Mr. Sandeep M Shinde. Oracle Application Techno-Functional Consultant

Oracle Developer Track Course Contents. Mr. Sandeep M Shinde. Oracle Application Techno-Functional Consultant Oracle Developer Track Course Contents Sandeep M Shinde Oracle Application Techno-Functional Consultant 16 Years MNC Experience in India and USA Trainer Experience Summary:- Sandeep M Shinde is having

More information

Oracle Database 10g: Advanced PL/SQL

Oracle Database 10g: Advanced PL/SQL Oracle Database 10g: Advanced PL/SQL Student Guide D17220GC10 Edition 1.0 June 2004 D39598 Authors Nancy Greenberg Aniket Raut Technical Contributors and Reviewers Andrew Brannigan Christoph Burandt Dairy

More information

SQL+PL/SQL. Introduction to SQL

SQL+PL/SQL. Introduction to SQL SQL+PL/SQL CURRICULUM Introduction to SQL Introduction to Oracle Database List the features of Oracle Database 12c Discuss the basic design, theoretical, and physical aspects of a relational database Categorize

More information

Oracle9i Database: Using OLAP

Oracle9i Database: Using OLAP Oracle9i Database: Using OLAP Student Guide D16001GC10 Edition 1.0 October 2003 D38689 Author Karen Kehn Technical Contributors and Reviewers William Endress Patricia Fay Nancy Greenberg Rosita Hanoman

More information

Oracle Database 12c SQL Fundamentals

Oracle Database 12c SQL Fundamentals Course Overview This course takes a unique approach to SQL training in that it incorporates data modeling theory, relational database theory, graphical depictions of theoretical concepts and numerous examples

More information

Oracle9i: Advanced SQL

Oracle9i: Advanced SQL Oracle9i: Advanced SQL Student Guide Volume 1 40058GC11 Production 1.1 November 2001 D34074 Authors Priya Nathan Technical Contributors and Reviewers Josephine Turner Martin Alvarez Anna Atkinson Don Bates

More information

Oracle Database: SQL and PL/SQL Fundamentals

Oracle Database: SQL and PL/SQL Fundamentals Oracle University Contact Us: 001-855-844-3881 & 001-800-514-06-9 7 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training

More information

20761 Querying Data with Transact SQL

20761 Querying Data with Transact SQL Course Overview The main purpose of this course is to give students a good understanding of the Transact-SQL language which is used by all SQL Server-related disciplines; namely, Database Administration,

More information

Oracle Database 10g: SQL Fundamentals I

Oracle Database 10g: SQL Fundamentals I Oracle Database 10g: SQL Fundamentals I Volume I Student Guide D17108GC10 Edition 1.0 March 2004 D39189 Author Nancy Greenberg Technical Contributors and Reviewers Wayne Abbott Christian Bauwens Perry

More information

Oracle Database 10g: SQL Fundamentals I

Oracle Database 10g: SQL Fundamentals I Oracle Database 10g: SQL Fundamentals I Electronic Presentation D17108GC11 Production 1.1 August 2004 D39769 Author Nancy Greenberg Technical Contributors and Reviewers Wayne Abbott Christian Bauwens Perry

More information

COURSE STUDENT LEARNING OUTCOMES: See attached or in course s learn.unm.edu

COURSE STUDENT LEARNING OUTCOMES: See attached or in course s learn.unm.edu Syllabus Online IT 222(CRN #43196) Data Base Management Systems Instructor: James Hart / hart56@unm.edu Office Room Number: B 123 Instructor's Campus Phone: 505.925.8720 / Mobile 505.239.3435 Office Hours:

More information

COURSE CONTENT. ORACLE 10g/11g DBA. web: call: (+91) / 400,

COURSE CONTENT. ORACLE 10g/11g DBA.   web:  call: (+91) / 400, COURSE CONTENT ORACLE 10g/11g DBA 1. Introduction (Database Architecture) Oracle 10g: Database Describe course objectives Explore the Oracle 10g database architecture 2: Installing the Oracle Database

More information

"Charting the Course... Oracle18c SQL (5 Day) Course Summary

Charting the Course... Oracle18c SQL (5 Day) Course Summary Course Summary Description This course provides a complete, hands-on introduction to SQL including the use of both SQL Developer and SQL*Plus. This coverage is appropriate for users of Oracle11g and higher.

More information

Certification Exam Preparation Seminar: Oracle Database SQL

Certification Exam Preparation Seminar: Oracle Database SQL Oracle University Contact Us: 0800 891 6502 Certification Exam Preparation Seminar: Oracle Database SQL Duration: 1 Day What you will learn This video seminar Certification Exam Preparation Seminar: Oracle

More information

"Charting the Course... MOC C: Querying Data with Transact-SQL. Course Summary

Charting the Course... MOC C: Querying Data with Transact-SQL. Course Summary Course Summary Description This course is designed to introduce students to Transact-SQL. It is designed in such a way that the first three days can be taught as a course to students requiring the knowledge

More information

Introduction to SQL/PLSQL Accelerated Ed 2

Introduction to SQL/PLSQL Accelerated Ed 2 Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Introduction to SQL/PLSQL Accelerated Ed 2 Duration: 5 Days What you will learn This Introduction to SQL/PLSQL Accelerated course

More information

Oracle Database: Introduction to SQL/PLSQL Accelerated

Oracle Database: Introduction to SQL/PLSQL Accelerated Oracle University Contact Us: Landline: +91 80 67863899 Toll Free: 0008004401672 Oracle Database: Introduction to SQL/PLSQL Accelerated Duration: 5 Days What you will learn This Introduction to SQL/PLSQL

More information

Oracle Database 10g: 2 Day DBA for Windows

Oracle Database 10g: 2 Day DBA for Windows Oracle Database 10g: 2 Day DBA for Windows Student Guide D18422GC10 Edition 1.0 May 2005 D41682 Author Donna K. Keesling Technical Contributors and Reviewers Lothar Auert Robert Bungenstock Jose Marco-Dominguez

More information

ORANET- Course Contents

ORANET- Course Contents ORANET- Course Contents 1. Oracle 11g SQL Fundamental-l 2. Oracle 11g Administration-l 3. Oracle 11g Administration-ll Oracle 11g Structure Query Language Fundamental-l (SQL) This Intro to SQL training

More information

Oracle9i: XML Fundamentals for Developers

Oracle9i: XML Fundamentals for Developers Oracle9i: XML Fundamentals for Developers Student Guide D14347GC10 Edition 1.0 November 2002 D37459 Author Priya Vennapusa Technical Contributors and Reviewers Scott Brewton Kyohee Chang Edward Dowgiallo

More information

Oracle9i Database: Advanced Instance Tuning

Oracle9i Database: Advanced Instance Tuning Oracle9i Database: Advanced Instance Tuning Student Guide D16442GC10 Edition 1.0 December 2002 D37574 Authors Lex de Haan Joel Goodman Technical Contributors and Reviewers Scott Gossett Christine Jeal

More information

ETL TESTING TRAINING

ETL TESTING TRAINING ETL TESTING TRAINING Retrieving Data using the SQL SELECT Statement Capabilities of the SELECT statement Arithmetic expressions and NULL values in the SELECT statement Column aliases Use of concatenation

More information

Oracle9i Database: Data Mining Techniques

Oracle9i Database: Data Mining Techniques Oracle9i Database: Data Mining Techniques Volume 1 - Student Guide D16245GC10 Edition 1.0 September 2003 D38053 Author Ramaa Mani Technical Contributors and Reviewers Gina Abeles Charlie Berger Franck

More information

Oracle SQL & PL SQL Course

Oracle SQL & PL SQL Course Oracle SQL & PL SQL Course Complete Practical & Real-time Training Job Support Complete Practical Real-Time Scenarios Resume Preparation Lab Access Training Highlights Placement Support Support Certification

More information

ORACLE CERTIFIED ASSOCIATE ORACLE DATABASE 11g ADMINISTRATOR

ORACLE CERTIFIED ASSOCIATE ORACLE DATABASE 11g ADMINISTRATOR ORACLE CERTIFIED ASSOCIATE ORACLE DATABASE 11g ADMINISTRATOR The process of becoming Oracle Database certified broadens your knowledge and skills by exposing you to a wide array of important database features,

More information

"Charting the Course to Your Success!" MOC D Querying Microsoft SQL Server Course Summary

Charting the Course to Your Success! MOC D Querying Microsoft SQL Server Course Summary Course Summary Description This 5-day instructor led course provides students with the technical skills required to write basic Transact-SQL queries for Microsoft SQL Server 2014. This course is the foundation

More information

Oracle Database 11g: SQL Fundamentals I

Oracle Database 11g: SQL Fundamentals I Oracle Database 11g: SQL Fundamentals I Volume II Student Guide D49996GC20 Edition 2.0 October 2009 D63148 Authors Salome Clement Brian Pottle Puja Singh Technical Contributors and Reviewers Anjulaponni

More information

COURSE OUTLINE MOC 20461: QUERYING MICROSOFT SQL SERVER 2014

COURSE OUTLINE MOC 20461: QUERYING MICROSOFT SQL SERVER 2014 COURSE OUTLINE MOC 20461: QUERYING MICROSOFT SQL SERVER 2014 MODULE 1: INTRODUCTION TO MICROSOFT SQL SERVER 2014 This module introduces the SQL Server platform and major tools. It discusses editions, versions,

More information

20461: Querying Microsoft SQL Server 2014 Databases

20461: Querying Microsoft SQL Server 2014 Databases Course Outline 20461: Querying Microsoft SQL Server 2014 Databases Module 1: Introduction to Microsoft SQL Server 2014 This module introduces the SQL Server platform and major tools. It discusses editions,

More information

Oracle. SQL(Structured Query Language) Introduction of DBMS. Build In Function. Introduction of RDBMS. Grouping the Result of a Query

Oracle. SQL(Structured Query Language) Introduction of DBMS. Build In Function. Introduction of RDBMS. Grouping the Result of a Query Oracle SQL(Structured Query Language) Introduction of DBMS Approach to Data Management Introduction to prerequisites File and File system Disadvantages of file system Introduction to TOAD and oracle 11g/12c

More information

Oracle 9i Forms Developer: New Features

Oracle 9i Forms Developer: New Features Oracle 9i Forms Developer: New Features Student Guide D14298GC10 Production 1.0 October 2002 D37332 Author Pam Gamer Technical Contributors and Reviewers Yanti Chang Laurent Dereac Ellen Gravina Jonas

More information

Learn Well Technocraft

Learn Well Technocraft Note: We are authorized partner and conduct global certifications for Oracle and Microsoft. The syllabus is designed based on global certification standards. This syllabus prepares you for Oracle global

More information

Language. f SQL. Larry Rockoff COURSE TECHNOLOGY. Kingdom United States. Course Technology PTR. A part ofcenqaqe Learninq

Language. f SQL. Larry Rockoff COURSE TECHNOLOGY. Kingdom United States. Course Technology PTR. A part ofcenqaqe Learninq Language f SQL Larry Rockoff Course Technology PTR A part ofcenqaqe Learninq *, COURSE TECHNOLOGY!» CENGAGE Learning- Australia Brazil Japan Korea Mexico Singapore Spain United Kingdom United States '

More information

Course Overview on Oracle 11g Database Administration (OCP)

Course Overview on Oracle 11g Database Administration (OCP) Course Overview on Oracle 11g Database Administration (OCP) Course Description Oracle Database 11g Administrator Certified Professionals have the skills and expertise to manage the Oracle 11g Database

More information

A Unit of SequelGate Innovative Technologies Pvt. Ltd. All Training Sessions are Completely Practical & Real-time

A Unit of SequelGate Innovative Technologies Pvt. Ltd. All Training Sessions are Completely Practical & Real-time SQL Basics & PL-SQL Complete Practical & Real-time Training Sessions A Unit of SequelGate Innovative Technologies Pvt. Ltd. ISO Certified Training Institute Microsoft Certified Partner Training Highlights

More information

Topics - System Administration for Glovia

Topics - System Administration for Glovia Topics - System Administration for Glovia 1. Network Architecture Sample Network 2. glovia.com Technology Architecture Application Server Database Server Web Server 3. Operating System Architecture High

More information

Greenplum SQL Class Outline

Greenplum SQL Class Outline Greenplum SQL Class Outline The Basics of Greenplum SQL Introduction SELECT * (All Columns) in a Table Fully Qualifying a Database, Schema and Table SELECT Specific Columns in a Table Commas in the Front

More information

Course Outline. Querying Data with Transact-SQL Course 20761B: 5 days Instructor Led

Course Outline. Querying Data with Transact-SQL Course 20761B: 5 days Instructor Led Querying Data with Transact-SQL Course 20761B: 5 days Instructor Led About this course This course is designed to introduce students to Transact-SQL. It is designed in such a way that the first three days

More information

Using SQL with SQL Developer 18.2

Using SQL with SQL Developer 18.2 One Introduction to SQL 2 - Definition 3 - Usage of SQL 4 - What is SQL used for? 5 - Who uses SQL? 6 - Definition of a Database 7 - What is SQL Developer? 8 Two The SQL Developer Interface 9 - Introduction

More information

Querying Data with Transact SQL

Querying Data with Transact SQL Course 20761A: Querying Data with Transact SQL Course details Course Outline Module 1: Introduction to Microsoft SQL Server 2016 This module introduces SQL Server, the versions of SQL Server, including

More information

Querying Data with Transact-SQL

Querying Data with Transact-SQL Querying Data with Transact-SQL 20761B; 5 Days; Instructor-led Course Description This course is designed to introduce students to Transact-SQL. It is designed in such a way that the first three days can

More information

T-SQL Training: T-SQL for SQL Server for Developers

T-SQL Training: T-SQL for SQL Server for Developers Duration: 3 days T-SQL Training Overview T-SQL for SQL Server for Developers training teaches developers all the Transact-SQL skills they need to develop queries and views, and manipulate data in a SQL

More information

20461: Querying Microsoft SQL Server

20461: Querying Microsoft SQL Server 20461: Querying Microsoft SQL Server Length: 5 days Audience: IT Professionals Level: 300 OVERVIEW This 5 day instructor led course provides students with the technical skills required to write basic Transact

More information

After completing this course, participants will be able to:

After completing this course, participants will be able to: Querying SQL Server T h i s f i v e - d a y i n s t r u c t o r - l e d c o u r s e p r o v i d e s p a r t i c i p a n t s w i t h t h e t e c h n i c a l s k i l l s r e q u i r e d t o w r i t e b a

More information

20761B: QUERYING DATA WITH TRANSACT-SQL

20761B: QUERYING DATA WITH TRANSACT-SQL ABOUT THIS COURSE This 5 day course is designed to introduce students to Transact-SQL. It is designed in such a way that the first three days can be taught as a course to students requiring the knowledge

More information

Oracle Database 10g: Data Guard Administration

Oracle Database 10g: Data Guard Administration Oracle Database 10g: Data Guard Administration Student Guide D17316GC11 Edition 1.1 January 2005 D40345 Authors Donna Keesling Ric Van Dyke Technical Contributors and Reviewers Christopher Andrews Larry

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

The SQL Guide to Pervasive PSQL. Rick F. van der Lans

The SQL Guide to Pervasive PSQL. Rick F. van der Lans The SQL Guide to Pervasive PSQL Rick F. van der Lans Copyright 2009 by R20/Consultancy All rights reserved; no part of this publication may be reproduced, stored in a retrieval system, or transmitted in

More information

EDUVITZ TECHNOLOGIES

EDUVITZ TECHNOLOGIES EDUVITZ TECHNOLOGIES Oracle Course Overview Oracle Training Course Prerequisites Computer Fundamentals, Windows Operating System Basic knowledge of database can be much more useful Oracle Training Course

More information

Oracle Database 10g: New Manageability Features

Oracle Database 10g: New Manageability Features Oracle Database 10g: New Manageability Features Student Guide D17030GC10 Edition 1.0 September 2003 D38639 Author Lex de Haan Technical Contributors and Reviewers Jean-Francois Verrier Christine Jeal Martin

More information

Querying Data with Transact-SQL

Querying Data with Transact-SQL Querying Data with Transact-SQL Course 20761C 5 Days Instructor-led, Hands on Course Information The main purpose of the course is to give students a good understanding of the Transact- SQL language which

More information

Oracle Database 10g: PL/SQL Fundamentals

Oracle Database 10g: PL/SQL Fundamentals Oracle Database 10g: PL/SQL Fundamentals Volume I Student Guide D17112GC30 Edition 3.0 April 2009 D59413 Authors Salome Clement Sunitha Patel Tulika Srivastava Technical Contributors and Reviewers Brian

More information

Querying Data with Transact-SQL

Querying Data with Transact-SQL Querying Data with Transact-SQL General Description This course is designed to introduce students to Transact-SQL. It is designed in such a way that the first three days can be taught as a course to students

More information

Oracle SQL Course Content

Oracle SQL Course Content Oracle SQL Course Content Introduction Describe the features of Oracle Database 12c Describe the salient features of Oracle Cloud 12c Explain the theoretical and physical aspects of a relational database

More information

Querying Data with Transact-SQL

Querying Data with Transact-SQL Querying Data with Transact-SQL Duration: 5 Days Course Code: M20761 Overview: This course is designed to introduce students to Transact-SQL. It is designed in such a way that the first three days can

More information

Querying Microsoft SQL Server (MOC 20461C)

Querying Microsoft SQL Server (MOC 20461C) Querying Microsoft SQL Server 2012-2014 (MOC 20461C) Course 21461 40 Hours This 5-day instructor led course provides students with the technical skills required to write basic Transact-SQL queries for

More information

license to use this Student Guide

license to use this Student Guide D17108GC30 Edition 3.0 January 2009 D57870 Oracle Database 10g: SQL Fundamentals I Student Guide Volume 1 Authors Salome Clement Chaitanya Koratamaddi Nancy Greenberg Technical Contributors and Reviewers

More information

Querying Data with Transact-SQL

Querying Data with Transact-SQL Querying Data with Transact-SQL Course: 20761 Course Details Audience(s): IT Professional(s) Technology: Microsoft SQL Server 2016 Duration: 24 HRs. ABOUT THIS COURSE This course is designed to introduce

More information

Oracle Database 10g: SQL Fundamentals II

Oracle Database 10g: SQL Fundamentals II D17111GC30 Edition 3.0 January 2009 D57874 Oracle Database 10g: SQL Fundamentals II Student Guide Volume 2 Authors Salome Clement Chaitanya Koratamaddi Priya Vennapusa Technical Contributors and Reviewers

More information

COURSE OUTLINE: Querying Microsoft SQL Server

COURSE OUTLINE: Querying Microsoft SQL Server Course Name 20461 Querying Microsoft SQL Server Course Duration 5 Days Course Structure Instructor-Led (Classroom) Course Overview This 5-day instructor led course provides students with the technical

More information

Microsoft Querying Microsoft SQL Server 2014

Microsoft Querying Microsoft SQL Server 2014 1800 ULEARN (853 276) www.ddls.com.au Microsoft 20461 - Querying Microsoft SQL Server 2014 Length 5 days Price $4290.00 (inc GST) Version D Overview Please note: Microsoft have released a new course which

More information

COPYRIGHTED MATERIAL. Contents. Chapter 1: Introducing T-SQL and Data Management Systems 1. Chapter 2: SQL Server Fundamentals 23.

COPYRIGHTED MATERIAL. Contents. Chapter 1: Introducing T-SQL and Data Management Systems 1. Chapter 2: SQL Server Fundamentals 23. Introduction Chapter 1: Introducing T-SQL and Data Management Systems 1 T-SQL Language 1 Programming Language or Query Language? 2 What s New in SQL Server 2008 3 Database Management Systems 4 SQL Server

More information

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES Corporate Trainer s Profile Corporate Trainers are having the experience of 4 to 12 years in development, working with TOP CMM level 5 comapnies (Project Leader /Project Manager ) qualified from NIT/IIT/IIM

More information

Oracle Database 10g: PL/SQL Fundamentals

Oracle Database 10g: PL/SQL Fundamentals Oracle Database 10g: PL/SQL Fundamentals Volume 1 Student Guide D17112GC21 Edition 2.1 December 2006 D48243 Authors Tulika Srivastava Sunitha Patel Technical Contributors and Reviewers Chaitanya Koratamaddi

More information

ORACLE DEV 11G CURRICULUM. Introduction to SQL

ORACLE DEV 11G CURRICULUM. Introduction to SQL ORACLE DEV 11G CURRICULUM Introduction to SQL Introduction to Oracle Database List the features of Oracle Database 12c Discuss the basic design, theoretical, and physical aspects of a relational database

More information

Course 20461C: Querying Microsoft SQL Server

Course 20461C: Querying Microsoft SQL Server Course 20461C: Querying Microsoft SQL Server Audience Profile About this Course This course is the foundation for all SQL Serverrelated disciplines; namely, Database Administration, Database Development

More information

Querying Microsoft SQL Server

Querying Microsoft SQL Server Querying Microsoft SQL Server 20461D; 5 days, Instructor-led Course Description This 5-day instructor led course provides students with the technical skills required to write basic Transact SQL queries

More information

Microsoft Querying Data with Transact-SQL - Performance Course

Microsoft Querying Data with Transact-SQL - Performance Course 1800 ULEARN (853 276) www.ddls.com.au Microsoft 20761 - Querying Data with Transact-SQL - Performance Course Length 4 days Price $4290.00 (inc GST) Version C Overview This course is designed to introduce

More information

11i ebusiness Suite Essentials for Implementers

11i ebusiness Suite Essentials for Implementers 11i ebusiness Suite Essentials for Implementers Student Guide D13762GC40 Edition 4.0 March 2005 D41388 This documentation contains proprietary information of Oracle Corporation. It is provided under a

More information

Study Guide for: Oracle Database SQL Certified Expert Exam Guide (Exam 1Z0-047)

Study Guide for: Oracle Database SQL Certified Expert Exam Guide (Exam 1Z0-047) Study Guide for: Oracle Database SQL Certified Expert Exam Guide (Exam 1Z0-047) Study Material for: Student 08.10.2010 15:49:30 Examine the following data listing for table WORKERS: WORKER_ID LAST_NAME

More information

Oracle Agile 9.3 New Features Student Guide

Oracle Agile 9.3 New Features Student Guide Oracle Agile 9.3 New Features Student Guide D59403GC10 Edition 1.0 May 2009 D59432 Copyright Oracle Corporation, 2009. All rights reserved. This documentation contains proprietary information of Oracle

More information