SlideShare una empresa de Scribd logo
1 de 12
1,[object Object],Using ORACLE®,[object Object],Triggers and Cursors,[object Object]
2,[object Object],Triggers,[object Object],A trigger is a stored procedure that defines an action that the database automatically initiates when some database related event such as INSERT , UPDATE or DELETE occurs.,[object Object],					          when occurs fires a ,[object Object],The main difference between a procedure and a trigger is that a procedure is executed explicitly from another block via a procedure call with arguments, while a trigger is executed implicitly when the triggering event like the occurrence of a DML-statement as INSERT ,UPDATE or DELETE occurs.,[object Object],Also a trigger does not accept arguments.,[object Object],The Automatic execution of triggers is known as firing of trigger.,[object Object]
3,[object Object],Need and Types of Triggers,[object Object],Need for triggers:,[object Object],Maintaining complex integrity constraints.,[object Object],Auditing the information in a table by recording the change.,[object Object],Automatically signaling another program about an occurred event.,[object Object],Enforcing complex business rules.,[object Object]
4,[object Object],Need and Types of Triggers,[object Object],Types of triggers:,[object Object],Row trigger: 	Fired once for every row that is affected.,[object Object],Statement trigger : Fired only once per statement regardless of the number of row 			affected.,[object Object],Before trigger:	Fired before the triggering event occurs.,[object Object],After trigger: 	Fired after the triggering event occurs.,[object Object]
5,[object Object],Syntax for Triggers,[object Object],SYNTAX :,[object Object],CREATE OR REPLACE TRIGGER trigger_name,[object Object],	{BEFORE / AFTER }  	{ INSERT / UPDATE / DELETE},[object Object],ON object_name,[object Object],	FOR { EACH ROW / EACH STATEMENT},[object Object],BEGIN,[object Object],	Statement1…,[object Object],	…..,[object Object],	…...,[object Object],END;,[object Object]
6,[object Object],Example for triggers,[object Object],SYNTAX :,[object Object],CREATE OR REPLACE TRIGGER trig,[object Object],	AFTER DELETE,[object Object],ON InfoTable,[object Object],	FOR EACH ROW,[object Object],BEGIN,[object Object],	INSERT INTO InfoTable VALUES(:old name,NULL,NULL);,[object Object],END;,[object Object],	Using this trigger , whenever a row from the InfoTable will be deleted the trigger will be fired and the row containing the deleted row’s name will be inserted with other values as NULL which will help us identify later which rows were deleted.,[object Object]
7,[object Object],NEED FOR CURSORS,[object Object],We cannot use sub-programs of PL/SQL with a simple select statement to retrieve more than one row. If a select statement in a procedure returns more than one row ,Oracle returns an error message since PL/SQL requires a special compatibility to retrieve and process more than one row.,[object Object],			Oracle processes procedure without error,[object Object],			Oracle returns error.,[object Object],SELECT statement in procedure returning one row,[object Object],row,[object Object],SELECT statement in procedure returning more than one row,[object Object],row,[object Object],row,[object Object],row,[object Object]
8,[object Object],CURSOR,[object Object],A PL/SQL cursor is a mechanism that provides a way to select multiple rows of data from the database and then process each row individually inside a PL/SQL program. A cursor is basically an area of memory containing SQL statements and information for processing those statements.,[object Object],A CURSOR is a pointer to the context area.,[object Object],		CURSOR is 			,[object Object],		pointing at ,[object Object],		this row1				             CURSOR is ,[object Object],							             pointing at,[object Object],						             this row2 now,[object Object],	   The cursor first points at row1 and once it is processed it then advances to row2 	    and so on.,[object Object],row1,[object Object],row1,[object Object],row2,[object Object],row2,[object Object],row3,[object Object],row3,[object Object],row4,[object Object],row4,[object Object]
9,[object Object],Types of CURSORS,[object Object],There are two types of cursors:,[object Object],Implicit cursor: Created and used by Oracle for all DML and PL/SQL select statements including those returning only one row.,[object Object],Explicit cursor : Created and used by the programmer for queries that return more than one row.,[object Object]
10,[object Object],Types of CURSORS,[object Object],SYNTAX:,[object Object],DECLARE,[object Object],CURSOR cursor_name  ,[object Object],AS					Cursor Declaration,[object Object],SELECT statement;,[object Object],--  Variable declaration if any;,[object Object],BEGIN,[object Object],OPEN cursor_name;,[object Object],FETCH <cursor_name> INTO <record_list>	 Cursor Body,[object Object],-- data fetched into active data set.,[object Object],CLOSE cursor_name;,[object Object],END;,[object Object]
11,[object Object],EXAMPLE OF CURSOR,[object Object],DECLARE,[object Object],CURSOR cus AS SELECT * FROM InfoTable;,[object Object],customer  InfoTable%ROWTYPE;	         declare a rowtype variable,[object Object],BEGIN,[object Object],OPEN cus;,[object Object],LOOP,[object Object],FETCH cus into customer;		         Fetch the row into the variable and advance cursor.,[object Object],DBMS_OUTPUT.PUT_LINE(‘name:’||customer.name);,[object Object],DBMS_OUTPUT.PUT_LINE(‘age:’||customer.age);,[object Object],DBMS_OUTPUT.PUT_LINE(‘phone:’||customer.phone);,[object Object],EXIT WHEN cus%NOTFOUND;	        Returns true when all rows have been fetched.,[object Object],END LOOP;,[object Object],CLOSE cus;,[object Object],END;,[object Object]
THANK YOU,[object Object],12,[object Object],THANK YOU FOR VIEWING THIS PRESENTATION,[object Object],FOR MORE PRESENTATIONS AND VIDEOS ON ORACLE AND DATAMINING ,,[object Object],please visit:  ,[object Object],www.dataminingtools.net,[object Object]

Más contenido relacionado

La actualidad más candente (18)

10053 - null is not nothing
10053 - null is not nothing10053 - null is not nothing
10053 - null is not nothing
 
Mysql creating stored function
Mysql  creating stored function Mysql  creating stored function
Mysql creating stored function
 
Not in vs not exists
Not in vs not existsNot in vs not exists
Not in vs not exists
 
Introduction to triggers
Introduction to triggersIntroduction to triggers
Introduction to triggers
 
PL/SQL - CURSORS
PL/SQL - CURSORSPL/SQL - CURSORS
PL/SQL - CURSORS
 
8
88
8
 
Lecture02 abap on line
Lecture02 abap on lineLecture02 abap on line
Lecture02 abap on line
 
Introduction to triggers
Introduction to triggersIntroduction to triggers
Introduction to triggers
 
PLSQL Advanced
PLSQL AdvancedPLSQL Advanced
PLSQL Advanced
 
Stored procedure in sql server
Stored procedure in sql serverStored procedure in sql server
Stored procedure in sql server
 
Oracle: PLSQL Introduction
Oracle: PLSQL IntroductionOracle: PLSQL Introduction
Oracle: PLSQL Introduction
 
Assignment
AssignmentAssignment
Assignment
 
Oracle Database Trigger
Oracle Database TriggerOracle Database Trigger
Oracle Database Trigger
 
Mysqlppt
MysqlpptMysqlppt
Mysqlppt
 
Triggers
TriggersTriggers
Triggers
 
Mysqlppt
MysqlpptMysqlppt
Mysqlppt
 
Bca ii dfs u-2 linklist,stack,queue
Bca ii  dfs u-2 linklist,stack,queueBca ii  dfs u-2 linklist,stack,queue
Bca ii dfs u-2 linklist,stack,queue
 
Ado.net by Awais Majeed
Ado.net by Awais MajeedAdo.net by Awais Majeed
Ado.net by Awais Majeed
 

Destacado

Actividad 1 un dia en la vida de
Actividad 1     un dia en la vida deActividad 1     un dia en la vida de
Actividad 1 un dia en la vida deGuillermo Mondragon
 
(아울러) 빅데이터실록 By 박한우
(아울러) 빅데이터실록 By 박한우(아울러) 빅데이터실록 By 박한우
(아울러) 빅데이터실록 By 박한우Han Woo PARK
 
Dennis yu social amplification engine_guide_v5.1_2016_1210
Dennis yu social amplification engine_guide_v5.1_2016_1210Dennis yu social amplification engine_guide_v5.1_2016_1210
Dennis yu social amplification engine_guide_v5.1_2016_1210Vasil Azarov
 
Building and Managing Social Media Collections
Building and Managing Social Media CollectionsBuilding and Managing Social Media Collections
Building and Managing Social Media CollectionsJason Casden
 
Modelo do dossiê 2014 - prêmio escola de qualidade
Modelo do dossiê  2014 - prêmio escola de qualidadeModelo do dossiê  2014 - prêmio escola de qualidade
Modelo do dossiê 2014 - prêmio escola de qualidadeem_raimundofernandes
 
Forgive and forget
Forgive and forgetForgive and forget
Forgive and forgetVSETLVM
 
Marketing management of mushroom and 7 p’s A Presentation By Mr Allah Dad k...
Marketing management  of mushroom and 7 p’s  A Presentation By Mr Allah Dad k...Marketing management  of mushroom and 7 p’s  A Presentation By Mr Allah Dad k...
Marketing management of mushroom and 7 p’s A Presentation By Mr Allah Dad k...Mr.Allah Dad Khan
 

Destacado (13)

Del rosario
Del rosarioDel rosario
Del rosario
 
Receitas PráTicas
Receitas PráTicasReceitas PráTicas
Receitas PráTicas
 
linkinding
linkindinglinkinding
linkinding
 
Actividad 1 un dia en la vida de
Actividad 1     un dia en la vida deActividad 1     un dia en la vida de
Actividad 1 un dia en la vida de
 
(아울러) 빅데이터실록 By 박한우
(아울러) 빅데이터실록 By 박한우(아울러) 빅데이터실록 By 박한우
(아울러) 빅데이터실록 By 박한우
 
Dennis yu social amplification engine_guide_v5.1_2016_1210
Dennis yu social amplification engine_guide_v5.1_2016_1210Dennis yu social amplification engine_guide_v5.1_2016_1210
Dennis yu social amplification engine_guide_v5.1_2016_1210
 
Mangalyaan
MangalyaanMangalyaan
Mangalyaan
 
Building and Managing Social Media Collections
Building and Managing Social Media CollectionsBuilding and Managing Social Media Collections
Building and Managing Social Media Collections
 
Modelo do dossiê 2014 - prêmio escola de qualidade
Modelo do dossiê  2014 - prêmio escola de qualidadeModelo do dossiê  2014 - prêmio escola de qualidade
Modelo do dossiê 2014 - prêmio escola de qualidade
 
Forgive and forget
Forgive and forgetForgive and forget
Forgive and forget
 
Oracle: Programs
Oracle: ProgramsOracle: Programs
Oracle: Programs
 
Marketing management of mushroom and 7 p’s A Presentation By Mr Allah Dad k...
Marketing management  of mushroom and 7 p’s  A Presentation By Mr Allah Dad k...Marketing management  of mushroom and 7 p’s  A Presentation By Mr Allah Dad k...
Marketing management of mushroom and 7 p’s A Presentation By Mr Allah Dad k...
 
Oracle: Joins
Oracle: JoinsOracle: Joins
Oracle: Joins
 

Similar a Oracle:Cursors

Similar a Oracle:Cursors (20)

3963066 pl-sql-notes-only
3963066 pl-sql-notes-only3963066 pl-sql-notes-only
3963066 pl-sql-notes-only
 
SQL / PL
SQL / PLSQL / PL
SQL / PL
 
plsql tutorialhub....
plsql tutorialhub....plsql tutorialhub....
plsql tutorialhub....
 
Triggers n Cursors.ppt
Triggers n Cursors.pptTriggers n Cursors.ppt
Triggers n Cursors.ppt
 
Cursors
CursorsCursors
Cursors
 
Oracle PL/SQL online training | PL/SQL online Training
Oracle PL/SQL online training | PL/SQL online TrainingOracle PL/SQL online training | PL/SQL online Training
Oracle PL/SQL online training | PL/SQL online Training
 
11303 dbms chap_02_triggers (2)
11303 dbms chap_02_triggers (2)11303 dbms chap_02_triggers (2)
11303 dbms chap_02_triggers (2)
 
4 cursors
4 cursors4 cursors
4 cursors
 
PLSQL (1).ppt
PLSQL (1).pptPLSQL (1).ppt
PLSQL (1).ppt
 
PLSQL CURSOR
PLSQL CURSORPLSQL CURSOR
PLSQL CURSOR
 
Intro to tsql unit 13
Intro to tsql   unit 13Intro to tsql   unit 13
Intro to tsql unit 13
 
Cursors.ppt
Cursors.pptCursors.ppt
Cursors.ppt
 
PLSQL.pptx
PLSQL.pptxPLSQL.pptx
PLSQL.pptx
 
L9 l10 server side programming
L9 l10  server side programmingL9 l10  server side programming
L9 l10 server side programming
 
Cursors
CursorsCursors
Cursors
 
My cool new Slideshow!
My cool new Slideshow!My cool new Slideshow!
My cool new Slideshow!
 
PLSQL Note
PLSQL NotePLSQL Note
PLSQL Note
 
Oracle: Procedures
Oracle: ProceduresOracle: Procedures
Oracle: Procedures
 
Oracle: Procedures
Oracle: ProceduresOracle: Procedures
Oracle: Procedures
 
Dynamic websites lec3
Dynamic websites lec3Dynamic websites lec3
Dynamic websites lec3
 

Más de oracle content

Más de oracle content (10)

Oracle: PLSQL Introduction
Oracle: PLSQL IntroductionOracle: PLSQL Introduction
Oracle: PLSQL Introduction
 
Oracle : DML
Oracle : DMLOracle : DML
Oracle : DML
 
Oracle: Commands
Oracle: CommandsOracle: Commands
Oracle: Commands
 
Oracle: Control Structures
Oracle:  Control StructuresOracle:  Control Structures
Oracle: Control Structures
 
Oracle: Dw Design
Oracle: Dw DesignOracle: Dw Design
Oracle: Dw Design
 
Oracle: Basic SQL
Oracle: Basic SQLOracle: Basic SQL
Oracle: Basic SQL
 
Oracle Warehouse
Oracle WarehouseOracle Warehouse
Oracle Warehouse
 
Oracle: Functions
Oracle: FunctionsOracle: Functions
Oracle: Functions
 
Oracle: New Plsql
Oracle: New PlsqlOracle: New Plsql
Oracle: New Plsql
 
Oracle: Fundamental Of Dw
Oracle: Fundamental Of DwOracle: Fundamental Of Dw
Oracle: Fundamental Of Dw
 

Último

PicPay - GenAI Finance Assistant - ChatGPT for Customer Service
PicPay - GenAI Finance Assistant - ChatGPT for Customer ServicePicPay - GenAI Finance Assistant - ChatGPT for Customer Service
PicPay - GenAI Finance Assistant - ChatGPT for Customer ServiceRenan Moreira de Oliveira
 
RAG Patterns and Vector Search in Generative AI
RAG Patterns and Vector Search in Generative AIRAG Patterns and Vector Search in Generative AI
RAG Patterns and Vector Search in Generative AIUdaiappa Ramachandran
 
Secure your environment with UiPath and CyberArk technologies - Session 1
Secure your environment with UiPath and CyberArk technologies - Session 1Secure your environment with UiPath and CyberArk technologies - Session 1
Secure your environment with UiPath and CyberArk technologies - Session 1DianaGray10
 
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...Aggregage
 
IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019
IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019
IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019IES VE
 
Machine Learning Model Validation (Aijun Zhang 2024).pdf
Machine Learning Model Validation (Aijun Zhang 2024).pdfMachine Learning Model Validation (Aijun Zhang 2024).pdf
Machine Learning Model Validation (Aijun Zhang 2024).pdfAijun Zhang
 
Things you didn't know you can use in your Salesforce
Things you didn't know you can use in your SalesforceThings you didn't know you can use in your Salesforce
Things you didn't know you can use in your SalesforceMartin Humpolec
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesThousandEyes
 
Crea il tuo assistente AI con lo Stregatto (open source python framework)
Crea il tuo assistente AI con lo Stregatto (open source python framework)Crea il tuo assistente AI con lo Stregatto (open source python framework)
Crea il tuo assistente AI con lo Stregatto (open source python framework)Commit University
 
9 Steps For Building Winning Founding Team
9 Steps For Building Winning Founding Team9 Steps For Building Winning Founding Team
9 Steps For Building Winning Founding TeamAdam Moalla
 
GenAI and AI GCC State of AI_Object Automation Inc
GenAI and AI GCC State of AI_Object Automation IncGenAI and AI GCC State of AI_Object Automation Inc
GenAI and AI GCC State of AI_Object Automation IncObject Automation
 
UiPath Community: AI for UiPath Automation Developers
UiPath Community: AI for UiPath Automation DevelopersUiPath Community: AI for UiPath Automation Developers
UiPath Community: AI for UiPath Automation DevelopersUiPathCommunity
 
OpenShift Commons Paris - Choose Your Own Observability Adventure
OpenShift Commons Paris - Choose Your Own Observability AdventureOpenShift Commons Paris - Choose Your Own Observability Adventure
OpenShift Commons Paris - Choose Your Own Observability AdventureEric D. Schabell
 
COMPUTER 10: Lesson 7 - File Storage and Online Collaboration
COMPUTER 10: Lesson 7 - File Storage and Online CollaborationCOMPUTER 10: Lesson 7 - File Storage and Online Collaboration
COMPUTER 10: Lesson 7 - File Storage and Online Collaborationbruanjhuli
 
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdf
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdfUiPath Solutions Management Preview - Northern CA Chapter - March 22.pdf
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdfDianaGray10
 
UiPath Platform: The Backend Engine Powering Your Automation - Session 1
UiPath Platform: The Backend Engine Powering Your Automation - Session 1UiPath Platform: The Backend Engine Powering Your Automation - Session 1
UiPath Platform: The Backend Engine Powering Your Automation - Session 1DianaGray10
 
Introduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptxIntroduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptxMatsuo Lab
 
Comparing Sidecar-less Service Mesh from Cilium and Istio
Comparing Sidecar-less Service Mesh from Cilium and IstioComparing Sidecar-less Service Mesh from Cilium and Istio
Comparing Sidecar-less Service Mesh from Cilium and IstioChristian Posta
 
UWB Technology for Enhanced Indoor and Outdoor Positioning in Physiological M...
UWB Technology for Enhanced Indoor and Outdoor Positioning in Physiological M...UWB Technology for Enhanced Indoor and Outdoor Positioning in Physiological M...
UWB Technology for Enhanced Indoor and Outdoor Positioning in Physiological M...UbiTrack UK
 
Spring24-Release Overview - Wellingtion User Group-1.pdf
Spring24-Release Overview - Wellingtion User Group-1.pdfSpring24-Release Overview - Wellingtion User Group-1.pdf
Spring24-Release Overview - Wellingtion User Group-1.pdfAnna Loughnan Colquhoun
 

Último (20)

PicPay - GenAI Finance Assistant - ChatGPT for Customer Service
PicPay - GenAI Finance Assistant - ChatGPT for Customer ServicePicPay - GenAI Finance Assistant - ChatGPT for Customer Service
PicPay - GenAI Finance Assistant - ChatGPT for Customer Service
 
RAG Patterns and Vector Search in Generative AI
RAG Patterns and Vector Search in Generative AIRAG Patterns and Vector Search in Generative AI
RAG Patterns and Vector Search in Generative AI
 
Secure your environment with UiPath and CyberArk technologies - Session 1
Secure your environment with UiPath and CyberArk technologies - Session 1Secure your environment with UiPath and CyberArk technologies - Session 1
Secure your environment with UiPath and CyberArk technologies - Session 1
 
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...
 
IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019
IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019
IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019
 
Machine Learning Model Validation (Aijun Zhang 2024).pdf
Machine Learning Model Validation (Aijun Zhang 2024).pdfMachine Learning Model Validation (Aijun Zhang 2024).pdf
Machine Learning Model Validation (Aijun Zhang 2024).pdf
 
Things you didn't know you can use in your Salesforce
Things you didn't know you can use in your SalesforceThings you didn't know you can use in your Salesforce
Things you didn't know you can use in your Salesforce
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
 
Crea il tuo assistente AI con lo Stregatto (open source python framework)
Crea il tuo assistente AI con lo Stregatto (open source python framework)Crea il tuo assistente AI con lo Stregatto (open source python framework)
Crea il tuo assistente AI con lo Stregatto (open source python framework)
 
9 Steps For Building Winning Founding Team
9 Steps For Building Winning Founding Team9 Steps For Building Winning Founding Team
9 Steps For Building Winning Founding Team
 
GenAI and AI GCC State of AI_Object Automation Inc
GenAI and AI GCC State of AI_Object Automation IncGenAI and AI GCC State of AI_Object Automation Inc
GenAI and AI GCC State of AI_Object Automation Inc
 
UiPath Community: AI for UiPath Automation Developers
UiPath Community: AI for UiPath Automation DevelopersUiPath Community: AI for UiPath Automation Developers
UiPath Community: AI for UiPath Automation Developers
 
OpenShift Commons Paris - Choose Your Own Observability Adventure
OpenShift Commons Paris - Choose Your Own Observability AdventureOpenShift Commons Paris - Choose Your Own Observability Adventure
OpenShift Commons Paris - Choose Your Own Observability Adventure
 
COMPUTER 10: Lesson 7 - File Storage and Online Collaboration
COMPUTER 10: Lesson 7 - File Storage and Online CollaborationCOMPUTER 10: Lesson 7 - File Storage and Online Collaboration
COMPUTER 10: Lesson 7 - File Storage and Online Collaboration
 
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdf
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdfUiPath Solutions Management Preview - Northern CA Chapter - March 22.pdf
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdf
 
UiPath Platform: The Backend Engine Powering Your Automation - Session 1
UiPath Platform: The Backend Engine Powering Your Automation - Session 1UiPath Platform: The Backend Engine Powering Your Automation - Session 1
UiPath Platform: The Backend Engine Powering Your Automation - Session 1
 
Introduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptxIntroduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptx
 
Comparing Sidecar-less Service Mesh from Cilium and Istio
Comparing Sidecar-less Service Mesh from Cilium and IstioComparing Sidecar-less Service Mesh from Cilium and Istio
Comparing Sidecar-less Service Mesh from Cilium and Istio
 
UWB Technology for Enhanced Indoor and Outdoor Positioning in Physiological M...
UWB Technology for Enhanced Indoor and Outdoor Positioning in Physiological M...UWB Technology for Enhanced Indoor and Outdoor Positioning in Physiological M...
UWB Technology for Enhanced Indoor and Outdoor Positioning in Physiological M...
 
Spring24-Release Overview - Wellingtion User Group-1.pdf
Spring24-Release Overview - Wellingtion User Group-1.pdfSpring24-Release Overview - Wellingtion User Group-1.pdf
Spring24-Release Overview - Wellingtion User Group-1.pdf
 

Oracle:Cursors

  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.