SlideShare a Scribd company logo
BY
KMR Software Services
http://www.kmrsoft.com
Email: info@kmrsoft.com / kmrss.oracle@gmail.com
Phone : +91 7032598380
Skype : KMRSS.SAP
WWW.FACEBOOK.COM/KMRSOFTWARE
ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd.
Email : info@kmrsoft.com / kmrss.oracle@gmail.com
 List the features of Oracle Database 11g
 Discuss the basic design, theoretical, and
physical aspects of a relational database
 Categorize the different types of SQL
statements
 Describe the data set used by the course
 Log on to the database using SQL Developer
environment
 Save queries to files and use script files in SQL
Developer
ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd.
Email : info@kmrsoft.com / kmrss.oracle@gmail.com
 List the capabilities of SQL SELECT statements
 Generate a report of data from the output of a
basic SELECT statement
 Select All Columns
 Select Specific Columns
 Use Column Heading Defaults
 Use Arithmetic Operators
 Understand Operator Precedence
 Learn the DESCRIBE command to display the table
structure
ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd.
Email : info@kmrsoft.com / kmrss.oracle@gmail.com
 Write queries that contain a WHERE clause to
limit the output retrieved
 List the comparison operators and logical
operators that are used in a WHERE clause
 Describe the rules of precedence for comparison
and logical operators
 Use character string literals in the WHERE clause
 Write queries that contain an ORDER BY clause
to sort the output of a SELECT statement
 Sort output in descending and ascending order
ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd.
Email : info@kmrsoft.com / kmrss.oracle@gmail.com
 Describe the differences between single row and
multiple row functions
 Manipulate strings with character function in the
SELECT and WHERE clauses
 Manipulate numbers with the ROUND, TRUNC,
and MOD functions
 Perform arithmetic with date data
 Manipulate dates with the DATE functions
ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd.
Email : info@kmrsoft.com / kmrss.oracle@gmail.com
 Describe implicit and explicit data type
conversion
 Use the TO_CHAR, TO_NUMBER, and TO_DATE
conversion functions
 Nest multiple functions
 Apply the NVL, NULLIF, and COALESCE
functions to data
 Use conditional IF THEN ELSE logic in a
SELECT statement
ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd.
Email : info@kmrsoft.com / kmrss.oracle@gmail.com
 Use the aggregation functions to produce
meaningful reports
 Divide the retrieved data in groups by using
the GROUP BY clause
 Exclude groups of data by using the HAVING
clause
ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd.
Email : info@kmrsoft.com / kmrss.oracle@gmail.com
 Write SELECT statements to access data from
more than one table
 View data that generally does not meet a
join condition by using outer joins
 Join a table to itself by using a self join
ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd.
Email : info@kmrsoft.com / kmrss.oracle@gmail.com
 Describe the types of problem that sub-
queries can solve
 Define sub-queries
 List the types of sub-queries
 Write single-row and multiple-row sub-
queries
ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd.
Email : info@kmrsoft.com / kmrss.oracle@gmail.com
 Describe the SET operators
 Use a SET operator to combine multiple
queries into a single query
 Control the order of rows returned
ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd.
Email : info@kmrsoft.com / kmrss.oracle@gmail.com
 Describe each DML statement
 Insert rows into a table
 Change rows in a table by the UPDATE
statement
 Delete rows from a table with the DELETE
statement
 Save and discard changes with the COMMIT
and ROLLBACK statements
 Explain read consistency
ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd.
Email : info@kmrsoft.com / kmrss.oracle@gmail.com
 Categorize the main database objects
 Review the table structure
 List the data types available for columns
 Create a simple table
 Decipher how constraints can be created at
table creation
 Describe how schema objects work
ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd.
Email : info@kmrsoft.com / kmrss.oracle@gmail.com
 Create a simple and complex view
 Retrieve data from views
 Create, maintain, and use sequences
 Create and maintain indexes
 Create private and public synonyms
ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd.
Email : info@kmrsoft.com / kmrss.oracle@gmail.com
 Differentiate system privileges from object
privileges
 Create Users
 Grant System Privileges
 Create and Grant Privileges to a Role
 Change Your Password
 Grant Object Privileges
 How to pass on privileges?
 Revoke Object Privileges
ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd.
Email : info@kmrsoft.com / kmrss.oracle@gmail.com
Add, Modify, and Drop a Column
Add, Drop, and Defer a Constraint
How to enable and Disable a Constraint?
Create and Remove Indexes
Create a Function-Based Index
Perform Flashback Operations
Create an External Table by Using
ORACLE_LOADER and by Using
ORACLE_DATAPUMP
 Query External Tables
ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd.
Email : info@kmrsoft.com / kmrss.oracle@gmail.com
 Explain the data dictionary
 Use the Dictionary Views
 USER_OBJECTS and ALL_OBJECTS Views
 Table and Column Information
 Query the dictionary views for constraint
information
 Query the dictionary views for view,
sequence, index and synonym information
 Add a comment to a table
 Query the dictionary views for comment
information
ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd.
Email : info@kmrsoft.com / kmrss.oracle@gmail.com
 Use Subqueries to Manipulate Data
 Retrieve Data Using a Subquery as Source
 Insert Using a Subquery as a Target
 Usage of the WITH CHECK OPTION Keyword
on DML Statements
 List the types of Multitable INSERT
Statements
 Use Multitable INSERT Statements
 Merge rows in a table
 Track Changes in Data over a period of time
ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd.
Email : info@kmrsoft.com / kmrss.oracle@gmail.com
 Time Zones
 CURRENT_DATE, CURRENT_TIMESTAMP, and
LOCALTIMESTAMP
 Compare Date and Time in a Session’s Time
Zone
 DBTIMEZONE and SESSIONTIMEZONE
 Difference between DATE and TIMESTAMP
 INTERVAL Data Types
 Use EXTRACT, TZ_OFFSET and FROM_TZ
 Invoke TO_TIMESTAMP,TO_YMINTERVAL and
TO_DSINTERVAL
ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd.
Email : info@kmrsoft.com / kmrss.oracle@gmail.com
 Multiple-Column Subqueries
 Pairwise and Nonpairwise Comparison
 Scalar Subquery Expressions
 Solve problems with Correlated Subqueries
 Update and Delete Rows Using Correlated
Subqueries
 The EXISTS and NOT EXISTS operators
 Invoke the WITH clause
 The Recursive WITH clause
ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd.
Email : info@kmrsoft.com / kmrss.oracle@gmail.com
 Use the Regular Expressions Functions and
Conditions in SQL
 Use Meta Characters with Regular Expressions
 Perform a Basic Search using the REGEXP_LIKE
function
 Find patterns using the REGEXP_INSTR function
 Extract Substrings using the REGEXP_SUBSTR
function
 Replace Patterns Using the REGEXP_REPLACE
function
 Usage of Sub-Expressions with Regular Expression
Support
 Implement the REGEXP_COUNT function
 Copyright
ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd.
Email : info@kmrsoft.com / kmrss.oracle@gmail.com
KMR Software Services
http://www.kmrsoft.com
Email: info@kmrsoft.com / kmrss.oracle@gmail.com
Phone : +91 7032598380
Skype : KMRSS.SAP
WWW.FACEBOOK.COM/KMRSOFTWARE

More Related Content

PPT
Sql Summit Clr, Service Broker And Xml
PPT
Hibernate training mumbai_hql
DOC
Oracle notes
PPTX
Oracle Sql Developer Data Modeler 3 3 new features
PDF
Graph db as metastore
PPTX
MS SQL SERVER: Programming sql server data mining
PDF
Deep dive into the native multi model database ArangoDB
PPTX
Ordina Oracle Open World
Sql Summit Clr, Service Broker And Xml
Hibernate training mumbai_hql
Oracle notes
Oracle Sql Developer Data Modeler 3 3 new features
Graph db as metastore
MS SQL SERVER: Programming sql server data mining
Deep dive into the native multi model database ArangoDB
Ordina Oracle Open World

What's hot (20)

PPT
SQL Server 2008 for Developers
PPT
Tech Days09 Sqldev
PPT
Les04
PPTX
Lab1 select statement
PPTX
New T-SQL Features in SQL Server 2012
PPT
For Beginers - ADO.Net
PPT
Ado.net
PPT
vFabric SQLFire for high performance data
PPT
OWB11gR2 - Extending ETL
PPTX
ADO.NET -database connection
PPT
Eo gaddis java_chapter_16_5e
PPT
SQL : introduction
PPTX
Ado .net
PPT
2005 - .NET Chaostage: 1st class data driven applications with ASP.NET 2.0
PDF
Ch04
PPTX
Chapter 3: ado.net
PDF
Oracle SQL Basics
PPTX
SQLPASS AD501-M XQuery MRys
PPTX
Practical OData
SQL Server 2008 for Developers
Tech Days09 Sqldev
Les04
Lab1 select statement
New T-SQL Features in SQL Server 2012
For Beginers - ADO.Net
Ado.net
vFabric SQLFire for high performance data
OWB11gR2 - Extending ETL
ADO.NET -database connection
Eo gaddis java_chapter_16_5e
SQL : introduction
Ado .net
2005 - .NET Chaostage: 1st class data driven applications with ASP.NET 2.0
Ch04
Chapter 3: ado.net
Oracle SQL Basics
SQLPASS AD501-M XQuery MRys
Practical OData
Ad

Viewers also liked (17)

PPT
Ninja networking training
PDF
Oracle primavera and bpm the power of integration ppt
PPT
PDoolan Oracle Overview PPT Version
PPT
Introduction to OBIEE 11g
PPT
obiee basics ppt
PDF
OBIEE & Essbase Integration with Oracle BI Foundation 11.1.1.7 (ODTUG 2013)
PDF
Mongo DB
PDF
Introduction to MongoDB
KEY
Hadoop, Pig, and Twitter (NoSQL East 2009)
PPTX
Ppt 7 network marketing
PDF
Hive Quick Start Tutorial
PPT
HIVE: Data Warehousing & Analytics on Hadoop
PPT
Introduction to MongoDB
PPTX
What is big data?
PDF
Intro To MongoDB
PPTX
Big data ppt
PPTX
Big Data Analytics with Hadoop
Ninja networking training
Oracle primavera and bpm the power of integration ppt
PDoolan Oracle Overview PPT Version
Introduction to OBIEE 11g
obiee basics ppt
OBIEE & Essbase Integration with Oracle BI Foundation 11.1.1.7 (ODTUG 2013)
Mongo DB
Introduction to MongoDB
Hadoop, Pig, and Twitter (NoSQL East 2009)
Ppt 7 network marketing
Hive Quick Start Tutorial
HIVE: Data Warehousing & Analytics on Hadoop
Introduction to MongoDB
What is big data?
Intro To MongoDB
Big data ppt
Big Data Analytics with Hadoop
Ad

Similar to ORACLE BY KMR SOFTWARE SERVICES (20)

PPT
Oracle Training Tutorial for Beginners
DOCX
Oracle SQL Training in Chennai, Tambaram
PDF
Oracle 11g structured query language (sql)
PPTX
Introduction to Database SQL & PL/SQL
PDF
Winter course
PDF
Oracle Sqlplus Pocket Reference 3rd Ed Jonathan Gennick
PPT
PPT
Introduction to Oracle
PPT
Introduction to Oracle
PDF
Oracle11gdevtrainingindelhincr
PPTX
Orcale dba training
PPTX
Oracle DBA Training in Hyderabad
PPTX
Oracle DBA Training in Hyderabad
PDF
Oracle SQL Plus pocket reference 3rd ed Edition Jonathan Gennick
PPT
Introduction to Threading in .Net
PDF
SQL & Adv SQL - Basics and Advanced for Beginners
PDF
Presenter manual oracle D2K (specially for summer interns)
PDF
Oracle Text in APEX
PPTX
Summer '16 Realease notes
PPTX
War of the Indices- SQL Server and Oracle
Oracle Training Tutorial for Beginners
Oracle SQL Training in Chennai, Tambaram
Oracle 11g structured query language (sql)
Introduction to Database SQL & PL/SQL
Winter course
Oracle Sqlplus Pocket Reference 3rd Ed Jonathan Gennick
Introduction to Oracle
Introduction to Oracle
Oracle11gdevtrainingindelhincr
Orcale dba training
Oracle DBA Training in Hyderabad
Oracle DBA Training in Hyderabad
Oracle SQL Plus pocket reference 3rd ed Edition Jonathan Gennick
Introduction to Threading in .Net
SQL & Adv SQL - Basics and Advanced for Beginners
Presenter manual oracle D2K (specially for summer interns)
Oracle Text in APEX
Summer '16 Realease notes
War of the Indices- SQL Server and Oracle

More from KMR SOFTWARE SERVICES PVT LTD (20)

PDF
UNIGRAPHICS ONLINE TRAINING BY KMR
PDF
SAP FSCM ONLINE TRAINING BY KMR
PDF
SAP HANA ADMIN Course Content
PDF
SAP IS Oil and Gas oil Course Content
PDF
SAP FICO Overview
PDF
SAP PI online training course content
PDF
SAP FICO ONLINE TRAINING
PDF
ECM change type configuration document by kmr
PDF
SAP cFolders Training
PDF
SAP Document Management System(DMS)-PLM 120
PDF
SAP Engineering Change Management(ECM)
PDF
SAP PLM Online Training Complete Hand Book
PDF
SAP Variant Configuration example by KMR software
PDF
SAP PLM training by kmr software services
PDF
PDF
SAP CRM functional overview training
PDF
SAP CRM technical training
PPTX
SAP Materials Management Overview
PPTX
SAP PPM 5.0 Trainings
UNIGRAPHICS ONLINE TRAINING BY KMR
SAP FSCM ONLINE TRAINING BY KMR
SAP HANA ADMIN Course Content
SAP IS Oil and Gas oil Course Content
SAP FICO Overview
SAP PI online training course content
SAP FICO ONLINE TRAINING
ECM change type configuration document by kmr
SAP cFolders Training
SAP Document Management System(DMS)-PLM 120
SAP Engineering Change Management(ECM)
SAP PLM Online Training Complete Hand Book
SAP Variant Configuration example by KMR software
SAP PLM training by kmr software services
SAP CRM functional overview training
SAP CRM technical training
SAP Materials Management Overview
SAP PPM 5.0 Trainings

Recently uploaded (20)

PPTX
Microbial diseases, their pathogenesis and prophylaxis
PPTX
master seminar digital applications in india
PDF
Computing-Curriculum for Schools in Ghana
PDF
01-Introduction-to-Information-Management.pdf
PDF
Complications of Minimal Access Surgery at WLH
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PPTX
PPH.pptx obstetrics and gynecology in nursing
PPTX
Cell Structure & Organelles in detailed.
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
Pre independence Education in Inndia.pdf
Microbial diseases, their pathogenesis and prophylaxis
master seminar digital applications in india
Computing-Curriculum for Schools in Ghana
01-Introduction-to-Information-Management.pdf
Complications of Minimal Access Surgery at WLH
Module 4: Burden of Disease Tutorial Slides S2 2025
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
2.FourierTransform-ShortQuestionswithAnswers.pdf
PPH.pptx obstetrics and gynecology in nursing
Cell Structure & Organelles in detailed.
Final Presentation General Medicine 03-08-2024.pptx
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
102 student loan defaulters named and shamed – Is someone you know on the list?
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Pre independence Education in Inndia.pdf

ORACLE BY KMR SOFTWARE SERVICES

  • 1. BY KMR Software Services http://www.kmrsoft.com Email: info@kmrsoft.com / kmrss.oracle@gmail.com Phone : +91 7032598380 Skype : KMRSS.SAP WWW.FACEBOOK.COM/KMRSOFTWARE ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd. Email : info@kmrsoft.com / kmrss.oracle@gmail.com
  • 2.  List the features of Oracle Database 11g  Discuss the basic design, theoretical, and physical aspects of a relational database  Categorize the different types of SQL statements  Describe the data set used by the course  Log on to the database using SQL Developer environment  Save queries to files and use script files in SQL Developer ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd. Email : info@kmrsoft.com / kmrss.oracle@gmail.com
  • 3.  List the capabilities of SQL SELECT statements  Generate a report of data from the output of a basic SELECT statement  Select All Columns  Select Specific Columns  Use Column Heading Defaults  Use Arithmetic Operators  Understand Operator Precedence  Learn the DESCRIBE command to display the table structure ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd. Email : info@kmrsoft.com / kmrss.oracle@gmail.com
  • 4.  Write queries that contain a WHERE clause to limit the output retrieved  List the comparison operators and logical operators that are used in a WHERE clause  Describe the rules of precedence for comparison and logical operators  Use character string literals in the WHERE clause  Write queries that contain an ORDER BY clause to sort the output of a SELECT statement  Sort output in descending and ascending order ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd. Email : info@kmrsoft.com / kmrss.oracle@gmail.com
  • 5.  Describe the differences between single row and multiple row functions  Manipulate strings with character function in the SELECT and WHERE clauses  Manipulate numbers with the ROUND, TRUNC, and MOD functions  Perform arithmetic with date data  Manipulate dates with the DATE functions ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd. Email : info@kmrsoft.com / kmrss.oracle@gmail.com
  • 6.  Describe implicit and explicit data type conversion  Use the TO_CHAR, TO_NUMBER, and TO_DATE conversion functions  Nest multiple functions  Apply the NVL, NULLIF, and COALESCE functions to data  Use conditional IF THEN ELSE logic in a SELECT statement ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd. Email : info@kmrsoft.com / kmrss.oracle@gmail.com
  • 7.  Use the aggregation functions to produce meaningful reports  Divide the retrieved data in groups by using the GROUP BY clause  Exclude groups of data by using the HAVING clause ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd. Email : info@kmrsoft.com / kmrss.oracle@gmail.com
  • 8.  Write SELECT statements to access data from more than one table  View data that generally does not meet a join condition by using outer joins  Join a table to itself by using a self join ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd. Email : info@kmrsoft.com / kmrss.oracle@gmail.com
  • 9.  Describe the types of problem that sub- queries can solve  Define sub-queries  List the types of sub-queries  Write single-row and multiple-row sub- queries ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd. Email : info@kmrsoft.com / kmrss.oracle@gmail.com
  • 10.  Describe the SET operators  Use a SET operator to combine multiple queries into a single query  Control the order of rows returned ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd. Email : info@kmrsoft.com / kmrss.oracle@gmail.com
  • 11.  Describe each DML statement  Insert rows into a table  Change rows in a table by the UPDATE statement  Delete rows from a table with the DELETE statement  Save and discard changes with the COMMIT and ROLLBACK statements  Explain read consistency ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd. Email : info@kmrsoft.com / kmrss.oracle@gmail.com
  • 12.  Categorize the main database objects  Review the table structure  List the data types available for columns  Create a simple table  Decipher how constraints can be created at table creation  Describe how schema objects work ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd. Email : info@kmrsoft.com / kmrss.oracle@gmail.com
  • 13.  Create a simple and complex view  Retrieve data from views  Create, maintain, and use sequences  Create and maintain indexes  Create private and public synonyms ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd. Email : info@kmrsoft.com / kmrss.oracle@gmail.com
  • 14.  Differentiate system privileges from object privileges  Create Users  Grant System Privileges  Create and Grant Privileges to a Role  Change Your Password  Grant Object Privileges  How to pass on privileges?  Revoke Object Privileges ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd. Email : info@kmrsoft.com / kmrss.oracle@gmail.com
  • 15. Add, Modify, and Drop a Column Add, Drop, and Defer a Constraint How to enable and Disable a Constraint? Create and Remove Indexes Create a Function-Based Index Perform Flashback Operations Create an External Table by Using ORACLE_LOADER and by Using ORACLE_DATAPUMP  Query External Tables ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd. Email : info@kmrsoft.com / kmrss.oracle@gmail.com
  • 16.  Explain the data dictionary  Use the Dictionary Views  USER_OBJECTS and ALL_OBJECTS Views  Table and Column Information  Query the dictionary views for constraint information  Query the dictionary views for view, sequence, index and synonym information  Add a comment to a table  Query the dictionary views for comment information ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd. Email : info@kmrsoft.com / kmrss.oracle@gmail.com
  • 17.  Use Subqueries to Manipulate Data  Retrieve Data Using a Subquery as Source  Insert Using a Subquery as a Target  Usage of the WITH CHECK OPTION Keyword on DML Statements  List the types of Multitable INSERT Statements  Use Multitable INSERT Statements  Merge rows in a table  Track Changes in Data over a period of time ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd. Email : info@kmrsoft.com / kmrss.oracle@gmail.com
  • 18.  Time Zones  CURRENT_DATE, CURRENT_TIMESTAMP, and LOCALTIMESTAMP  Compare Date and Time in a Session’s Time Zone  DBTIMEZONE and SESSIONTIMEZONE  Difference between DATE and TIMESTAMP  INTERVAL Data Types  Use EXTRACT, TZ_OFFSET and FROM_TZ  Invoke TO_TIMESTAMP,TO_YMINTERVAL and TO_DSINTERVAL ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd. Email : info@kmrsoft.com / kmrss.oracle@gmail.com
  • 19.  Multiple-Column Subqueries  Pairwise and Nonpairwise Comparison  Scalar Subquery Expressions  Solve problems with Correlated Subqueries  Update and Delete Rows Using Correlated Subqueries  The EXISTS and NOT EXISTS operators  Invoke the WITH clause  The Recursive WITH clause ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd. Email : info@kmrsoft.com / kmrss.oracle@gmail.com
  • 20.  Use the Regular Expressions Functions and Conditions in SQL  Use Meta Characters with Regular Expressions  Perform a Basic Search using the REGEXP_LIKE function  Find patterns using the REGEXP_INSTR function  Extract Substrings using the REGEXP_SUBSTR function  Replace Patterns Using the REGEXP_REPLACE function  Usage of Sub-Expressions with Regular Expression Support  Implement the REGEXP_COUNT function  Copyright ORACLE ,HADOOP AND SAP Trainings by KMR Software Services Pvt Ltd. Email : info@kmrsoft.com / kmrss.oracle@gmail.com
  • 21. KMR Software Services http://www.kmrsoft.com Email: info@kmrsoft.com / kmrss.oracle@gmail.com Phone : +91 7032598380 Skype : KMRSS.SAP WWW.FACEBOOK.COM/KMRSOFTWARE