SlideShare a Scribd company logo
1 of 21
Download to read offline
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 Developersllangit
 
Tech Days09 Sqldev
Tech Days09 SqldevTech Days09 Sqldev
Tech Days09 Sqldevllangit
 
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
 
vFabric SQLFire for high performance data
vFabric SQLFire for high performance datavFabric SQLFire for high performance data
vFabric SQLFire for high performance dataVMware vFabric
 
OWB11gR2 - Extending ETL
OWB11gR2 - Extending ETL OWB11gR2 - Extending ETL
OWB11gR2 - Extending ETL Suraj Bang
 
Eo gaddis java_chapter_16_5e
Eo gaddis java_chapter_16_5eEo gaddis java_chapter_16_5e
Eo gaddis java_chapter_16_5eGina Bullock
 
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
 
Chapter 3: ado.net
Chapter 3: ado.netChapter 3: ado.net
Chapter 3: ado.netNgeam Soly
 
SQLPASS AD501-M XQuery MRys
SQLPASS AD501-M XQuery MRysSQLPASS AD501-M XQuery MRys
SQLPASS AD501-M XQuery MRysMichael Rys
 

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 VersionPeter Doolan
 
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 MongoDBMike 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
 
Hive Quick Start Tutorial
Hive Quick Start TutorialHive Quick Start Tutorial
Hive Quick Start TutorialCarl 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 MongoDBRavi Teja
 
Intro To MongoDB
Intro To MongoDBIntro To MongoDB
Intro To MongoDBAlex Sharp
 
Big Data Analytics with Hadoop
Big Data Analytics with HadoopBig Data Analytics with Hadoop
Big Data Analytics with HadoopPhilippe 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 Beginnersrajkamaltibacademy
 
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
 
Oracle11gdevtrainingindelhincr
Oracle11gdevtrainingindelhincrOracle11gdevtrainingindelhincr
Oracle11gdevtrainingindelhincrducat1989
 
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 Hyderabadunited global soft
 
Oracle DBA Training in Hyderabad
Oracle DBA Training in HyderabadOracle DBA Training in Hyderabad
Oracle DBA Training in HyderabadUgs8008
 
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 APEXScott 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 OracleKellyn Pot'Vin-Gorman
 
Oracle DBA Online Training in India,Oracle DBA Training in USA,Oracle DBA Tra...
Oracle DBA Online Training in India,Oracle DBA Training in USA,Oracle DBA Tra...Oracle DBA Online Training in India,Oracle DBA Training in USA,Oracle DBA Tra...
Oracle DBA Online Training in India,Oracle DBA Training in USA,Oracle DBA Tra...united global soft
 
Orcale dba Online training India
Orcale dba Online training IndiaOrcale dba Online training India
Orcale dba Online training Indiaunited global soft
 
Orcale DBA Online Training in India
Orcale DBA Online Training in IndiaOrcale DBA Online Training in India
Orcale DBA Online Training in Indiaunited 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
 
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
 
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
 
Oracle DBA Online Training in India,Oracle DBA Training in USA,Oracle DBA Tra...
Oracle DBA Online Training in India,Oracle DBA Training in USA,Oracle DBA Tra...Oracle DBA Online Training in India,Oracle DBA Training in USA,Oracle DBA Tra...
Oracle DBA Online Training in India,Oracle DBA Training in USA,Oracle DBA Tra...
 
Orcale dba Online training India
Orcale dba Online training IndiaOrcale dba Online training India
Orcale dba Online training India
 
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

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

How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfJemuel Francisco
 
Textual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSTextual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSMae Pangan
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptshraddhaparab530
 
EMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docxEMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docxElton John Embodo
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptxmary850239
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
 
Measures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped dataMeasures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped dataBabyAnnMotar
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
Oppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmOppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmStan Meyer
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfErwinPantujan2
 
TEACHER REFLECTION FORM (NEW SET........).docx
TEACHER REFLECTION FORM (NEW SET........).docxTEACHER REFLECTION FORM (NEW SET........).docx
TEACHER REFLECTION FORM (NEW SET........).docxruthvilladarez
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfTechSoup
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
The Contemporary World: The Globalization of World Politics
The Contemporary World: The Globalization of World PoliticsThe Contemporary World: The Globalization of World Politics
The Contemporary World: The Globalization of World PoliticsRommel Regala
 

Recently uploaded (20)

How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
 
Textual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSTextual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHS
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.ppt
 
EMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docxEMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docx
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
 
Measures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped dataMeasures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped data
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
Oppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmOppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and Film
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
 
TEACHER REFLECTION FORM (NEW SET........).docx
TEACHER REFLECTION FORM (NEW SET........).docxTEACHER REFLECTION FORM (NEW SET........).docx
TEACHER REFLECTION FORM (NEW SET........).docx
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptxINCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
 
The Contemporary World: The Globalization of World Politics
The Contemporary World: The Globalization of World PoliticsThe Contemporary World: The Globalization of World Politics
The Contemporary World: The Globalization of World Politics
 

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