SlideShare a Scribd company logo
1 of 39
PHP Indonesia
Saturday, 5th May 2102
Presented by:
Nur Hidayat
 Sehari-hari sebagai Software Developer di
ESQ LeadershipCenter
 Di waktu luang mencoba mencari segenggam
berlian untuk istri dan anak-anak
 Introduction to Oracle
 PHP Oracle Extensions
 InstalasiOracle Database XE
 Zend ServerVirtualBox Appliance
 Oracle DatabaseAdministration
 Interacting with Oracle Database XE
 Programming PHP+Oracle
 1977,Larry Ellison founded Software Development Laboratories (SDL)
 Changed name in 1979 to Relational Software Inc. (RSI),
 1979 created the first commercial SQL-based relational database.
 Changed name in 1983 to Oracle Corporation.
 1983,Oracle 3 the first relational database to run on mainframes,
minicomputers, and PCs
 1988, PL/SQL, the first built-in procedural language with very high
influence from C andAda.
 1992,Oracle7, released in 1992, introduced PL/SQL stored procedures
and triggers.
 1995, the first to 64-bit database.
 1999, the database with XML support
 2001,Oracle Real ApplicationClusters (Oracle RAC)
 2003, enterprise grid computing environment.
 In late 2005, released its first full-featured, 100 percent free database
server, Oracle Database XE.
 2007,Oracle 11g, improved Manageability, diagnosability, and availability
See Also: http://www.oracle.com/technetwork/issue-archive/2007/07-jul/ o4730-
090772.html for an article summarizing the evolution of Oracle Database
 Express Edition
 Includes all feature available in Enterprise Edition
 Limited to single CPU
 Limited to 1 GB or RAM
 Limited to 4 GB (10g) or 11 GB (11g) of data
 Very simple installation
 Personal Edition
 Includes all feature available in Enterprise Edition
 Limited to 1 user
 Standard Edition One
 Limited to 2 CPU
 Minus Oracle RAC
 Standard Edition
 Limited to 4 CPU
 Support Oracle RAC
 Enterprise Edition
 No CPU Limitation
 Advanced High Availability (FlashbackTable,
Flashback Database, Data Guard, etc.)
 TimesTen, in memory database
 Berkeley DB, embedded database
 MySQL, leading free open source database
 Application Server, web server which
integrate seamlessly with oracle database
 E-Business Suite
 PeopleSoft
 JD Edwards
 .... and many more
 Oracle Extension,This extension was designed for Oracle 7 and
should be avoided since it uses a deprecated version of the Oracle
API that will not be available in future releases.
 ODBC within Windows, while ODBC provides some connection
pooling and other built-in features, it lacks access to many of
Oracle’s capabilities such as the ability to store large objects
(LOBs).
 OCI8 Extension, this extension supports most of Oracle’s Oracle
Call Interface (OCI).
 PDO Extension.This portable databaseAPI makes it easy to
change your database without changing a lot of your code.
 Database Abstraction Libraries
 ADOdb
 PEAR DB
 PEAR MDB2
 PilihanWeb Server
 XAMPP
 Zend Server
 InstalasiOracle XE diWindows
 Import ZendAppliance toVirtualBox
 Username: root
 Password: zend1234
 Konfigurasi Zend Server
 http://localhost:10081/
 KonfigurasiOracle Database XE
 /etc/init.d/oracle-xe configure
 Starting and Stopping Oracle Database
 Database and Instance
 Oracle Storage Structure
 Oracle Memory Structure
 Schemas and Users
 Listener
 The database listener is an Oracle Net program that
listens for and responds to requests to the database.
 Database
 The database is another process that runs in
memory, and needs to be started beforeOracle Net
can handle connection requests to it.
 Requirements, user must included in
 dba group on Linux, or
 ORA_DBA on Windows
 On Linux
 Starting
▪ From Gnome: Select Applications > Oracle Database 10g
Express Edition > Start Database.
▪ From KDE: Select K Menu > Oracle Database 10g Express
Edition > Start Database.
▪ From linux shell: # /etc/init.d/oracle-xe restart
 Stopping
▪ From Gnome: Select Applications > Oracle Database 10g
Express Edition > Stop Database.
▪ From KDE: Select K Menu > Oracle Database 10g Express
Edition > Stop Database.
▪ From linux shell: # /etc/init.d/oracle-xe stop
 OnWindows
 Starting
▪ From Menu: Start > Oracle Database 10g Express Edition > Start Database.
▪ From Control Panel: Start > Settings > Control Panel > Administrative Tools >
Services, and select the OracleXETNSListener service. Right click on the Listener
service, and select Start.
▪ From Control Panel: Start > Settings > Control Panel > Administrative Tools >
Services, and select the OracleServiceXE service. Right click on the Listener
service, and select Start.
 Stopping
▪ From Menu: Start > Oracle Database 10g Express Edition > Stop Database.
▪ From Control Panel: Start > Settings > Control Panel > Administrative Tools >
Services, and select the OracleXETNSListener service. Right click on the Listener
service, and select Stop.
▪ From Control Panel: Start > Settings > Control Panel > Administrative Tools >
Services, and select the OracleServiceXE service. Right click on the Listener
service, and select Stop.
 An Oracle database server
consists of a database and at
least one database instance
 Database
 A database is a set of files,
located on disk, that store
data.These files can exist
independently of a database
instance.
 Database instance
 An instance is a set of
memory structures that
manage database files.The
instance consists of a shared
memory area, called the
system global area (SGA),
and a set of background
processes.An instance can
exist independently of
database files.
 Physical Storage Structures
 Data files
▪ Every Oracle database has one or more physical data
files, which contain all the database data.
 Control files
▪ Every Oracle database has a control file. Metadata
specifying the physical structure of the database.
 Online redo log files
▪ Every Oracle Database has an online redo log. An online
redo log is made up of redo entries (also called redo
records), which record all changes made to data.
 Logical Storage Structures
 Data blocks
▪ At the finest level of granularity,Oracle Database data is stored in
data blocks. One data block corresponds to a specific number of
bytes on disk.
 Extents
▪ An extent is a specific number of logically contiguous data
blocks, obtained in a single allocation, used to store a specific type
of information.
 Segments
▪ A segment is a set of extents allocated for a user object (for
example, a table or index), undo data, or temporary data.
 Tablespaces
▪ A database is divided into logical storage units called tablespaces.
A tablespace is the logical container for a segment. Each tablespace
contains at least one data file.
 Client Processes
 to run the software code of an application program or
an Oracle tool. Most environments have separate
computers for client processes.
 Server Processes
 These processes communicate with client processes
and interact with Oracle Database to fulfill requests.
 Background Process
 Background processes asynchronously perform I/O
and monitor other Oracle Database processes to
provide increased parallelism for better performance
and reliability.
 SystemGlobal Area (SGA)
 The SGA is a group of shared memory structures that
contain data and control information for one
database instance. Examples of SGA components
include cached data blocks and shared SQL areas.
 Program Global Areas (PGA)
 A PGA is a memory region that contain data and
control information for a server or background
process.Access to the PGA is exclusive to the process.
Each server process and background process has its
own PGA.
 A database schema is a collection of logical
data structures, or schema objects.
 A database schema is owned by a database
user and has the same name as the user
name.
 Schema objects are user-created structures
that directly refer to the data in the database.
 The database supports many types of schema
objects, the most important of which are
tables and indexes.
 Command Line Interface
 SQL Developer
 Application Express
 Connecting to Oracle Database
 Executing SQL Statements
 Using PL/SQL, Stored Procedure andTriggers
 Using Oracle LOB
 DatabaseTransactions
 Use single SQL statement whenever possible
 If not possible, use PL/SQL or stored
procedure
 If not possible, use Java or other
programming language
 If still not possible, rethink why you want to
do it
 Oracle ConnectionTypes
 Standard Connections
▪ For basic connection to Oracle use PHP’s oci_connect() call:
▪ $c = oci_connect($username, $password, $dbname);
▪ You can call oci_connect() more than once in a script. If you do this and use the
same username and database name, then you get a pointer to the original
connection.
 Multiple Unique Connections
▪ To get a totally independent connection use oci_new_connect():
▪ $c = oci_new_connect($username, $password, $dbname);
▪ Each connection is separate from any other.This lets you have more than one
database session open at the same time.This can be useful when you want to
do database operations independently from each other.
 Persistent Connections
▪ Persistent connections can be made with oci_pconnect():
▪ $c = oci_pconnect($username, $password, $dbname);
▪ Persistent connections are not automatically closed at the end of a PHP script
this makes oci_pconnect() fast for frequently used web applications.
Reconnection does not require re-authentication to the database.
 Oracle Database Name Connection Identifiers
 The $dbname connection identifier is the name of
the local or remote database that you want to attach
to.
 Connection Identifiers can be one of:
 An Easy Connect string
 A Connect Descriptor string
 A Connect Name
 An Easy Connect string
 The Easy Connect string is JDBC-like.The Oracle 10g
syntax is:
▪ [//]host_name[:port][/service_name]
 Using Oracle 11g libraries, the enhanced 11g syntax
can be used:
▪ [//]host_name[:port][/service_name][:server_type][/instance_name]
$c = oci_connect('hr', 'welcome', 'localhost/XE');
$c = oci_connect(scott', ‘tiger', '127.0.0.1:1521/XE');
 A Connect Descriptor string
 The full Oracle Net connect descriptor string gives total
flexibility over the connection.
 The syntax can be more complex than this example,
depending on the database and Oracle Net features used. For
example, by using the full syntax, you can enable features like
load balancing and tweak packet sizes.
 The Easy Connect syntax does not allow this flexibility.
 A Connect Name
 A stored Connect Descriptor string
 In PHP you would use the connect name MYA to connect to the
database:
▪ $c = oci_connect($username, $password, 'MYA');
 PHP needs to be able to find the tnsnames.ora file to resolve
the MYA name.The directory paths that Oracle searches for
tnsnames.ora depend on your operating system
 oci_close()
 The oci_close() function works by reference
counting. Only when all PHP references to the
database connection are finished will it actually be
closed and database resources freed.
 Demo on Close.php
 The possible steps are:
 Parse: Prepares a statement for execution.
 Bind: Optionally lets you bind data values, for
example, in theWHERE clause, for better
performance and security.
 Define: Optional step allowing you to specify which
PHP variables will hold the results.This is not
commonly used.
 Execute: The database processes the statement and
buffers any results.
 Fetch: Gets any query results back from the database.
 Modified FizzBuzz Problem, solved using single SQL
statement
 Sample code using
PL/SQL function to
generate composite
field
 Function called using
SELECT statement
 Sample code for inserting
LOB data into Oracle
database
 Sample code for etrieving
LOB data from Oracle
database
 Sample code, increase one salary and
decrease another as a single transaction.
 Oracle and Zend @Zend
 http://www.zend.com/en/company/partners/strategic/zend-oracle
 PHP Developer Center @Oracle
 http://www.oracle.com/technetwork/topics/php/whatsnew/index.html
 Oracle Database XE 11gR2
 http://www.oracle.com/technetwork/products/express-edition/downloads/index.html

More Related Content

What's hot

ORDS - Oracle REST Data Services
ORDS - Oracle REST Data ServicesORDS - Oracle REST Data Services
ORDS - Oracle REST Data ServicesJustin Michael Raj
 
Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...
Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...
Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...Alex Zaballa
 
Configuration beyond Java EE 8
Configuration beyond Java EE 8Configuration beyond Java EE 8
Configuration beyond Java EE 8Anatole Tresch
 
Database 12c is ready for you... Are you ready for 12c?
Database 12c is ready for you... Are you ready for 12c?Database 12c is ready for you... Are you ready for 12c?
Database 12c is ready for you... Are you ready for 12c?Performance Tuning Corporation
 
Expose your data as an api is with oracle rest data services -spoug Madrid
Expose your data as an api is with oracle rest data services -spoug MadridExpose your data as an api is with oracle rest data services -spoug Madrid
Expose your data as an api is with oracle rest data services -spoug MadridVinay Kumar
 
PHP, The X DevAPI, and the MySQL Document Store Presented January 23rd, 20...
PHP,  The X DevAPI,  and the  MySQL Document Store Presented January 23rd, 20...PHP,  The X DevAPI,  and the  MySQL Document Store Presented January 23rd, 20...
PHP, The X DevAPI, and the MySQL Document Store Presented January 23rd, 20...Dave Stokes
 
Configure Your Projects with Apache Tamaya
Configure Your Projects with Apache TamayaConfigure Your Projects with Apache Tamaya
Configure Your Projects with Apache TamayaAnatole Tresch
 
Oracle Office Hours - Exposing REST services with APEX and ORDS
Oracle Office Hours - Exposing REST services with APEX and ORDSOracle Office Hours - Exposing REST services with APEX and ORDS
Oracle Office Hours - Exposing REST services with APEX and ORDSDoug Gault
 
TechEvent 2019: Oracle PDB Isolation and Security; Stefan Oehrli - Trivadis
TechEvent 2019: Oracle PDB Isolation and Security; Stefan Oehrli - TrivadisTechEvent 2019: Oracle PDB Isolation and Security; Stefan Oehrli - Trivadis
TechEvent 2019: Oracle PDB Isolation and Security; Stefan Oehrli - TrivadisTrivadis
 
Configuration with Apache Tamaya
Configuration with Apache TamayaConfiguration with Apache Tamaya
Configuration with Apache TamayaAnatole Tresch
 
OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...
OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...
OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...Alex Zaballa
 
Oracle Database 12c "New features"
Oracle Database 12c "New features" Oracle Database 12c "New features"
Oracle Database 12c "New features" Anar Godjaev
 
Oracle Data Redaction - EOUC
Oracle Data Redaction - EOUCOracle Data Redaction - EOUC
Oracle Data Redaction - EOUCAlex Zaballa
 
Extending MySQL Enterprise Monitor
Extending MySQL Enterprise MonitorExtending MySQL Enterprise Monitor
Extending MySQL Enterprise MonitorMark Leith
 
JSON and the Oracle Database
JSON and the Oracle DatabaseJSON and the Oracle Database
JSON and the Oracle DatabaseMaria Colgan
 
PNWPHP -- What are Databases so &#%-ing Difficult
PNWPHP -- What are Databases so &#%-ing DifficultPNWPHP -- What are Databases so &#%-ing Difficult
PNWPHP -- What are Databases so &#%-ing DifficultDave Stokes
 
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...Alex Zaballa
 

What's hot (20)

ORDS - Oracle REST Data Services
ORDS - Oracle REST Data ServicesORDS - Oracle REST Data Services
ORDS - Oracle REST Data Services
 
Wizard of ORDS
Wizard of ORDSWizard of ORDS
Wizard of ORDS
 
Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...
Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...
Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...
 
What's next after Upgrade to 12c
What's next after Upgrade to 12cWhat's next after Upgrade to 12c
What's next after Upgrade to 12c
 
Configuration beyond Java EE 8
Configuration beyond Java EE 8Configuration beyond Java EE 8
Configuration beyond Java EE 8
 
Database 12c is ready for you... Are you ready for 12c?
Database 12c is ready for you... Are you ready for 12c?Database 12c is ready for you... Are you ready for 12c?
Database 12c is ready for you... Are you ready for 12c?
 
Expose your data as an api is with oracle rest data services -spoug Madrid
Expose your data as an api is with oracle rest data services -spoug MadridExpose your data as an api is with oracle rest data services -spoug Madrid
Expose your data as an api is with oracle rest data services -spoug Madrid
 
PHP, The X DevAPI, and the MySQL Document Store Presented January 23rd, 20...
PHP,  The X DevAPI,  and the  MySQL Document Store Presented January 23rd, 20...PHP,  The X DevAPI,  and the  MySQL Document Store Presented January 23rd, 20...
PHP, The X DevAPI, and the MySQL Document Store Presented January 23rd, 20...
 
Configure Your Projects with Apache Tamaya
Configure Your Projects with Apache TamayaConfigure Your Projects with Apache Tamaya
Configure Your Projects with Apache Tamaya
 
Oracle Office Hours - Exposing REST services with APEX and ORDS
Oracle Office Hours - Exposing REST services with APEX and ORDSOracle Office Hours - Exposing REST services with APEX and ORDS
Oracle Office Hours - Exposing REST services with APEX and ORDS
 
TechEvent 2019: Oracle PDB Isolation and Security; Stefan Oehrli - Trivadis
TechEvent 2019: Oracle PDB Isolation and Security; Stefan Oehrli - TrivadisTechEvent 2019: Oracle PDB Isolation and Security; Stefan Oehrli - Trivadis
TechEvent 2019: Oracle PDB Isolation and Security; Stefan Oehrli - Trivadis
 
Hacking oracle using metasploit
Hacking oracle using metasploitHacking oracle using metasploit
Hacking oracle using metasploit
 
Configuration with Apache Tamaya
Configuration with Apache TamayaConfiguration with Apache Tamaya
Configuration with Apache Tamaya
 
OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...
OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...
OOW16 - Oracle Database 12c - The Best Oracle Database 12c New Features for D...
 
Oracle Database 12c "New features"
Oracle Database 12c "New features" Oracle Database 12c "New features"
Oracle Database 12c "New features"
 
Oracle Data Redaction - EOUC
Oracle Data Redaction - EOUCOracle Data Redaction - EOUC
Oracle Data Redaction - EOUC
 
Extending MySQL Enterprise Monitor
Extending MySQL Enterprise MonitorExtending MySQL Enterprise Monitor
Extending MySQL Enterprise Monitor
 
JSON and the Oracle Database
JSON and the Oracle DatabaseJSON and the Oracle Database
JSON and the Oracle Database
 
PNWPHP -- What are Databases so &#%-ing Difficult
PNWPHP -- What are Databases so &#%-ing DifficultPNWPHP -- What are Databases so &#%-ing Difficult
PNWPHP -- What are Databases so &#%-ing Difficult
 
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...
 

Similar to PHP Oracle

ORACLE Architechture.ppt
ORACLE Architechture.pptORACLE Architechture.ppt
ORACLE Architechture.pptaggarwalb
 
maa-goldengate-rac-2007111.pdf
maa-goldengate-rac-2007111.pdfmaa-goldengate-rac-2007111.pdf
maa-goldengate-rac-2007111.pdfChandan Bose
 
The oracle database architecture
The oracle database architectureThe oracle database architecture
The oracle database architectureAkash Pramanik
 
High Availability And Oracle Data Guard 11g R2
High Availability And Oracle Data Guard 11g R2High Availability And Oracle Data Guard 11g R2
High Availability And Oracle Data Guard 11g R2Mario Redón Luz
 
Maa goldengate-rac-2007111
Maa goldengate-rac-2007111Maa goldengate-rac-2007111
Maa goldengate-rac-2007111pablitosax
 
Oracle & sql server comparison 2
Oracle & sql server comparison 2Oracle & sql server comparison 2
Oracle & sql server comparison 2Mohsen B
 
An Introduction To Oracle Database
An Introduction To Oracle DatabaseAn Introduction To Oracle Database
An Introduction To Oracle DatabaseMeysam Javadi
 
Oracle DBA Tutorial for Beginners -Oracle training institute in bangalore
Oracle DBA Tutorial for Beginners -Oracle training institute in bangaloreOracle DBA Tutorial for Beginners -Oracle training institute in bangalore
Oracle DBA Tutorial for Beginners -Oracle training institute in bangaloreTIB Academy
 
0396 oracle-goldengate-12c-tutorial
0396 oracle-goldengate-12c-tutorial0396 oracle-goldengate-12c-tutorial
0396 oracle-goldengate-12c-tutorialKlausePaulino
 
Database Performance Management in Cloud
Database Performance Management in CloudDatabase Performance Management in Cloud
Database Performance Management in CloudDr. Amarjeet Singh
 
Introduction to Oracle Database
Introduction to Oracle DatabaseIntroduction to Oracle Database
Introduction to Oracle Databasepuja_dhar
 
Muhammad Hameed Chaudhry
Muhammad Hameed ChaudhryMuhammad Hameed Chaudhry
Muhammad Hameed ChaudhryAamir Chaudhry
 
Using oracle12c pluggable databases to archive
Using oracle12c pluggable databases to archiveUsing oracle12c pluggable databases to archive
Using oracle12c pluggable databases to archiveSecure-24
 
Oracle_DB_sobre_Oracle
Oracle_DB_sobre_OracleOracle_DB_sobre_Oracle
Oracle_DB_sobre_OracleFran Navarro
 

Similar to PHP Oracle (20)

ORACLE Architechture.ppt
ORACLE Architechture.pptORACLE Architechture.ppt
ORACLE Architechture.ppt
 
maa-goldengate-rac-2007111.pdf
maa-goldengate-rac-2007111.pdfmaa-goldengate-rac-2007111.pdf
maa-goldengate-rac-2007111.pdf
 
The oracle database architecture
The oracle database architectureThe oracle database architecture
The oracle database architecture
 
ora_sothea
ora_sotheaora_sothea
ora_sothea
 
High Availability And Oracle Data Guard 11g R2
High Availability And Oracle Data Guard 11g R2High Availability And Oracle Data Guard 11g R2
High Availability And Oracle Data Guard 11g R2
 
Maa goldengate-rac-2007111
Maa goldengate-rac-2007111Maa goldengate-rac-2007111
Maa goldengate-rac-2007111
 
Oracle & sql server comparison 2
Oracle & sql server comparison 2Oracle & sql server comparison 2
Oracle & sql server comparison 2
 
An Introduction To Oracle Database
An Introduction To Oracle DatabaseAn Introduction To Oracle Database
An Introduction To Oracle Database
 
Oracle DBA Tutorial for Beginners -Oracle training institute in bangalore
Oracle DBA Tutorial for Beginners -Oracle training institute in bangaloreOracle DBA Tutorial for Beginners -Oracle training institute in bangalore
Oracle DBA Tutorial for Beginners -Oracle training institute in bangalore
 
0396 oracle-goldengate-12c-tutorial
0396 oracle-goldengate-12c-tutorial0396 oracle-goldengate-12c-tutorial
0396 oracle-goldengate-12c-tutorial
 
Database Performance Management in Cloud
Database Performance Management in CloudDatabase Performance Management in Cloud
Database Performance Management in Cloud
 
Oracle Intro.ppt
Oracle Intro.pptOracle Intro.ppt
Oracle Intro.ppt
 
Introduction to Oracle Database
Introduction to Oracle DatabaseIntroduction to Oracle Database
Introduction to Oracle Database
 
Muhammad Hameed Chaudhry
Muhammad Hameed ChaudhryMuhammad Hameed Chaudhry
Muhammad Hameed Chaudhry
 
Lecture2 oracle ppt
Lecture2 oracle pptLecture2 oracle ppt
Lecture2 oracle ppt
 
MOHAMMED VIKHAR AHMED
MOHAMMED VIKHAR AHMEDMOHAMMED VIKHAR AHMED
MOHAMMED VIKHAR AHMED
 
ORACLE DBA RESUME
ORACLE DBA RESUMEORACLE DBA RESUME
ORACLE DBA RESUME
 
Introduction to oracle
Introduction to oracleIntroduction to oracle
Introduction to oracle
 
Using oracle12c pluggable databases to archive
Using oracle12c pluggable databases to archiveUsing oracle12c pluggable databases to archive
Using oracle12c pluggable databases to archive
 
Oracle_DB_sobre_Oracle
Oracle_DB_sobre_OracleOracle_DB_sobre_Oracle
Oracle_DB_sobre_Oracle
 

More from Nur Hidayat

Develop a Software, Where to Start?
Develop a Software, Where to Start?Develop a Software, Where to Start?
Develop a Software, Where to Start?Nur Hidayat
 
Do It With SQL - Journey to the Center of Database Worlds
Do It With SQL - Journey to the Center of Database WorldsDo It With SQL - Journey to the Center of Database Worlds
Do It With SQL - Journey to the Center of Database WorldsNur Hidayat
 
How to Design a Good Database
How to Design a Good DatabaseHow to Design a Good Database
How to Design a Good DatabaseNur Hidayat
 
How to Design a Good Database for Your Application
How to Design a Good Database for Your ApplicationHow to Design a Good Database for Your Application
How to Design a Good Database for Your ApplicationNur Hidayat
 
PostgreSQL Advanced Queries
PostgreSQL Advanced QueriesPostgreSQL Advanced Queries
PostgreSQL Advanced QueriesNur Hidayat
 
Seminar Android - Pengenalan PhoneGap
Seminar Android - Pengenalan PhoneGapSeminar Android - Pengenalan PhoneGap
Seminar Android - Pengenalan PhoneGapNur Hidayat
 
How to Become Great Programmer
How to Become Great ProgrammerHow to Become Great Programmer
How to Become Great ProgrammerNur Hidayat
 
MRI Presentation
MRI PresentationMRI Presentation
MRI PresentationNur Hidayat
 

More from Nur Hidayat (9)

Develop a Software, Where to Start?
Develop a Software, Where to Start?Develop a Software, Where to Start?
Develop a Software, Where to Start?
 
Do It With SQL - Journey to the Center of Database Worlds
Do It With SQL - Journey to the Center of Database WorldsDo It With SQL - Journey to the Center of Database Worlds
Do It With SQL - Journey to the Center of Database Worlds
 
How to Design a Good Database
How to Design a Good DatabaseHow to Design a Good Database
How to Design a Good Database
 
How to Design a Good Database for Your Application
How to Design a Good Database for Your ApplicationHow to Design a Good Database for Your Application
How to Design a Good Database for Your Application
 
PostgreSQL Advanced Queries
PostgreSQL Advanced QueriesPostgreSQL Advanced Queries
PostgreSQL Advanced Queries
 
Seminar Android - Pengenalan PhoneGap
Seminar Android - Pengenalan PhoneGapSeminar Android - Pengenalan PhoneGap
Seminar Android - Pengenalan PhoneGap
 
Do IT with SQL
Do IT with SQLDo IT with SQL
Do IT with SQL
 
How to Become Great Programmer
How to Become Great ProgrammerHow to Become Great Programmer
How to Become Great Programmer
 
MRI Presentation
MRI PresentationMRI Presentation
MRI Presentation
 

Recently uploaded

AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfSeasiaInfotech2
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 

Recently uploaded (20)

AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdf
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 

PHP Oracle

  • 1. PHP Indonesia Saturday, 5th May 2102 Presented by: Nur Hidayat
  • 2.  Sehari-hari sebagai Software Developer di ESQ LeadershipCenter  Di waktu luang mencoba mencari segenggam berlian untuk istri dan anak-anak
  • 3.  Introduction to Oracle  PHP Oracle Extensions  InstalasiOracle Database XE  Zend ServerVirtualBox Appliance  Oracle DatabaseAdministration  Interacting with Oracle Database XE  Programming PHP+Oracle
  • 4.  1977,Larry Ellison founded Software Development Laboratories (SDL)  Changed name in 1979 to Relational Software Inc. (RSI),  1979 created the first commercial SQL-based relational database.  Changed name in 1983 to Oracle Corporation.  1983,Oracle 3 the first relational database to run on mainframes, minicomputers, and PCs  1988, PL/SQL, the first built-in procedural language with very high influence from C andAda.  1992,Oracle7, released in 1992, introduced PL/SQL stored procedures and triggers.  1995, the first to 64-bit database.  1999, the database with XML support  2001,Oracle Real ApplicationClusters (Oracle RAC)  2003, enterprise grid computing environment.  In late 2005, released its first full-featured, 100 percent free database server, Oracle Database XE.  2007,Oracle 11g, improved Manageability, diagnosability, and availability See Also: http://www.oracle.com/technetwork/issue-archive/2007/07-jul/ o4730- 090772.html for an article summarizing the evolution of Oracle Database
  • 5.  Express Edition  Includes all feature available in Enterprise Edition  Limited to single CPU  Limited to 1 GB or RAM  Limited to 4 GB (10g) or 11 GB (11g) of data  Very simple installation  Personal Edition  Includes all feature available in Enterprise Edition  Limited to 1 user
  • 6.  Standard Edition One  Limited to 2 CPU  Minus Oracle RAC  Standard Edition  Limited to 4 CPU  Support Oracle RAC  Enterprise Edition  No CPU Limitation  Advanced High Availability (FlashbackTable, Flashback Database, Data Guard, etc.)
  • 7.  TimesTen, in memory database  Berkeley DB, embedded database  MySQL, leading free open source database  Application Server, web server which integrate seamlessly with oracle database  E-Business Suite  PeopleSoft  JD Edwards  .... and many more
  • 8.  Oracle Extension,This extension was designed for Oracle 7 and should be avoided since it uses a deprecated version of the Oracle API that will not be available in future releases.  ODBC within Windows, while ODBC provides some connection pooling and other built-in features, it lacks access to many of Oracle’s capabilities such as the ability to store large objects (LOBs).  OCI8 Extension, this extension supports most of Oracle’s Oracle Call Interface (OCI).  PDO Extension.This portable databaseAPI makes it easy to change your database without changing a lot of your code.  Database Abstraction Libraries  ADOdb  PEAR DB  PEAR MDB2
  • 9.  PilihanWeb Server  XAMPP  Zend Server  InstalasiOracle XE diWindows
  • 10.  Import ZendAppliance toVirtualBox  Username: root  Password: zend1234  Konfigurasi Zend Server  http://localhost:10081/  KonfigurasiOracle Database XE  /etc/init.d/oracle-xe configure
  • 11.  Starting and Stopping Oracle Database  Database and Instance  Oracle Storage Structure  Oracle Memory Structure  Schemas and Users
  • 12.  Listener  The database listener is an Oracle Net program that listens for and responds to requests to the database.  Database  The database is another process that runs in memory, and needs to be started beforeOracle Net can handle connection requests to it.  Requirements, user must included in  dba group on Linux, or  ORA_DBA on Windows
  • 13.  On Linux  Starting ▪ From Gnome: Select Applications > Oracle Database 10g Express Edition > Start Database. ▪ From KDE: Select K Menu > Oracle Database 10g Express Edition > Start Database. ▪ From linux shell: # /etc/init.d/oracle-xe restart  Stopping ▪ From Gnome: Select Applications > Oracle Database 10g Express Edition > Stop Database. ▪ From KDE: Select K Menu > Oracle Database 10g Express Edition > Stop Database. ▪ From linux shell: # /etc/init.d/oracle-xe stop
  • 14.  OnWindows  Starting ▪ From Menu: Start > Oracle Database 10g Express Edition > Start Database. ▪ From Control Panel: Start > Settings > Control Panel > Administrative Tools > Services, and select the OracleXETNSListener service. Right click on the Listener service, and select Start. ▪ From Control Panel: Start > Settings > Control Panel > Administrative Tools > Services, and select the OracleServiceXE service. Right click on the Listener service, and select Start.  Stopping ▪ From Menu: Start > Oracle Database 10g Express Edition > Stop Database. ▪ From Control Panel: Start > Settings > Control Panel > Administrative Tools > Services, and select the OracleXETNSListener service. Right click on the Listener service, and select Stop. ▪ From Control Panel: Start > Settings > Control Panel > Administrative Tools > Services, and select the OracleServiceXE service. Right click on the Listener service, and select Stop.
  • 15.  An Oracle database server consists of a database and at least one database instance  Database  A database is a set of files, located on disk, that store data.These files can exist independently of a database instance.  Database instance  An instance is a set of memory structures that manage database files.The instance consists of a shared memory area, called the system global area (SGA), and a set of background processes.An instance can exist independently of database files.
  • 16.
  • 17.
  • 18.  Physical Storage Structures  Data files ▪ Every Oracle database has one or more physical data files, which contain all the database data.  Control files ▪ Every Oracle database has a control file. Metadata specifying the physical structure of the database.  Online redo log files ▪ Every Oracle Database has an online redo log. An online redo log is made up of redo entries (also called redo records), which record all changes made to data.
  • 19.  Logical Storage Structures  Data blocks ▪ At the finest level of granularity,Oracle Database data is stored in data blocks. One data block corresponds to a specific number of bytes on disk.  Extents ▪ An extent is a specific number of logically contiguous data blocks, obtained in a single allocation, used to store a specific type of information.  Segments ▪ A segment is a set of extents allocated for a user object (for example, a table or index), undo data, or temporary data.  Tablespaces ▪ A database is divided into logical storage units called tablespaces. A tablespace is the logical container for a segment. Each tablespace contains at least one data file.
  • 20.
  • 21.  Client Processes  to run the software code of an application program or an Oracle tool. Most environments have separate computers for client processes.  Server Processes  These processes communicate with client processes and interact with Oracle Database to fulfill requests.  Background Process  Background processes asynchronously perform I/O and monitor other Oracle Database processes to provide increased parallelism for better performance and reliability.
  • 22.  SystemGlobal Area (SGA)  The SGA is a group of shared memory structures that contain data and control information for one database instance. Examples of SGA components include cached data blocks and shared SQL areas.  Program Global Areas (PGA)  A PGA is a memory region that contain data and control information for a server or background process.Access to the PGA is exclusive to the process. Each server process and background process has its own PGA.
  • 23.  A database schema is a collection of logical data structures, or schema objects.  A database schema is owned by a database user and has the same name as the user name.  Schema objects are user-created structures that directly refer to the data in the database.  The database supports many types of schema objects, the most important of which are tables and indexes.
  • 24.  Command Line Interface  SQL Developer  Application Express
  • 25.  Connecting to Oracle Database  Executing SQL Statements  Using PL/SQL, Stored Procedure andTriggers  Using Oracle LOB  DatabaseTransactions
  • 26.  Use single SQL statement whenever possible  If not possible, use PL/SQL or stored procedure  If not possible, use Java or other programming language  If still not possible, rethink why you want to do it
  • 27.  Oracle ConnectionTypes  Standard Connections ▪ For basic connection to Oracle use PHP’s oci_connect() call: ▪ $c = oci_connect($username, $password, $dbname); ▪ You can call oci_connect() more than once in a script. If you do this and use the same username and database name, then you get a pointer to the original connection.  Multiple Unique Connections ▪ To get a totally independent connection use oci_new_connect(): ▪ $c = oci_new_connect($username, $password, $dbname); ▪ Each connection is separate from any other.This lets you have more than one database session open at the same time.This can be useful when you want to do database operations independently from each other.  Persistent Connections ▪ Persistent connections can be made with oci_pconnect(): ▪ $c = oci_pconnect($username, $password, $dbname); ▪ Persistent connections are not automatically closed at the end of a PHP script this makes oci_pconnect() fast for frequently used web applications. Reconnection does not require re-authentication to the database.
  • 28.
  • 29.  Oracle Database Name Connection Identifiers  The $dbname connection identifier is the name of the local or remote database that you want to attach to.  Connection Identifiers can be one of:  An Easy Connect string  A Connect Descriptor string  A Connect Name
  • 30.  An Easy Connect string  The Easy Connect string is JDBC-like.The Oracle 10g syntax is: ▪ [//]host_name[:port][/service_name]  Using Oracle 11g libraries, the enhanced 11g syntax can be used: ▪ [//]host_name[:port][/service_name][:server_type][/instance_name] $c = oci_connect('hr', 'welcome', 'localhost/XE'); $c = oci_connect(scott', ‘tiger', '127.0.0.1:1521/XE');
  • 31.  A Connect Descriptor string  The full Oracle Net connect descriptor string gives total flexibility over the connection.  The syntax can be more complex than this example, depending on the database and Oracle Net features used. For example, by using the full syntax, you can enable features like load balancing and tweak packet sizes.  The Easy Connect syntax does not allow this flexibility.
  • 32.  A Connect Name  A stored Connect Descriptor string  In PHP you would use the connect name MYA to connect to the database: ▪ $c = oci_connect($username, $password, 'MYA');  PHP needs to be able to find the tnsnames.ora file to resolve the MYA name.The directory paths that Oracle searches for tnsnames.ora depend on your operating system
  • 33.  oci_close()  The oci_close() function works by reference counting. Only when all PHP references to the database connection are finished will it actually be closed and database resources freed.  Demo on Close.php
  • 34.  The possible steps are:  Parse: Prepares a statement for execution.  Bind: Optionally lets you bind data values, for example, in theWHERE clause, for better performance and security.  Define: Optional step allowing you to specify which PHP variables will hold the results.This is not commonly used.  Execute: The database processes the statement and buffers any results.  Fetch: Gets any query results back from the database.
  • 35.  Modified FizzBuzz Problem, solved using single SQL statement
  • 36.  Sample code using PL/SQL function to generate composite field  Function called using SELECT statement
  • 37.  Sample code for inserting LOB data into Oracle database  Sample code for etrieving LOB data from Oracle database
  • 38.  Sample code, increase one salary and decrease another as a single transaction.
  • 39.  Oracle and Zend @Zend  http://www.zend.com/en/company/partners/strategic/zend-oracle  PHP Developer Center @Oracle  http://www.oracle.com/technetwork/topics/php/whatsnew/index.html  Oracle Database XE 11gR2  http://www.oracle.com/technetwork/products/express-edition/downloads/index.html