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

Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxAnaBeatriceAblay2
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfakmcokerachita
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 

Recently uploaded (20)

Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdf
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 

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