SlideShare a Scribd company logo
1 of 29
Download to read offline
IN
Database & SQL
manishtiwarise.blogspot.in
1
Master Class
manishtiwarise.blogspot.in
2
Presentation By
Manish Tiwari,
Assistant Professor,
Software Engineer,
Computer Science and Application
2. WhatsApp: ?
manishtiwarise.blogspot.in
3
4. Blog: manishtiwarise.blogspot.in
3. Email: tiwarikmanish@gmail.com
1. Twitter: @manishtiwarise
5. Slide Share: https://www.slideshare.net/tiwarikmanish
Find Notes at
manishtiwarise.blogspot.in
4
Today’s Agenda
1. Confusion and Clarity = Vision
2. Importance of Data
3. Why to Manage Data
4. Jobs in IT Industry
5. Database Types
6. Certification
7. How to Manage Data
manishtiwarise.blogspot.in
5
Confusion
Hkze
குழப்பம்
(dksyie)
fldkoksl
(fQfu’k)
manishtiwarise.blogspot.in
6
Clarity
स्पष्टता
Clarté
(in French)
manishtiwarise.blogspot.in
7
Vision
Success
manishtiwarise.blogspot.in
8
2. Importance of Data
Can you people draw the importance of data ?
Any two
manishtiwarise.blogspot.in
9
Teacher Says
Data = Knowledge
Few People Says
Politician Says
We could have won election if we had got correct data.
Businessman Says
We make future strategies for business on the basis of current data.
manishtiwarise.blogspot.in
10
Why to Manage Data
Data management is the process of ingesting, storing,
organizing and maintaining the data created and collected by
an organization. Effective data management is a crucial
piece of deploying the IT systems that run business
applications and provide analytical information to help drive
operational decision-making and strategic planning by
corporate executives, business managers and other end
users.
manishtiwarise.blogspot.in
11
1. SQL Developer
2. SQL Database Administrator
3. Database Tester
4. SQL Data Analyst
5. Business and Financial Data Analyst
6. SQL Data Scientist
7. Database Architect
8. Database Trainer
9. Data Modeler
Jobs in IT Industry
manishtiwarise.blogspot.in
12
1. PostgreSQL
2. Microsoft SQL Server
3. MySQL
4. SAP HANA
5. Oracle Database
Databases Types
manishtiwarise.blogspot.in
13
1. IBM Cert1ified Database Administrator – DB2
2. Microsoft SQL Server database certifications**
3. Oracle Certified Professional, MySQL
4. Database Administrator
5. Oracle Database 12c Administrator
6. SAP HANA
Certification
manishtiwarise.blogspot.in
14
Type of Data
• Unstructured Data
• Semi structured Data
• Structured Data
manishtiwarise.blogspot.in
15
How to Manage Data
manishtiwarise.blogspot.in
16
Database Management System
manishtiwarise.blogspot.in
17
SQL
(Structured Query Language)
• DDL – Data Definition Language
• DML – Data Manipulation Language
• DCL – Data Control Language
• TCL – Transaction Control Language
manishtiwarise.blogspot.in
18
SELECT - Used to retrieve and display information
1. SELECT * FROM EMP ; 2. SELECT id, name FROM EMP;
DML – Data Manipulation Language
INSERT – Enter new data into database
1. INSERT INTO emp (id,name) VALUES (108,’Ram’);
2. INSERT INTO emp (id,name) VALUES (&id, ‘&name’);
manishtiwarise.blogspot.in
19
DML – Data Manipulation Language
UPDATE – make changes in existing data .
1. UPDATE TABLE emp SET name = ‘Shyam’ WHERE id = 108;
DELETE – Remove Unwanted data from table
Delete from emp;
manishtiwarise.blogspot.in
20
DDL – Data Definition Language
CREATE – make new data base object like Table, View, Procedure, Function,
Package, Sequence etc.
DROP – Remove database object from the database
ALTER – Used to make change in existing structure of database objects
RENAME – Change the name of objects
manishtiwarise.blogspot.in
21
DCL – Data Control Language
GRANT – Used give authority access database object
REVOKE – Used to take back authority from user
manishtiwarise.blogspot.in
22
TCL – Transaction Control Language
COMMIT – Save data permanently into database
ROLLBACK – Undo the DML operation if not committed
SAVEPOINT – Undo the DMP operation up to some point
manishtiwarise.blogspot.in
23
PLSQL
( Programming Language – Structure Query Language )
manishtiwarise.blogspot.in
24
There are two of Block
1. Unnamed Block
DECLARE
programming instruction;
BEGIN
programming instruction;
EXCEPTION
programming instruction;
END; 2. Named Block
CREATE OR REPLACE PROCEDURE job_router IS
programming instruction;
BEGIN
programming instruction;
EXCEPTION
programming instruction;
END;
manishtiwarise.blogspot.in
25
1. Comments
A) Single Line Comments (--)
B) Multi Line Comments (/* */)
2. Decision Making Statement
A) IF THEN ENDIF
B) IF THEN ELSE ENDIF
C) NESTED IF;
D) ELSE IF LADDER
E ) CASE Statement
manishtiwarise.blogspot.in
26
3. Procedure, Function, Packages
4. Exception Handling – Predefined, User Defined
5. Triggers
6. Cursor
7. Query Optimization
manishtiwarise.blogspot.in
27
Interview Question
manishtiwarise.blogspot.in
28
Database with Other Front
Programming Language
1. Java
2. Python
3. .Net Framework
Thank You
Job Router and All the
participant for listening me
silently
manishtiwarise.blogspot.in
29

More Related Content

Similar to Oracle SQL, Job Roles, Certification, DML Statement

Structure of Database MAnagement System
Structure of Database MAnagement SystemStructure of Database MAnagement System
Structure of Database MAnagement Systemnitish sandhawar
 
Big dataplatform operationalstrategy
Big dataplatform operationalstrategyBig dataplatform operationalstrategy
Big dataplatform operationalstrategyHimanshu Bari
 
Bank mangement system
Bank mangement systemBank mangement system
Bank mangement systemFaisalGhffar
 
Information Retrieval And Evaluating Its Usefulness
Information Retrieval And Evaluating Its UsefulnessInformation Retrieval And Evaluating Its Usefulness
Information Retrieval And Evaluating Its UsefulnessDiane Allen
 
SentricWorkforce Query Builder
SentricWorkforce Query BuilderSentricWorkforce Query Builder
SentricWorkforce Query BuilderSentricTraining
 
SQL commands in database management system
SQL commands in database management systemSQL commands in database management system
SQL commands in database management systemDarkstorm8
 
Introduction Data Warehouse With BigQuery
Introduction Data Warehouse With BigQueryIntroduction Data Warehouse With BigQuery
Introduction Data Warehouse With BigQueryYatno Sudar
 
Best Practices with ODI : Flexibility
Best Practices with ODI : FlexibilityBest Practices with ODI : Flexibility
Best Practices with ODI : FlexibilityGurcan Orhan
 
Data mining and data warehousing
Data mining and data warehousingData mining and data warehousing
Data mining and data warehousingSatya P. Joshi
 
Meetup 20170720 microservices_data_mgmt
Meetup 20170720 microservices_data_mgmtMeetup 20170720 microservices_data_mgmt
Meetup 20170720 microservices_data_mgmtDaniel Löffelholz
 
CQRS introduction
CQRS introductionCQRS introduction
CQRS introductionYura Taras
 
04.project billing system
04.project billing system04.project billing system
04.project billing systemgirivaishali
 
Employee Management (CS Project for 12th CBSE)
Employee Management (CS Project for 12th CBSE)Employee Management (CS Project for 12th CBSE)
Employee Management (CS Project for 12th CBSE)PiyushKashyap54
 
4 Steps Towards Data Transparency
4 Steps Towards Data Transparency4 Steps Towards Data Transparency
4 Steps Towards Data TransparencyProfinit
 
Air Line Management System | DBMS project
Air Line Management System | DBMS projectAir Line Management System | DBMS project
Air Line Management System | DBMS projectAniketHandore
 
Big Data's Impact on the Enterprise
Big Data's Impact on the EnterpriseBig Data's Impact on the Enterprise
Big Data's Impact on the EnterpriseCaserta
 
SQL Server 2000 Research Series - Essential Knowledge
SQL Server 2000 Research Series - Essential KnowledgeSQL Server 2000 Research Series - Essential Knowledge
SQL Server 2000 Research Series - Essential KnowledgeJerry Yang
 

Similar to Oracle SQL, Job Roles, Certification, DML Statement (20)

Database
DatabaseDatabase
Database
 
Structure of Database MAnagement System
Structure of Database MAnagement SystemStructure of Database MAnagement System
Structure of Database MAnagement System
 
Big dataplatform operationalstrategy
Big dataplatform operationalstrategyBig dataplatform operationalstrategy
Big dataplatform operationalstrategy
 
Bank mangement system
Bank mangement systemBank mangement system
Bank mangement system
 
information management
information managementinformation management
information management
 
Information Retrieval And Evaluating Its Usefulness
Information Retrieval And Evaluating Its UsefulnessInformation Retrieval And Evaluating Its Usefulness
Information Retrieval And Evaluating Its Usefulness
 
Philip_Calmerin_Updated_CV_2016
Philip_Calmerin_Updated_CV_2016Philip_Calmerin_Updated_CV_2016
Philip_Calmerin_Updated_CV_2016
 
SentricWorkforce Query Builder
SentricWorkforce Query BuilderSentricWorkforce Query Builder
SentricWorkforce Query Builder
 
SQL commands in database management system
SQL commands in database management systemSQL commands in database management system
SQL commands in database management system
 
Introduction Data Warehouse With BigQuery
Introduction Data Warehouse With BigQueryIntroduction Data Warehouse With BigQuery
Introduction Data Warehouse With BigQuery
 
Best Practices with ODI : Flexibility
Best Practices with ODI : FlexibilityBest Practices with ODI : Flexibility
Best Practices with ODI : Flexibility
 
Data mining and data warehousing
Data mining and data warehousingData mining and data warehousing
Data mining and data warehousing
 
Meetup 20170720 microservices_data_mgmt
Meetup 20170720 microservices_data_mgmtMeetup 20170720 microservices_data_mgmt
Meetup 20170720 microservices_data_mgmt
 
CQRS introduction
CQRS introductionCQRS introduction
CQRS introduction
 
04.project billing system
04.project billing system04.project billing system
04.project billing system
 
Employee Management (CS Project for 12th CBSE)
Employee Management (CS Project for 12th CBSE)Employee Management (CS Project for 12th CBSE)
Employee Management (CS Project for 12th CBSE)
 
4 Steps Towards Data Transparency
4 Steps Towards Data Transparency4 Steps Towards Data Transparency
4 Steps Towards Data Transparency
 
Air Line Management System | DBMS project
Air Line Management System | DBMS projectAir Line Management System | DBMS project
Air Line Management System | DBMS project
 
Big Data's Impact on the Enterprise
Big Data's Impact on the EnterpriseBig Data's Impact on the Enterprise
Big Data's Impact on the Enterprise
 
SQL Server 2000 Research Series - Essential Knowledge
SQL Server 2000 Research Series - Essential KnowledgeSQL Server 2000 Research Series - Essential Knowledge
SQL Server 2000 Research Series - Essential Knowledge
 

More from Manish Tiwari

Interview Question, Oracle PLSQL, PLSQL Developer
Interview Question, Oracle PLSQL, PLSQL DeveloperInterview Question, Oracle PLSQL, PLSQL Developer
Interview Question, Oracle PLSQL, PLSQL DeveloperManish Tiwari
 
Global Software Development, Work Outsourcing, Global Software Industry
Global Software Development, Work Outsourcing, Global Software IndustryGlobal Software Development, Work Outsourcing, Global Software Industry
Global Software Development, Work Outsourcing, Global Software IndustryManish Tiwari
 
Wavelet, Wavelet Image Compression, STW, SPIHT, MATLAB
Wavelet, Wavelet Image Compression, STW, SPIHT, MATLABWavelet, Wavelet Image Compression, STW, SPIHT, MATLAB
Wavelet, Wavelet Image Compression, STW, SPIHT, MATLABManish Tiwari
 
Java Program Structure
Java Program StructureJava Program Structure
Java Program StructureManish Tiwari
 
1 blogging manish_tiwari
1 blogging manish_tiwari1 blogging manish_tiwari
1 blogging manish_tiwariManish Tiwari
 

More from Manish Tiwari (8)

Interview Question, Oracle PLSQL, PLSQL Developer
Interview Question, Oracle PLSQL, PLSQL DeveloperInterview Question, Oracle PLSQL, PLSQL Developer
Interview Question, Oracle PLSQL, PLSQL Developer
 
Global Software Development, Work Outsourcing, Global Software Industry
Global Software Development, Work Outsourcing, Global Software IndustryGlobal Software Development, Work Outsourcing, Global Software Industry
Global Software Development, Work Outsourcing, Global Software Industry
 
Wavelet, Wavelet Image Compression, STW, SPIHT, MATLAB
Wavelet, Wavelet Image Compression, STW, SPIHT, MATLABWavelet, Wavelet Image Compression, STW, SPIHT, MATLAB
Wavelet, Wavelet Image Compression, STW, SPIHT, MATLAB
 
Java Program Structure
Java Program StructureJava Program Structure
Java Program Structure
 
Java Interface
Java InterfaceJava Interface
Java Interface
 
Java Array String
Java Array StringJava Array String
Java Array String
 
Java Inheritance
Java InheritanceJava Inheritance
Java Inheritance
 
1 blogging manish_tiwari
1 blogging manish_tiwari1 blogging manish_tiwari
1 blogging manish_tiwari
 

Recently uploaded

Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxPooja Bhuva
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxJisc
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the ClassroomPooky Knightsmith
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxmarlenawright1
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxJisc
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfDr Vijay Vishwakarma
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxDr. Ravikiran H M Gowda
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxAmanpreet Kaur
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Association for Project Management
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsKarakKing
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structuredhanjurrannsibayan2
 

Recently uploaded (20)

Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 

Oracle SQL, Job Roles, Certification, DML Statement