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

What's hot

SQL Server 2008 for Developers
SQL Server 2008 for DevelopersSQL Server 2008 for Developers
SQL Server 2008 for Developers
llangit
 
Tech Days09 Sqldev
Tech Days09 SqldevTech Days09 Sqldev
Tech Days09 Sqldev
llangit
 
Lab1 select statement
Lab1 select statementLab1 select statement
Lab1 select statement
Balqees Al.Mubarak
 
New T-SQL Features in SQL Server 2012
New T-SQL Features in SQL Server 2012 New T-SQL Features in SQL Server 2012
New T-SQL Features in SQL Server 2012
Richie Rump
 
For Beginers - ADO.Net
For Beginers - ADO.NetFor Beginers - ADO.Net
For Beginers - ADO.Net
Snehal Harawande
 
Ado.net
Ado.netAdo.net
Ado.net
dina1985vlr
 
vFabric SQLFire for high performance data
vFabric SQLFire for high performance datavFabric SQLFire for high performance data
vFabric SQLFire for high performance data
VMware vFabric
 
OWB11gR2 - Extending ETL
OWB11gR2 - Extending ETL OWB11gR2 - Extending ETL
OWB11gR2 - Extending ETL Suraj Bang
 
ADO.NET -database connection
ADO.NET -database connectionADO.NET -database connection
ADO.NET -database connection
Anekwong Yoddumnern
 
Eo gaddis java_chapter_16_5e
Eo gaddis java_chapter_16_5eEo gaddis java_chapter_16_5e
Eo gaddis java_chapter_16_5e
Gina Bullock
 
SQL : introduction
SQL : introductionSQL : introduction
SQL : introduction
Shakila Mahjabin
 
Ado .net
Ado .netAdo .net
Ado .net
Manish Singh
 
2005 - .NET Chaostage: 1st class data driven applications with ASP.NET 2.0
2005 - .NET Chaostage: 1st class data driven applications with ASP.NET 2.02005 - .NET Chaostage: 1st class data driven applications with ASP.NET 2.0
2005 - .NET Chaostage: 1st class data driven applications with ASP.NET 2.0Daniel Fisher
 
Ch04
Ch04Ch04
Ch04
cs19club
 
Chapter 3: ado.net
Chapter 3: ado.netChapter 3: ado.net
Chapter 3: ado.net
Ngeam Soly
 
Oracle SQL Basics
Oracle SQL BasicsOracle SQL Basics
Oracle SQL Basics
Dhananjay Goel
 
SQLPASS AD501-M XQuery MRys
SQLPASS AD501-M XQuery MRysSQLPASS AD501-M XQuery MRys
SQLPASS AD501-M XQuery MRys
Michael Rys
 
Practical OData
Practical ODataPractical OData
Practical OData
Vagif Abilov
 

What's hot (20)

SQL Server 2008 for Developers
SQL Server 2008 for DevelopersSQL Server 2008 for Developers
SQL Server 2008 for Developers
 
Tech Days09 Sqldev
Tech Days09 SqldevTech Days09 Sqldev
Tech Days09 Sqldev
 
Les04
Les04Les04
Les04
 
Lab1 select statement
Lab1 select statementLab1 select statement
Lab1 select statement
 
Les08
Les08Les08
Les08
 
New T-SQL Features in SQL Server 2012
New T-SQL Features in SQL Server 2012 New T-SQL Features in SQL Server 2012
New T-SQL Features in SQL Server 2012
 
For Beginers - ADO.Net
For Beginers - ADO.NetFor Beginers - ADO.Net
For Beginers - ADO.Net
 
Ado.net
Ado.netAdo.net
Ado.net
 
vFabric SQLFire for high performance data
vFabric SQLFire for high performance datavFabric SQLFire for high performance data
vFabric SQLFire for high performance data
 
OWB11gR2 - Extending ETL
OWB11gR2 - Extending ETL OWB11gR2 - Extending ETL
OWB11gR2 - Extending ETL
 
ADO.NET -database connection
ADO.NET -database connectionADO.NET -database connection
ADO.NET -database connection
 
Eo gaddis java_chapter_16_5e
Eo gaddis java_chapter_16_5eEo gaddis java_chapter_16_5e
Eo gaddis java_chapter_16_5e
 
SQL : introduction
SQL : introductionSQL : introduction
SQL : introduction
 
Ado .net
Ado .netAdo .net
Ado .net
 
2005 - .NET Chaostage: 1st class data driven applications with ASP.NET 2.0
2005 - .NET Chaostage: 1st class data driven applications with ASP.NET 2.02005 - .NET Chaostage: 1st class data driven applications with ASP.NET 2.0
2005 - .NET Chaostage: 1st class data driven applications with ASP.NET 2.0
 
Ch04
Ch04Ch04
Ch04
 
Chapter 3: ado.net
Chapter 3: ado.netChapter 3: ado.net
Chapter 3: ado.net
 
Oracle SQL Basics
Oracle SQL BasicsOracle SQL Basics
Oracle SQL Basics
 
SQLPASS AD501-M XQuery MRys
SQLPASS AD501-M XQuery MRysSQLPASS AD501-M XQuery MRys
SQLPASS AD501-M XQuery MRys
 
Practical OData
Practical ODataPractical OData
Practical OData
 

Viewers also liked

Ninja networking training
Ninja networking trainingNinja networking training
Ninja networking trainingBryan Daly
 
Oracle primavera and bpm the power of integration ppt
Oracle primavera and bpm   the power of integration pptOracle primavera and bpm   the power of integration ppt
Oracle primavera and bpm the power of integration pptp6academy
 
PDoolan Oracle Overview PPT Version
PDoolan Oracle Overview PPT VersionPDoolan Oracle Overview PPT Version
PDoolan Oracle Overview PPT Version
Peter Doolan
 
Introduction to OBIEE 11g
Introduction to OBIEE 11gIntroduction to OBIEE 11g
Introduction to OBIEE 11g
iWare Logic Technologies Pvt. Ltd.
 
obiee basics ppt
obiee basics pptobiee basics ppt
obiee basics ppt
rajtrainings
 
OBIEE & Essbase Integration with Oracle BI Foundation 11.1.1.7 (ODTUG 2013)
OBIEE & Essbase Integration with Oracle BI Foundation 11.1.1.7 (ODTUG 2013)OBIEE & Essbase Integration with Oracle BI Foundation 11.1.1.7 (ODTUG 2013)
OBIEE & Essbase Integration with Oracle BI Foundation 11.1.1.7 (ODTUG 2013)
Mark Rittman
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
Mike Dirolf
 
Hadoop, Pig, and Twitter (NoSQL East 2009)
Hadoop, Pig, and Twitter (NoSQL East 2009)Hadoop, Pig, and Twitter (NoSQL East 2009)
Hadoop, Pig, and Twitter (NoSQL East 2009)
Kevin Weil
 
Ppt 7 network marketing
Ppt 7  network marketingPpt 7  network marketing
Ppt 7 network marketing
Наталья Невзорова
 
Hive Quick Start Tutorial
Hive Quick Start TutorialHive Quick Start Tutorial
Hive Quick Start Tutorial
Carl Steinbach
 
HIVE: Data Warehousing & Analytics on Hadoop
HIVE: Data Warehousing & Analytics on HadoopHIVE: Data Warehousing & Analytics on Hadoop
HIVE: Data Warehousing & Analytics on HadoopZheng Shao
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
Ravi Teja
 
What is big data?
What is big data?What is big data?
What is big data?
David Wellman
 
Intro To MongoDB
Intro To MongoDBIntro To MongoDB
Intro To MongoDB
Alex Sharp
 
Big Data Analytics with Hadoop
Big Data Analytics with HadoopBig Data Analytics with Hadoop
Big Data Analytics with Hadoop
Philippe Julio
 

Viewers also liked (17)

Ninja networking training
Ninja networking trainingNinja networking training
Ninja networking training
 
Oracle primavera and bpm the power of integration ppt
Oracle primavera and bpm   the power of integration pptOracle primavera and bpm   the power of integration ppt
Oracle primavera and bpm the power of integration ppt
 
PDoolan Oracle Overview PPT Version
PDoolan Oracle Overview PPT VersionPDoolan Oracle Overview PPT Version
PDoolan Oracle Overview PPT Version
 
Introduction to OBIEE 11g
Introduction to OBIEE 11gIntroduction to OBIEE 11g
Introduction to OBIEE 11g
 
obiee basics ppt
obiee basics pptobiee basics ppt
obiee basics ppt
 
OBIEE & Essbase Integration with Oracle BI Foundation 11.1.1.7 (ODTUG 2013)
OBIEE & Essbase Integration with Oracle BI Foundation 11.1.1.7 (ODTUG 2013)OBIEE & Essbase Integration with Oracle BI Foundation 11.1.1.7 (ODTUG 2013)
OBIEE & Essbase Integration with Oracle BI Foundation 11.1.1.7 (ODTUG 2013)
 
Mongo DB
Mongo DBMongo DB
Mongo DB
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
 
Hadoop, Pig, and Twitter (NoSQL East 2009)
Hadoop, Pig, and Twitter (NoSQL East 2009)Hadoop, Pig, and Twitter (NoSQL East 2009)
Hadoop, Pig, and Twitter (NoSQL East 2009)
 
Ppt 7 network marketing
Ppt 7  network marketingPpt 7  network marketing
Ppt 7 network marketing
 
Hive Quick Start Tutorial
Hive Quick Start TutorialHive Quick Start Tutorial
Hive Quick Start Tutorial
 
HIVE: Data Warehousing & Analytics on Hadoop
HIVE: Data Warehousing & Analytics on HadoopHIVE: Data Warehousing & Analytics on Hadoop
HIVE: Data Warehousing & Analytics on Hadoop
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
 
What is big data?
What is big data?What is big data?
What is big data?
 
Intro To MongoDB
Intro To MongoDBIntro To MongoDB
Intro To MongoDB
 
Big data ppt
Big  data pptBig  data ppt
Big data ppt
 
Big Data Analytics with Hadoop
Big Data Analytics with HadoopBig Data Analytics with Hadoop
Big Data Analytics with Hadoop
 

Similar to ORACLE BY KMR SOFTWARE SERVICES

Oracle Training Tutorial for Beginners
Oracle Training Tutorial for BeginnersOracle Training Tutorial for Beginners
Oracle Training Tutorial for Beginners
rajkamaltibacademy
 
Oracle 11g structured query language (sql)
Oracle 11g structured query language (sql)Oracle 11g structured query language (sql)
Oracle 11g structured query language (sql)elshiekh1980
 
Introduction to Database SQL & PL/SQL
Introduction to Database SQL & PL/SQLIntroduction to Database SQL & PL/SQL
Introduction to Database SQL & PL/SQL
Collaboration Technologies
 
Intro
IntroIntro
Introduction to Oracle
Introduction to OracleIntroduction to Oracle
Introduction to Oracle
Achmad Solichin
 
Introduction to Oracle
Introduction to OracleIntroduction to Oracle
Introduction to Oracle
Achmad Solichin
 
Oracle11gdevtrainingindelhincr
Oracle11gdevtrainingindelhincrOracle11gdevtrainingindelhincr
Oracle11gdevtrainingindelhincr
ducat1989
 
Oracle DBA Training in Hyderabad
Oracle DBA Training in HyderabadOracle DBA Training in Hyderabad
Oracle DBA Training in Hyderabad
Ugs8008
 
Orcale dba training
Orcale dba trainingOrcale dba training
Orcale dba trainingUgs8008
 
Oracle DBA Training in Hyderabad
Oracle DBA Training in HyderabadOracle DBA Training in Hyderabad
Oracle DBA Training in Hyderabad
united global soft
 
Introduction to Threading in .Net
Introduction to Threading in .NetIntroduction to Threading in .Net
Introduction to Threading in .Netwebhostingguy
 
Presenter manual oracle D2K (specially for summer interns)
Presenter manual oracle D2K (specially for summer interns)Presenter manual oracle D2K (specially for summer interns)
Presenter manual oracle D2K (specially for summer interns)
XPERT INFOTECH
 
Oracle Text in APEX
Oracle Text in APEXOracle Text in APEX
Oracle Text in APEX
Scott Wesley
 
Summer '16 Realease notes
Summer '16 Realease notesSummer '16 Realease notes
Summer '16 Realease notesaggopal1011
 
War of the Indices- SQL Server and Oracle
War of the Indices-  SQL Server and OracleWar of the Indices-  SQL Server and Oracle
War of the Indices- SQL Server and Oracle
Kellyn Pot'Vin-Gorman
 
Orcale dba training
Orcale dba trainingOrcale dba training
Orcale dba training
united global soft
 
Orcale DBA Online Training in India
Orcale DBA Online Training in IndiaOrcale DBA Online Training in India
Orcale DBA Online Training in India
united global soft
 

Similar to ORACLE BY KMR SOFTWARE SERVICES (20)

Oracle Training Tutorial for Beginners
Oracle Training Tutorial for BeginnersOracle Training Tutorial for Beginners
Oracle Training Tutorial for Beginners
 
Oracle SQL Training in Chennai, Tambaram
Oracle SQL Training in Chennai, TambaramOracle SQL Training in Chennai, Tambaram
Oracle SQL Training in Chennai, Tambaram
 
Oracle 11g structured query language (sql)
Oracle 11g structured query language (sql)Oracle 11g structured query language (sql)
Oracle 11g structured query language (sql)
 
Introduction to Database SQL & PL/SQL
Introduction to Database SQL & PL/SQLIntroduction to Database SQL & PL/SQL
Introduction to Database SQL & PL/SQL
 
Winter course
Winter courseWinter course
Winter course
 
Intro
IntroIntro
Intro
 
Introduction to Oracle
Introduction to OracleIntroduction to Oracle
Introduction to Oracle
 
Introduction to Oracle
Introduction to OracleIntroduction to Oracle
Introduction to Oracle
 
Oracle11gdevtrainingindelhincr
Oracle11gdevtrainingindelhincrOracle11gdevtrainingindelhincr
Oracle11gdevtrainingindelhincr
 
Oracle DBA Training in Hyderabad
Oracle DBA Training in HyderabadOracle DBA Training in Hyderabad
Oracle DBA Training in Hyderabad
 
Orcale dba training
Orcale dba trainingOrcale dba training
Orcale dba training
 
Oracle DBA Training in Hyderabad
Oracle DBA Training in HyderabadOracle DBA Training in Hyderabad
Oracle DBA Training in Hyderabad
 
Introduction to Threading in .Net
Introduction to Threading in .NetIntroduction to Threading in .Net
Introduction to Threading in .Net
 
Presenter manual oracle D2K (specially for summer interns)
Presenter manual oracle D2K (specially for summer interns)Presenter manual oracle D2K (specially for summer interns)
Presenter manual oracle D2K (specially for summer interns)
 
Oracle Text in APEX
Oracle Text in APEXOracle Text in APEX
Oracle Text in APEX
 
Summer '16 Realease notes
Summer '16 Realease notesSummer '16 Realease notes
Summer '16 Realease notes
 
War of the Indices- SQL Server and Oracle
War of the Indices-  SQL Server and OracleWar of the Indices-  SQL Server and Oracle
War of the Indices- SQL Server and Oracle
 
Orcale dba training
Orcale dba trainingOrcale dba training
Orcale dba training
 
Orcale dba training
Orcale dba trainingOrcale dba training
Orcale dba training
 
Orcale DBA Online Training in India
Orcale DBA Online Training in IndiaOrcale DBA Online Training in India
Orcale DBA Online Training in India
 

More from KMR SOFTWARE SERVICES PVT LTD

UNIGRAPHICS ONLINE TRAINING BY KMR
UNIGRAPHICS ONLINE TRAINING BY KMRUNIGRAPHICS ONLINE TRAINING BY KMR
UNIGRAPHICS ONLINE TRAINING BY KMR
KMR SOFTWARE SERVICES PVT LTD
 
SAP FSCM ONLINE TRAINING BY KMR
SAP FSCM ONLINE TRAINING BY KMRSAP FSCM ONLINE TRAINING BY KMR
SAP FSCM ONLINE TRAINING BY KMR
KMR SOFTWARE SERVICES PVT LTD
 
SAP HANA ADMIN Course Content
SAP HANA ADMIN Course Content SAP HANA ADMIN Course Content
SAP HANA ADMIN Course Content
KMR SOFTWARE SERVICES PVT LTD
 
SAP IS Oil and Gas oil Course Content
SAP IS Oil and Gas oil Course ContentSAP IS Oil and Gas oil Course Content
SAP IS Oil and Gas oil Course Content
KMR SOFTWARE SERVICES PVT LTD
 
SAP FICO Overview
SAP FICO Overview  SAP FICO Overview
SAP FICO Overview
KMR SOFTWARE SERVICES PVT LTD
 
SAP PI online training course content
SAP PI online training course contentSAP PI online training course content
SAP PI online training course content
KMR SOFTWARE SERVICES PVT LTD
 
SAP FICO ONLINE TRAINING
SAP FICO ONLINE TRAININGSAP FICO ONLINE TRAINING
SAP FICO ONLINE TRAINING
KMR SOFTWARE SERVICES PVT LTD
 
ECM change type configuration document by kmr
ECM change type configuration document by kmrECM change type configuration document by kmr
ECM change type configuration document by kmr
KMR SOFTWARE SERVICES PVT LTD
 
SAP cFolders Training
SAP cFolders Training SAP cFolders Training
SAP cFolders Training
KMR SOFTWARE SERVICES PVT LTD
 
SAP Document Management System(DMS)-PLM 120
SAP Document Management System(DMS)-PLM 120SAP Document Management System(DMS)-PLM 120
SAP Document Management System(DMS)-PLM 120
KMR SOFTWARE SERVICES PVT LTD
 
SAP Engineering Change Management(ECM)
SAP Engineering Change Management(ECM) SAP Engineering Change Management(ECM)
SAP Engineering Change Management(ECM)
KMR SOFTWARE SERVICES PVT LTD
 
SAP PLM Online Training Complete Hand Book
SAP PLM Online Training Complete Hand BookSAP PLM Online Training Complete Hand Book
SAP PLM Online Training Complete Hand Book
KMR SOFTWARE SERVICES PVT LTD
 
SAP Variant Configuration example by KMR software
SAP Variant Configuration example by KMR softwareSAP Variant Configuration example by KMR software
SAP Variant Configuration example by KMR software
KMR SOFTWARE SERVICES PVT LTD
 
SAP PLM training by kmr software services
SAP PLM training by kmr software servicesSAP PLM training by kmr software services
SAP PLM training by kmr software services
KMR SOFTWARE SERVICES PVT LTD
 
SAP DMS PLM 120
SAP DMS PLM 120SAP DMS PLM 120
SAP CRM functional overview training
SAP CRM functional overview trainingSAP CRM functional overview training
SAP CRM functional overview training
KMR SOFTWARE SERVICES PVT LTD
 
SAP CRM technical training
SAP CRM technical training SAP CRM technical training
SAP CRM technical training
KMR SOFTWARE SERVICES PVT LTD
 
SAP Materials Management Overview
SAP Materials Management OverviewSAP Materials Management Overview
SAP Materials Management Overview
KMR SOFTWARE SERVICES PVT LTD
 
SAP PPM 5.0 Trainings
SAP PPM 5.0 TrainingsSAP PPM 5.0 Trainings
SAP PPM 5.0 Trainings
KMR SOFTWARE SERVICES PVT LTD
 

More from KMR SOFTWARE SERVICES PVT LTD (20)

UNIGRAPHICS ONLINE TRAINING BY KMR
UNIGRAPHICS ONLINE TRAINING BY KMRUNIGRAPHICS ONLINE TRAINING BY KMR
UNIGRAPHICS ONLINE TRAINING BY KMR
 
SAP FSCM ONLINE TRAINING BY KMR
SAP FSCM ONLINE TRAINING BY KMRSAP FSCM ONLINE TRAINING BY KMR
SAP FSCM ONLINE TRAINING BY KMR
 
SAP HANA ADMIN Course Content
SAP HANA ADMIN Course Content SAP HANA ADMIN Course Content
SAP HANA ADMIN Course Content
 
SAP IS Oil and Gas oil Course Content
SAP IS Oil and Gas oil Course ContentSAP IS Oil and Gas oil Course Content
SAP IS Oil and Gas oil Course Content
 
SAP FICO Overview
SAP FICO Overview  SAP FICO Overview
SAP FICO Overview
 
SAP PI online training course content
SAP PI online training course contentSAP PI online training course content
SAP PI online training course content
 
SAP FICO ONLINE TRAINING
SAP FICO ONLINE TRAININGSAP FICO ONLINE TRAINING
SAP FICO ONLINE TRAINING
 
ECM change type configuration document by kmr
ECM change type configuration document by kmrECM change type configuration document by kmr
ECM change type configuration document by kmr
 
SAP cFolders Training
SAP cFolders Training SAP cFolders Training
SAP cFolders Training
 
SAP Document Management System(DMS)-PLM 120
SAP Document Management System(DMS)-PLM 120SAP Document Management System(DMS)-PLM 120
SAP Document Management System(DMS)-PLM 120
 
SAP Engineering Change Management(ECM)
SAP Engineering Change Management(ECM) SAP Engineering Change Management(ECM)
SAP Engineering Change Management(ECM)
 
SAP PLM Online Training Complete Hand Book
SAP PLM Online Training Complete Hand BookSAP PLM Online Training Complete Hand Book
SAP PLM Online Training Complete Hand Book
 
SAP Variant Configuration example by KMR software
SAP Variant Configuration example by KMR softwareSAP Variant Configuration example by KMR software
SAP Variant Configuration example by KMR software
 
SAP PLM training by kmr software services
SAP PLM training by kmr software servicesSAP PLM training by kmr software services
SAP PLM training by kmr software services
 
SAP DMS PLM 120
SAP DMS PLM 120SAP DMS PLM 120
SAP DMS PLM 120
 
SAP CRM functional overview training
SAP CRM functional overview trainingSAP CRM functional overview training
SAP CRM functional overview training
 
SAP CRM technical training
SAP CRM technical training SAP CRM technical training
SAP CRM technical training
 
SAP Materials Management Overview
SAP Materials Management OverviewSAP Materials Management Overview
SAP Materials Management Overview
 
SAP PPM 5.0 Trainings
SAP PPM 5.0 TrainingsSAP PPM 5.0 Trainings
SAP PPM 5.0 Trainings
 
Kmrss ppm
Kmrss ppmKmrss ppm
Kmrss ppm
 

Recently uploaded

Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)
rosedainty
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chips
GeoBlogs
 
Introduction to Quality Improvement Essentials
Introduction to Quality Improvement EssentialsIntroduction to Quality Improvement Essentials
Introduction to Quality Improvement Essentials
Excellence Foundation for South Sudan
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
Celine George
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Thiyagu K
 
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
TechSoup
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve Thomason
Steve Thomason
 
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxStudents, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
EduSkills OECD
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
Nguyen Thanh Tu Collection
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
How to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS ModuleHow to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS Module
Celine George
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
Atul Kumar Singh
 

Recently uploaded (20)

Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chips
 
Introduction to Quality Improvement Essentials
Introduction to Quality Improvement EssentialsIntroduction to Quality Improvement Essentials
Introduction to Quality Improvement Essentials
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
 
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve Thomason
 
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxStudents, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
 
Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......
 
How to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS ModuleHow to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS Module
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
 

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