Administriva# CS#133:#Databases# Logical#Plan#to#Physical#Plan# Goals#for#Today# Spring#2017# Lec#11# #2/21# Query#Evalua?on# Prof.

Size: px
Start display at page:

Download "Administriva# CS#133:#Databases# Logical#Plan#to#Physical#Plan# Goals#for#Today# Spring#2017# Lec#11# #2/21# Query#Evalua?on# Prof."

Transcription

1 Administriva CS133:Databases Spring2017 Lec11 2/21 QueryEvalua?on Prof.BethTrushkowsky Lab2 Part2duetomorrow FinalversionduenextWednesday Problemsets PS5dueThursday PS6outthisThursday Midterm Nextclass:reviewsession MidtermoutaSernextclass,due2/28(noclassthatday) GoalsforToday Discussalgorithmsforimplemen?ngqueryplan operators:selec?on,joins ReasonaboutcostinI/Os Understandhowexternalsor?ngandhashingcan beusedforthesealgorithms PrepareforfinalexercisesofLab2 LogicalPlantoPhysicalPlan Logicalqueryplanpar$allyshowsushowtoevaluatequery Missing:choiceofspecific'algorithm forexecu$ngoperators Access/path/choice: Sequen?alscan?Indexes? Join/algorithm/choice: Simplenestedloop Indexnestedloop Sort<merge?' Selec$ons:howtoapply mul?pleconstraints? Projec$ons:duplicateelim.?// bid=100'' Reserves' sname' sid=sid' ra8ng'>'5' Sailors'

2 Review:Rela?onalOpera?ons GeneralThemes Findingalgorithmsfor: Selec$on(σ) Projec$on(π) Last/$me:sor?ngorhashingto removeduplicateswhenprojec?ng WhatcanwedowhenalldatacannotfitinRAM Out:of:core/algorithms Conceptually:'form'par88ons'to'get' like 'things'together Cross:product/and/Join( ) Set:difference(b) Union( ) Aggrega$on(SUM,MIN,etc.)andGROUPBY Factorsinfluencingoperatorcost: Inputsize(numberofpages) Indexesavailable Bufferpoolspace ASerwecoverchoices'for'algorithms,wewilldiscuss howtoopmize/queriesformedbycomposingoperators SchemaforExamples Sailors(sid:integer,sname:string,ra$ng:integer,age:real) Reserves(sid:integer,bid:integer,day:date,rname:string) Similartooldschema;rnameaddedforvaria?ons. Reserves: Eachrecordis40byteslong 100recordperpage M=1000pages Sailors: Eachrecordis50byteslong, 80recordperpage N=500pages Thesenumbersalso onyourworksheet Oftheform SimpleSelec?ons σ R. attr value ( R) op SELECT* FROMReservesR WHERER.bid<100; Size'of'result'approximatedassize)of)R)*)reducon)factor Reduc?onfactor alsocalledselec$vity Sta?s?csinCatalogcanhelpuses?mate Howbesttoexecuteaselec?on?Dependson: Whatindexes/accesspathsareavailable Expectedsizeoftheresult (intermsofnumberoftuplesand/ornumberofpages)

3 SimpleSelec?ons:notusingindexes (Review) Withno'index,'unsorted: Mustscanthewholerela?on ForReserves=cost'is'M'(pagesinR)!1000I/Os. Withno'index,'sorted: Costofbinarysearch+numberofpagescontaining results ForReserves=log I/Os+%selec8vity*pages&' UsinganIndexforSelec?ons Costdependsonqualifyingtuplesandifindexclustered Costhastwocomponents: Findingqualifyingdataentries(typicallysmall,e.g.,findingleafintree) Pluscostofretrieving'records'(could'be'large'withoutclustering) Forexamplequeryon Reserves,if10%oftuplesqualify: (resultsizees?mate=100pagesor10,000'tuples) CLUSTERED'(Alt'2)' Lirlemore than100i/os Data'entries' (Index'File)' (Data'file)' UNCLUSTERED''(Alt'2)' Couldbemore than10,000i/os! Data'entries' Data'Records' Data'Records' Selec?onsusingIndex(cont) Important/refinement)for)unclustered/indexes: 1. Findqualifyingdataentries. 2.Sort'the'record'ids'ofthedatarecordstoberetrieved. 3.Fetchpagesin'order! Ensuresthateachdatapageislookedatjustonce(though ofsuchpageslikelytobehigherthanwithclustering). Whenusingthisrefinement,isusing theunclustered/index/ever/beder/than/ sequen$al/scan? GeneralSelec?onCondi?ons SELECT* FROMReservesR WHERER.bid=103ANDR.sid=42; AB+<tree'indexmatches(aconjunc?onof)termsif theterm(s)involveonlyarributesinaprefixofthe searchkey. E.g.,Indexon<a,)b,)c>''matchespredicate a=5)and)b=)3, butnot b=3 ' ForHashindex:indexmustinvolveallarributesin searchkey Why?

4 GeneralSelec?ons:TwoApproaches Whatifseveralindexesexistthatcouldbeused? Approach1:pick'one'indextouse Findthemost/selec$ve/access/path, retrievetuplesusingit, thenapplytheothercondi?ons Applyingothercondi?ons won timpactnumberof pagesfetched Most/selec$ve/access/ path:indexwithfile scanes?matedto requirefewestpagei/os GeneralSelec?ons:TwoApproaches Approach2:use'mul8ple'indexes Tousetwoormorematchingindexes (Alt2or3fordataentries): Getsets'of'record'ids'ofdatarecordsusingeachmatching index. Thenintersectthesesetsofrids. Retrievetherecordsandapplyanyremainingcondi?ons Example:day)<)8/9/94)AND/bid=103/AND/sid=42) SupposehaveB+'tree'index'on'day'andanindex'on'sid' Intersect:ridsusingindexondaywithridsusingindexonsid Thencheckbid=103 Exercise:Selec?on Exercise2 I. B+treeon<rname,day> II. B+treeon<day,rname> III. Hashindexon<day,rname> Disjunc?on: ifallcondi?onshaveanindex,usetheunionofrids! Butifevenoneofthemdoesnothaveindex,haveto dosequen?alscananyway JoinOperators Joinsareaverycommonqueryopera?on! Joinscanbeveryexpensive: ConsideraninnerjoinofRandSeachwith1Mrecords' How)many)tuples)in)the)answer)(worst)case)?) TwomainclassesofJOINalgorithms: Algorithmsthateffec?velyenumerate)cross)product) Algorithmsthatavoid)cross)product)bygexng like par??onstogether

5 EqualityJoinsonOneJoinColumn SELECT * FROM Reserves R, Sailors S WHERE R.sid=S.sid Rela?oninfo: M=1000pagesinR,t R =100tuplesperpage. N=500pagesinS,t S =80tuplesperpage. Inexamples,RisReservesandSisSailors. Cost)metric):ofI/Os (Wewillignorecostoffinaloutputfromquery) SimpleNestedLoopsJoin foreachtuplerinrdo foreachtuplesinsdo ifr i ==s j thenadd<r,s>toresult Foreachtupleintheouterrela?onR,wescan theen?reinnerrela?ons. Cost:(t R *M)*N+M =100,000* I/Os. Whatifsmallerrela?on(S)wasouter? (t s *N)*M+N=40,000* I/Os. PagebOrientedNestedLoopsJoin foreachpagep R inrdo Howmanybufferpool foreachpagep S insdo framesdoweneed? foreachtuplerinp R do foreachtuplesinp S do ifr i ==s j thenadd<r,s>toresult ForeachpageofR,geteachpageofS,andwriteout matchingpairsoftuples<r,s>,whererisinrbpageands isinsbpage. Whatisthecostofthisapproach?(TryExercise3) WithRasouter,cost=M*N+M=1000* Ifsmallerrela?on(S)isouter,cost=500* BlockNestedLoopsJoin PageborientedNLdoesn tuseallavailablebufferframes! Alterna?veapproach: Useonepageasaninput'bufferforscanningthe'inner'S, onepageastheoutputbuffer anduseallremainingpagestohold'block'of'outer'r' ForeachblockofR,scanthrougheachpageofSformatches R&S.'.'.' Input'buffer'for'S' block'of'r'tuples' (<'B<1'pages)'.'.'.' Output'buffer' JoinResult.'.'.'

6 BlockNestedLoopJoin:Examples Cost:/Scanofouter+outerblocks*scanofinner outerblocks=ceiling(pagesofouter/blocksize) WithReserves(R)asouter,and100'pages/block: ScanningRis1000I/Os;atotalof10blocks. PerblockofR,scanSailors(S);10*500'I/Os. Howmany?meswouldwe scansiftheblock'size'was'b' insteadof100? With100bpageblockofSailorsasouter: CostofscanningSis500I/Os;atotalof5blocks. PerblockofS,scanReserves:5*1000I/Os. AvoidingCrossbproduct Simple,Pageboriented,andBlockNestedbloop joinalgorithmseffec8vely'enumerate'the'cross< product' everypairoftuplesiscompared Next:algorithmsthatavoidcrossbproduct (forequalityjoins) tuplesinthetworela?onscanbethoughtofas belongingtoparons)' Indexprobe IndexNestedLoopsJoin Ifthereisanindexonthejoincolumnofonerela?on(sayS), canmakethatrela?ontheinnerandusetheindex Cost:M+((M*t R )*cost'of'finding'matching's'tuples) Typical probe costs: 1.2I/Osforhashindex 2b4I/OsforB+tree foreachtuplerinrdo foreachtuplesinswheres==r do add<r,s>toresult Probetofindmatching data)entries) Thecost'of'finding'S'tuples'(assumingAlt.(2)or(3)fordata entries)dependsonifindexisclustered Clustered:1I/OperpageofmatchingStuples. Unclustered:upto1I/OpermatchingStuple. Exercise4:IndexNestedLoops HaveHashbindex(Alt.2)onsidofSailors(asinner) ScanReserves:1000'page'I/Os,100*1000tuples. ForeachReservestuple:''' 1.2'I/Os'togetdataentryinindex, plus1'i/otoget[the)exactly)one]matchingsailorstuple Totalcost: *100,000=221,000'I/Os' Hashbindex(Alt.2)onsidofReserves(asinner): ScanSailors:500'page'I/Os,80*500tuples. ForeachSailorstuple: 1.2'I/Ostofindindexpagewithdataentries, plus'cost'of'retrieving'matching'reserves'tuples Assuminguniformdistribu?on,2.5reserva?onspersailor (100,000tuplesinR/40,000tuplesinS). Costofretrievingthemis1or2.5I/Osdependingonwhether theindexisclustered

7 i=j SortbMergeJoin(RS) SortRandSonthejoincolumn,thenscanthem todoa merge (onjoinfield),andoutputresult tuples. Par?cularlyusefulif oneorbothinputsarealreadysortedonjoinfield(s) outputisrequiredtobesortedonjoinfield(s) ExampleofSortbMergeJoin sid sname rating age 22 dustin yuppy lubber guppy rusty InstanceofSailors (outer) Supposejoiningonsid=sid sid bid day rname /4/96 guppy /3/96 yuppy /10/96 dustin /12/96 lubber /11/96 lubber /12/96 dustin InstanceofReserves (inner) CostforthisJOIN:SortS+SortR+(M+N) Thecostofmerging:typicallyM+N Why? Reflec?on:SortbMergeJoin Outerrela?onisscannedonce Eachpar88onofInnerrela?onisscanned once'per'matching'outer'tuple' Merge phasecanrequiresomebacktrackingif duplicatevaluesappearinjoincolumn Mul?plescansofanInnerpar??onwillprobably findneededpagesinbufferpool HashbJoin (thisvariant: GraceHashJoin ) Par??onboth rela?onsonthejoin arributesusinghash func?onh Rtuplesinpar??onR i willonlymatchs tuplesinpar??ons i. Foreachpar??oni ReadinallofR i, HashR i onh2 Scanthroughpagesof S i,probinghashtable formatches Original'' Rela8on'.'.'.' Disk' Par88ons' of'r'&'s' Disk' INPUT' hash' fn' h2' hash' func8on' h' B'main'memory'buffers' Hash'table'for'par88on' R i '('<'B<1'pages)' h2' Input'buffer' for's i' OUTPUT' 1' 2' B<1' Output'' 'buffer' B'main'memory'buffers' Par88ons' Disk' 1' 2' Join'Result' B<1'

8 Aggrega?onOpera?ons (AVG,MIN,etc.) Withoutgrouping: Ingeneral,requiresscanningtherela?on. Givenatreeindexwhosesearchkeyincludesallarributes intheselectorwhereclauses,candoindex<only'scan. Withgrouping: Sortongroupbbyarributes,thenscanrela?onand computeaggregateforeachgroup. Similarapproachbasedonhashingongroupbbyarributes. Canuseatreeindexwhosesearchkey covers all arributesinselect,whereandgroupbyclauses SimpleDb:InsertandDelete Insertoperator Insertstuplesitgetsfromitschildintoagivenrela?on Output:numberoftuplesinserted INSERT INTO Students(sid, name, gpa) VALUES (42, Alice, 3.5); A'tuple!' Deleteoperator Deletesthetuplesitgetsfromitschild Output:numberoftuplesdeleted AsktheBufferPooltoinsert/delete INSERT INTO HonorsStudents Possibly' SELECT sid,name,gpa FROM Students mul8ple' WHERE gpa > 3.8; tuples!'(or'0)'' DELETE FROM Students WHERE gpa < 2.0; SimpleDb:BufferPoolEvic?on Implementapageevic?onpolicy UpdategetPage()toevictifnecessary Flushingpages Beforeadirtypageisevicted,itschangesmustbe wrirentodisk! However,callingflushPage()shouldnotevict pages!!

Administriva. CS 133: Databases. General Themes. Goals for Today. Fall 2018 Lec 11 10/11 Query Evaluation Prof. Beth Trushkowsky

Administriva. CS 133: Databases. General Themes. Goals for Today. Fall 2018 Lec 11 10/11 Query Evaluation Prof. Beth Trushkowsky Administriva Lab 2 Final version due next Wednesday CS 133: Databases Fall 2018 Lec 11 10/11 Query Evaluation Prof. Beth Trushkowsky Problem sets PSet 5 due today No PSet out this week optional practice

More information

Implementation of Relational Operations

Implementation of Relational Operations Implementation of Relational Operations Module 4, Lecture 1 Database Management Systems, R. Ramakrishnan 1 Relational Operations We will consider how to implement: Selection ( ) Selects a subset of rows

More information

Evaluation of Relational Operations. Relational Operations

Evaluation of Relational Operations. Relational Operations Evaluation of Relational Operations Chapter 14, Part A (Joins) Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 1 Relational Operations v We will consider how to implement: Selection ( )

More information

Database Applications (15-415)

Database Applications (15-415) Database Applications (15-415) DBMS Internals- Part VII Lecture 15, March 17, 2014 Mohammad Hammoud Today Last Session: DBMS Internals- Part VI Algorithms for Relational Operations Today s Session: DBMS

More information

Evaluation of Relational Operations

Evaluation of Relational Operations Evaluation of Relational Operations Chapter 12, Part A Database Management Systems, R. Ramakrishnan and J. Gehrke 1 Relational Operations We will consider how to implement: Selection ( ) Selects a subset

More information

Implementing Joins 1

Implementing Joins 1 Implementing Joins 1 Last Time Selection Scan, binary search, indexes Projection Duplicate elimination: sorting, hashing Index-only scans Joins 2 Tuple Nested Loop Join foreach tuple r in R do foreach

More information

Presenter: Eunice Tan Lam Ziyuan Yan Ming fei. Join Algorithm

Presenter: Eunice Tan Lam Ziyuan Yan Ming fei. Join Algorithm Presenter: Eunice Tan Lam Ziyuan Yan Ming fei Join Algorithm Example Table Table Sailors sid sname rating Age 22 Dustin 7 45 28 Yuppy 9 35 31 Lubber 8 55 36 Guppy 6 36 44 rusty 5 35 Table Reserves sid

More information

CS330. Query Processing

CS330. Query Processing CS330 Query Processing 1 Overview of Query Evaluation Plan: Tree of R.A. ops, with choice of alg for each op. Each operator typically implemented using a `pull interface: when an operator is `pulled for

More information

Overview of Query Evaluation. Overview of Query Evaluation

Overview of Query Evaluation. Overview of Query Evaluation Overview of Query Evaluation Chapter 12 Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 1 Overview of Query Evaluation v Plan: Tree of R.A. ops, with choice of alg for each op. Each operator

More information

Overview of Query Evaluation

Overview of Query Evaluation Overview of Query Evaluation Chapter 12 Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 1 Overview of Query Evaluation Plan: Tree of R.A. ops, with choice of alg for each op. Each operator

More information

Database Management System. Relational Algebra and operations

Database Management System. Relational Algebra and operations Database Management System Relational Algebra and operations Basic operations: Selection ( ) Selects a subset of rows from relation. Projection ( ) Deletes unwanted columns from relation. Cross-product

More information

Evaluation of relational operations

Evaluation of relational operations Evaluation of relational operations Iztok Savnik, FAMNIT Slides & Textbook Textbook: Raghu Ramakrishnan, Johannes Gehrke, Database Management Systems, McGraw-Hill, 3 rd ed., 2007. Slides: From Cow Book

More information

Evaluation of Relational Operations

Evaluation of Relational Operations Evaluation of Relational Operations Yanlei Diao UMass Amherst March 13 and 15, 2006 Slides Courtesy of R. Ramakrishnan and J. Gehrke 1 Relational Operations We will consider how to implement: Selection

More information

Database Applications (15-415)

Database Applications (15-415) Database Applications (15-415) DBMS Internals- Part VIII Lecture 16, March 19, 2014 Mohammad Hammoud Today Last Session: DBMS Internals- Part VII Algorithms for Relational Operations (Cont d) Today s Session:

More information

Database Systems. Announcement. December 13/14, 2006 Lecture #10. Assignment #4 is due next week.

Database Systems. Announcement. December 13/14, 2006 Lecture #10. Assignment #4 is due next week. Database Systems ( 料 ) December 13/14, 2006 Lecture #10 1 Announcement Assignment #4 is due next week. 2 1 Overview of Query Evaluation Chapter 12 3 Outline Query evaluation (Overview) Relational Operator

More information

CompSci 516 Data Intensive Computing Systems

CompSci 516 Data Intensive Computing Systems CompSci 516 Data Intensive Computing Systems Lecture 9 Join Algorithms and Query Optimizations Instructor: Sudeepa Roy CompSci 516: Data Intensive Computing Systems 1 Announcements Takeaway from Homework

More information

CAS CS 460/660 Introduction to Database Systems. Query Evaluation II 1.1

CAS CS 460/660 Introduction to Database Systems. Query Evaluation II 1.1 CAS CS 460/660 Introduction to Database Systems Query Evaluation II 1.1 Cost-based Query Sub-System Queries Select * From Blah B Where B.blah = blah Query Parser Query Optimizer Plan Generator Plan Cost

More information

Database Management Systems. Chapter 4. Relational Algebra. Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 1

Database Management Systems. Chapter 4. Relational Algebra. Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 1 Database Management Systems Chapter 4 Relational Algebra Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 1 Formal Relational Query Languages Two mathematical Query Languages form the basis

More information

Overview of DB & IR. ICS 624 Spring Asst. Prof. Lipyeow Lim Information & Computer Science Department University of Hawaii at Manoa

Overview of DB & IR. ICS 624 Spring Asst. Prof. Lipyeow Lim Information & Computer Science Department University of Hawaii at Manoa ICS 624 Spring 2011 Overview of DB & IR Asst. Prof. Lipyeow Lim Information & Computer Science Department University of Hawaii at Manoa 1/12/2011 Lipyeow Lim -- University of Hawaii at Manoa 1 Example

More information

Implementation of Relational Operations. Introduction. CS 186, Fall 2002, Lecture 19 R&G - Chapter 12

Implementation of Relational Operations. Introduction. CS 186, Fall 2002, Lecture 19 R&G - Chapter 12 Implementation of Relational Operations CS 186, Fall 2002, Lecture 19 R&G - Chapter 12 First comes thought; then organization of that thought, into ideas and plans; then transformation of those plans into

More information

Query and Join Op/miza/on 11/5

Query and Join Op/miza/on 11/5 Query and Join Op/miza/on 11/5 Overview Recap of Merge Join Op/miza/on Logical Op/miza/on Histograms (How Es/mates Work. Big problem!) Physical Op/mizer (if we have /me) Recap on Merge Key (Simple) Idea

More information

Relational Algebra. [R&G] Chapter 4, Part A CS4320 1

Relational Algebra. [R&G] Chapter 4, Part A CS4320 1 Relational Algebra [R&G] Chapter 4, Part A CS4320 1 Relational Query Languages Query languages: Allow manipulation and retrieval of data from a database. Relational model supports simple, powerful QLs:

More information

Dtb Database Systems. Announcement

Dtb Database Systems. Announcement Dtb Database Systems ( 資料庫系統 ) December 10, 2008 Lecture #11 1 Announcement Assignment #5 will be out on the course webpage today. 2 1 External Sorting Chapter 13 3 Why learn sorting again? O (n*n): bubble,

More information

CS 4604: Introduction to Database Management Systems. B. Aditya Prakash Lecture #10: Query Processing

CS 4604: Introduction to Database Management Systems. B. Aditya Prakash Lecture #10: Query Processing CS 4604: Introduction to Database Management Systems B. Aditya Prakash Lecture #10: Query Processing Outline introduction selection projection join set & aggregate operations Prakash 2018 VT CS 4604 2

More information

ECS 165B: Database System Implementa6on Lecture 7

ECS 165B: Database System Implementa6on Lecture 7 ECS 165B: Database System Implementa6on Lecture 7 UC Davis April 12, 2010 Acknowledgements: por6ons based on slides by Raghu Ramakrishnan and Johannes Gehrke. Class Agenda Last 6me: Dynamic aspects of

More information

Overview of Query Processing. Evaluation of Relational Operations. Why Sort? Outline. Two-Way External Merge Sort. 2-Way Sort: Requires 3 Buffer Pages

Overview of Query Processing. Evaluation of Relational Operations. Why Sort? Outline. Two-Way External Merge Sort. 2-Way Sort: Requires 3 Buffer Pages Overview of Query Processing Query Parser Query Processor Evaluation of Relational Operations Query Rewriter Query Optimizer Query Executor Yanlei Diao UMass Amherst Lock Manager Access Methods (Buffer

More information

Relational Algebra. Note: Slides are posted on the class website, protected by a password written on the board

Relational Algebra. Note: Slides are posted on the class website, protected by a password written on the board Note: Slides are posted on the class website, protected by a password written on the board Reading: see class home page www.cs.umb.edu/cs630. Relational Algebra CS430/630 Lecture 2 Slides based on Database

More information

Introduction to Data Management. Lecture #11 (Relational Algebra)

Introduction to Data Management. Lecture #11 (Relational Algebra) Introduction to Data Management Lecture #11 (Relational Algebra) Instructor: Mike Carey mjcarey@ics.uci.edu Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 1 Announcements v HW and exams:

More information

CAS CS 460/660 Introduction to Database Systems. Relational Algebra 1.1

CAS CS 460/660 Introduction to Database Systems. Relational Algebra 1.1 CAS CS 460/660 Introduction to Database Systems Relational Algebra 1.1 Relational Query Languages Query languages: Allow manipulation and retrieval of data from a database. Relational model supports simple,

More information

Relational Algebra 1

Relational Algebra 1 Relational Algebra 1 Relational Algebra Last time: started on Relational Algebra What your SQL queries are translated to for evaluation A formal query language based on operators Rel Rel Op Rel Op Rel

More information

Relational Algebra. Chapter 4, Part A. Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 1

Relational Algebra. Chapter 4, Part A. Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 1 Relational Algebra Chapter 4, Part A Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 1 Relational Query Languages Query languages: Allow manipulation and retrieval of data from a database.

More information

Evaluation of Relational Operations. SS Chung

Evaluation of Relational Operations. SS Chung Evaluation of Relational Operations SS Chung Cost Metric Query Processing Cost = Disk I/O Cost + CPU Computation Cost Disk I/O Cost = Disk Access Time + Data Transfer Time Disk Acess Time = Seek Time +

More information

15-415/615 Faloutsos 1

15-415/615 Faloutsos 1 Carnegie Mellon Univ. Dept. of Computer Science 15-415/615 - DB Applications Lecture #14: Implementation of Relational Operations (R&G ch. 12 and 14) 15-415/615 Faloutsos 1 Outline introduction selection

More information

MIS Database Systems Relational Algebra

MIS Database Systems Relational Algebra MIS 335 - Database Systems Relational Algebra http://www.mis.boun.edu.tr/durahim/ Ahmet Onur Durahim Learning Objectives Basics of Query Languages Relational Algebra Selection Projection Union, Intersection,

More information

Overview of Implementing Relational Operators and Query Evaluation

Overview of Implementing Relational Operators and Query Evaluation Overview of Implementing Relational Operators and Query Evaluation Chapter 12 Motivation: Evaluating Queries The same query can be evaluated in different ways. The evaluation strategy (plan) can make orders

More information

Overview of Query Processing

Overview of Query Processing ICS 321 Fall 2013 Overview of Query Processing Asst. Prof. Lipyeow Lim Information & Computer Science Department University of Hawaii at Manoa 11/20/2013 Lipyeow Lim -- University of Hawaii at Manoa 1

More information

Relational algebra. Iztok Savnik, FAMNIT. IDB, Algebra

Relational algebra. Iztok Savnik, FAMNIT. IDB, Algebra Relational algebra Iztok Savnik, FAMNIT Slides & Textbook Textbook: Raghu Ramakrishnan, Johannes Gehrke, Database Management Systems, McGraw-Hill, 3 rd ed., 2007. Slides: From Cow Book : R.Ramakrishnan,

More information

Relational Query Languages. Relational Algebra. Preliminaries. Formal Relational Query Languages. Relational Algebra: 5 Basic Operations

Relational Query Languages. Relational Algebra. Preliminaries. Formal Relational Query Languages. Relational Algebra: 5 Basic Operations Relational Algebra R & G, Chapter 4 By relieving the brain of all unnecessary work, a good notation sets it free to concentrate on more advanced problems, and, in effect, increases the mental power of

More information

Relational Algebra Homework 0 Due Tonight, 5pm! R & G, Chapter 4 Room Swap for Tuesday Discussion Section Homework 1 will be posted Tomorrow

Relational Algebra Homework 0 Due Tonight, 5pm! R & G, Chapter 4 Room Swap for Tuesday Discussion Section Homework 1 will be posted Tomorrow Relational Algebra R & G, Chapter 4 By relieving the brain of all unnecessary work, a good notation sets it free to concentrate on more advanced problems, and, in effect, increases the mental power of

More information

Database Systems. Course Administration. 10/13/2010 Lecture #4

Database Systems. Course Administration. 10/13/2010 Lecture #4 Database Systems 10/13/2010 Lecture #4 1 Course Administration Assignment #1 is due at the end of next week s class. Course slides will now have black background Printer friendly: set the printing color

More information

External Sorting Implementing Relational Operators

External Sorting Implementing Relational Operators External Sorting Implementing Relational Operators 1 Readings [RG] Ch. 13 (sorting) 2 Where we are Working our way up from hardware Disks File abstraction that supports insert/delete/scan Indexing for

More information

Relational Algebra. Relational Query Languages

Relational Algebra. Relational Query Languages Relational Algebra π CS 186 Fall 2002, Lecture 7 R & G, Chapter 4 By relieving the brain of all unnecessary work, a good notation sets it free to concentrate on more advanced problems, and, in effect,

More information

Announcement. Reading Material. Overview of Query Evaluation. Overview of Query Evaluation. Overview of Query Evaluation 9/26/17

Announcement. Reading Material. Overview of Query Evaluation. Overview of Query Evaluation. Overview of Query Evaluation 9/26/17 Announcement CompSci 516 Database Systems Lecture 10 Query Evaluation and Join Algorithms Project proposal pdf due on sakai by 5 pm, tomorrow, Thursday 09/27 One per group by any member Instructor: Sudeepa

More information

Relational Query Languages

Relational Query Languages 1 ITCS 3160 DATA BASE DESIGN AND IMPLEMENTATION JING YANG 2010 FALL Class 9: The Relational Algebra and Relational Calculus Relational Query Languages 2 Query languages: Allow manipulation and retrieval

More information

Evaluation of Relational Operations

Evaluation of Relational Operations Evaluation of Relational Operations Chapter 14 Comp 521 Files and Databases Fall 2010 1 Relational Operations We will consider in more detail how to implement: Selection ( ) Selects a subset of rows from

More information

Relational Algebra 1. Week 4

Relational Algebra 1. Week 4 Relational Algebra 1 Week 4 Relational Query Languages Query languages: Allow manipulation and retrieval of data from a database. Relational model supports simple, powerful QLs: Strong formal foundation

More information

Relational Algebra 1

Relational Algebra 1 Relational Algebra 1 Relational Query Languages v Query languages: Allow manipulation and retrieval of data from a database. v Relational model supports simple, powerful QLs: Strong formal foundation based

More information

CSCC43H: Introduction to Databases. Lecture 3

CSCC43H: Introduction to Databases. Lecture 3 CSCC43H: Introduction to Databases Lecture 3 Wael Aboulsaadat Acknowledgment: these slides are partially based on Prof. Garcia-Molina & Prof. Ullman slides accompanying the course s textbook. CSCC43: Introduction

More information

Administrivia# CS#133:#Databases# CostXbased#Query#SubXSystem# Goals#for#Today# Lab#3#starts#next#week# No#problem#set#out#this#week#

Administrivia# CS#133:#Databases# CostXbased#Query#SubXSystem# Goals#for#Today# Lab#3#starts#next#week# No#problem#set#out#this#week# Administrivia CS133:Databases Spring2017 Lec13 3/02 Prof.BethTrushkowsky Lab3startsnextweek Noproblemsetoutthisweek Updatedgrutoringhours TakepollonPiazzaformyofficehoursNming! GoalsforToday ReasonaboutthestagesofqueryopNmizaNon

More information

Examples of Physical Query Plan Alternatives. Selected Material from Chapters 12, 14 and 15

Examples of Physical Query Plan Alternatives. Selected Material from Chapters 12, 14 and 15 Examples of Physical Query Plan Alternatives Selected Material from Chapters 12, 14 and 15 1 Query Optimization NOTE: SQL provides many ways to express a query. HENCE: System has many options for evaluating

More information

Basic form of SQL Queries

Basic form of SQL Queries SQL - 1 Week 6 Basic form of SQL Queries SELECT FROM WHERE target-list relation-list qualification target-list A list of attributes of output relations in relation-list relation-list A list of relation

More information

Database Applications (15-415)

Database Applications (15-415) Database Applications (15-415) DBMS Internals- Part VI Lecture 14, March 12, 2014 Mohammad Hammoud Today Last Session: DBMS Internals- Part V Hash-based indexes (Cont d) and External Sorting Today s Session:

More information

Database Management Systems. Chapter 5

Database Management Systems. Chapter 5 Database Management Systems Chapter 5 SQL Example Instances We will use these instances of the Sailors and Reserves relations in our examples. If the key for the Reserves relation contained only the attributes

More information

Implementing Relational Operators: Selection, Projection, Join. Database Management Systems, R. Ramakrishnan and J. Gehrke 1

Implementing Relational Operators: Selection, Projection, Join. Database Management Systems, R. Ramakrishnan and J. Gehrke 1 Implementing Relational Operators: Selection, Projection, Join Database Management Systems, R. Ramakrishnan and J. Gehrke 1 Readings [RG] Sec. 14.1-14.4 Database Management Systems, R. Ramakrishnan and

More information

R & G Chapter 13. Implementation of single Relational Operations Choices depend on indexes, memory, stats, Joins Blocked nested loops:

R & G Chapter 13. Implementation of single Relational Operations Choices depend on indexes, memory, stats, Joins Blocked nested loops: Relational Query Optimization R & G Chapter 13 Review Implementation of single Relational Operations Choices depend on indexes, memory, stats, Joins Blocked nested loops: simple, exploits extra memory

More information

Relational Algebra and Calculus. Relational Query Languages. Formal Relational Query Languages. Yanlei Diao UMass Amherst Feb 1, 2007

Relational Algebra and Calculus. Relational Query Languages. Formal Relational Query Languages. Yanlei Diao UMass Amherst Feb 1, 2007 Relational Algebra and Calculus Yanlei Diao UMass Amherst Feb 1 2007 Slides Courtesy of R. Ramakrishnan and J. Gehrke 1 Relational Query Languages A major strength of the relational model: supports simple

More information

QUERY EXECUTION: How to Implement Relational Operations?

QUERY EXECUTION: How to Implement Relational Operations? QUERY EXECUTION: How to Implement Relational Operations? 1 Introduction We ve covered the basic underlying storage, buffering, indexing and sorting technology Now we can move on to query processing Relational

More information

Evaluation of Relational Operations: Other Techniques. Chapter 14 Sayyed Nezhadi

Evaluation of Relational Operations: Other Techniques. Chapter 14 Sayyed Nezhadi Evaluation of Relational Operations: Other Techniques Chapter 14 Sayyed Nezhadi Schema for Examples Sailors (sid: integer, sname: string, rating: integer, age: real) Reserves (sid: integer, bid: integer,

More information

Database Applications (15-415)

Database Applications (15-415) Database Applications (15-415) Relational Algebra Lecture 5, January 24, 2016 Mohammad Hammoud Today Last Session: The relational model Today s Session: Relational algebra Relational query languages (in

More information

SQL: Queries, Programming, Triggers

SQL: Queries, Programming, Triggers SQL: Queries, Programming, Triggers CSC343 Introduction to Databases - A. Vaisman 1 Example Instances We will use these instances of the Sailors and Reserves relations in our examples. If the key for the

More information

Administrivia. CS 133: Databases. Cost-based Query Sub-System. Goals for Today. Midterm on Thursday 10/18. Assignments

Administrivia. CS 133: Databases. Cost-based Query Sub-System. Goals for Today. Midterm on Thursday 10/18. Assignments Administrivia Midterm on Thursday 10/18 CS 133: Databases Fall 2018 Lec 12 10/16 Prof. Beth Trushkowsky Assignments Lab 3 starts after fall break No problem set out this week Goals for Today Cost-based

More information

Query Optimization in Relational Database Systems

Query Optimization in Relational Database Systems Query Optimization in Relational Database Systems It is safer to accept any chance that offers itself, and extemporize a procedure to fit it, than to get a good plan matured, and wait for a chance of using

More information

SQL: Queries, Constraints, Triggers

SQL: Queries, Constraints, Triggers SQL: Queries, Constraints, Triggers [R&G] Chapter 5 CS4320 1 Example Instances We will use these instances of the Sailors and Reserves relations in our examples. If the key for the Reserves relation contained

More information

Database Management Systems. Chapter 5

Database Management Systems. Chapter 5 Database Management Systems Chapter 5 SQL Example Instances We will use these instances of the Sailors and Reserves relations in our examples. If the key for the Reserves relation contained only the attributes

More information

Relational Query Optimization

Relational Query Optimization Relational Query Optimization Module 4, Lectures 3 and 4 Database Management Systems, R. Ramakrishnan 1 Overview of Query Optimization Plan: Tree of R.A. ops, with choice of alg for each op. Each operator

More information

Relational Query Languages. Preliminaries. Formal Relational Query Languages. Example Schema, with table contents. Relational Algebra

Relational Query Languages. Preliminaries. Formal Relational Query Languages. Example Schema, with table contents. Relational Algebra Note: Slides are posted on the class website, protected by a password written on the board Reading: see class home page www.cs.umb.edu/cs630. Relational Algebra CS430/630 Lecture 2 Relational Query Languages

More information

Introduction to Data Management. Lecture #14 (Relational Languages IV)

Introduction to Data Management. Lecture #14 (Relational Languages IV) Introduction to Data Management Lecture #14 (Relational Languages IV) Instructor: Mike Carey mjcarey@ics.uci.edu Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 1 It s time again for...

More information

v Conceptual Design: ER model v Logical Design: ER to relational model v Querying and manipulating data

v Conceptual Design: ER model v Logical Design: ER to relational model v Querying and manipulating data Outline Conceptual Design: ER model Relational Algebra Calculus Yanlei Diao UMass Amherst Logical Design: ER to relational model Querying and manipulating data Practical language: SQL Declarative: say

More information

CS330. Some Logistics. Three Topics. Indexing, Query Processing, and Transactions. Next two homework assignments out today Extra lab session:

CS330. Some Logistics. Three Topics. Indexing, Query Processing, and Transactions. Next two homework assignments out today Extra lab session: CS330 Indexing, Query Processing, and Transactions 1 Some Logistics Next two homework assignments out today Extra lab session: This Thursday, after class, in this room Bring your laptop fully charged Extra

More information

Query Processing and Query Optimization. Prof Monika Shah

Query Processing and Query Optimization. Prof Monika Shah Query Processing and Query Optimization Query Processing SQL Query Is in Library Cache? System catalog (Dict / Dict cache) Scan and verify relations Parse into parse tree (relational Calculus) View definitions

More information

Sorting a file in RAM. External Sorting. Why Sort? 2-Way Sort of N pages Requires Minimum of 3 Buffers Pass 0: Read a page, sort it, write it.

Sorting a file in RAM. External Sorting. Why Sort? 2-Way Sort of N pages Requires Minimum of 3 Buffers Pass 0: Read a page, sort it, write it. Sorting a file in RAM External Sorting Chapter 13 Three steps: Read the entire file from disk into RAM Sort the records using a standard sorting procedure, such as Shell sort, heap sort, bubble sort, Write

More information

CIS 330: Applied Database Systems

CIS 330: Applied Database Systems 1 CIS 330: Applied Database Systems Lecture 7: SQL Johannes Gehrke johannes@cs.cornell.edu http://www.cs.cornell.edu/johannes Logistics Office hours role call: Mondays, 3-4pm Tuesdays, 4:30-5:30 Wednesdays,

More information

Query Optimization. Schema for Examples. Motivating Example. Similar to old schema; rname added for variations. Reserves: Sailors:

Query Optimization. Schema for Examples. Motivating Example. Similar to old schema; rname added for variations. Reserves: Sailors: Query Optimization atabase Management Systems 3ed, R. Ramakrishnan and J. Gehrke 1 Schema for Examples (sid: integer, sname: string, rating: integer, age: real) (sid: integer, bid: integer, day: dates,

More information

CIS 330: Applied Database Systems. ER to Relational Relational Algebra

CIS 330: Applied Database Systems. ER to Relational Relational Algebra CIS 330: Applied Database Systems ER to Relational Relational Algebra 1 Logical DB Design: ER to Relational Entity sets to tables: ssn name Employees lot CREATE TABLE Employees (ssn CHAR(11), name CHAR(20),

More information

Database Applications (15-415)

Database Applications (15-415) Database Applications (15-415) DBMS Internals- Part VI Lecture 17, March 24, 2015 Mohammad Hammoud Today Last Two Sessions: DBMS Internals- Part V External Sorting How to Start a Company in Five (maybe

More information

CS 4604: Introduc0on to Database Management Systems. B. Aditya Prakash Lecture #11: Query Processing and Midterm Review

CS 4604: Introduc0on to Database Management Systems. B. Aditya Prakash Lecture #11: Query Processing and Midterm Review CS 4604: Introduc0on to Database Management Systems B. Aditya Prakash Lecture #11: Query Processing and Midterm Review Outline introducdon selecdon projecdon join set & aggregate operadons Prakash 2014

More information

Introduction to Data Management. Lecture #13 (Relational Calculus, Continued) It s time for another installment of...

Introduction to Data Management. Lecture #13 (Relational Calculus, Continued) It s time for another installment of... Introduction to Data Management Lecture #13 (Relational Calculus, Continued) Instructor: Mike Carey mjcarey@ics.uci.edu Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 1 It s time for another

More information

Review: Where have we been?

Review: Where have we been? SQL Basic Review Query languages provide 2 key advantages: Less work for user asking query More opportunities for optimization Algebra and safe calculus are simple and powerful models for query languages

More information

Operator Implementation Wrap-Up Query Optimization

Operator Implementation Wrap-Up Query Optimization Operator Implementation Wrap-Up Query Optimization 1 Last time: Nested loop join algorithms: TNLJ PNLJ BNLJ INLJ Sort Merge Join Hash Join 2 General Join Conditions Equalities over several attributes (e.g.,

More information

Lecture 2 SQL. Instructor: Sudeepa Roy. CompSci 516: Data Intensive Computing Systems

Lecture 2 SQL. Instructor: Sudeepa Roy. CompSci 516: Data Intensive Computing Systems CompSci 516 Data Intensive Computing Systems Lecture 2 SQL Instructor: Sudeepa Roy Duke CS, Spring 2016 CompSci 516: Data Intensive Computing Systems 1 Announcement If you are enrolled to the class, but

More information

Faloutsos 1. Carnegie Mellon Univ. Dept. of Computer Science Database Applications. Outline

Faloutsos 1. Carnegie Mellon Univ. Dept. of Computer Science Database Applications. Outline Carnegie Mellon Univ. Dept. of Computer Science 15-415 - Database Applications Lecture #14: Implementation of Relational Operations (R&G ch. 12 and 14) 15-415 Faloutsos 1 introduction selection projection

More information

Data Science 100. Databases Part 2 (The SQL) Slides by: Joseph E. Gonzalez & Joseph Hellerstein,

Data Science 100. Databases Part 2 (The SQL) Slides by: Joseph E. Gonzalez & Joseph Hellerstein, Data Science 100 Databases Part 2 (The SQL) Slides by: Joseph E. Gonzalez & Joseph Hellerstein, jegonzal@berkeley.edu jhellerstein@berkeley.edu? Previously Database Management Systems A database management

More information

Query Evaluation! References:! q [RG-3ed] Chapter 12, 13, 14, 15! q [SKS-6ed] Chapter 12, 13!

Query Evaluation! References:! q [RG-3ed] Chapter 12, 13, 14, 15! q [SKS-6ed] Chapter 12, 13! Query Evaluation! References:! q [RG-3ed] Chapter 12, 13, 14, 15! q [SKS-6ed] Chapter 12, 13! q Overview! q Optimization! q Measures of Query Cost! Query Evaluation! q Sorting! q Join Operation! q Other

More information

Relational Query Optimization. Highlights of System R Optimizer

Relational Query Optimization. Highlights of System R Optimizer Relational Query Optimization Chapter 15 Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 1 Highlights of System R Optimizer v Impact: Most widely used currently; works well for < 10 joins.

More information

Query Optimization. Schema for Examples. Motivating Example. Similar to old schema; rname added for variations. Reserves: Sailors:

Query Optimization. Schema for Examples. Motivating Example. Similar to old schema; rname added for variations. Reserves: Sailors: Query Optimization Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 1 Schema for Examples (sid: integer, sname: string, rating: integer, age: real) (sid: integer, bid: integer, day: dates,

More information

Implementation of Relational Operations: Other Operations

Implementation of Relational Operations: Other Operations Implementation of Relational Operations: Other Operations Module 4, Lecture 2 Database Management Systems, R. Ramakrishnan 1 Simple Selections SELECT * FROM Reserves R WHERE R.rname < C% Of the form σ

More information

SQL: Queries, Programming, Triggers. Basic SQL Query. Conceptual Evaluation Strategy. Example of Conceptual Evaluation. A Note on Range Variables

SQL: Queries, Programming, Triggers. Basic SQL Query. Conceptual Evaluation Strategy. Example of Conceptual Evaluation. A Note on Range Variables SQL: Queries, Programming, Triggers Chapter 5 Database Management Systems, R. Ramakrishnan and J. Gehrke 1 R1 Example Instances We will use these instances of the Sailors and Reserves relations in our

More information

Principles of Data Management. Lecture #9 (Query Processing Overview)

Principles of Data Management. Lecture #9 (Query Processing Overview) Principles of Data Management Lecture #9 (Query Processing Overview) Instructor: Mike Carey mjcarey@ics.uci.edu Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 1 Today s Notable News v Midterm

More information

Introduction to Data Management. Lecture #11 (Relational Languages I)

Introduction to Data Management. Lecture #11 (Relational Languages I) Introduction to Data Management Lecture #11 (Relational Languages I) Instructor: Mike Carey mjcarey@ics.uci.edu Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 1 Announcements Homework stuff

More information

Why Study the Relational Model? The Relational Model. Relational Database: Definitions. The SQL Query Language. Relational Query Languages

Why Study the Relational Model? The Relational Model. Relational Database: Definitions. The SQL Query Language. Relational Query Languages Why Study the Relational Model? The Relational Model Most widely used model. Vendors: IBM, Informix, Microsoft, Oracle, Sybase, etc. Legacy systems in older models E.G., IBM s IMS Recent competitor: object-oriented

More information

The Database Language SQL (i)

The Database Language SQL (i) ICS 321 all 2013 he Database Language SQL (i) Asst. Prof. Lipyeow Lim Information & Computer Science Department niversity of Hawaii at Manoa 9/30/2013 Lipyeow Lim -- niversity of Hawaii at Manoa 1 Example

More information

Overview of Query Evaluation. Chapter 12

Overview of Query Evaluation. Chapter 12 Overview of Query Evaluation Chapter 12 1 Outline Query Optimization Overview Algorithm for Relational Operations 2 Overview of Query Evaluation DBMS keeps descriptive data in system catalogs. SQL queries

More information

SQL - Lecture 3 (Aggregation, etc.)

SQL - Lecture 3 (Aggregation, etc.) SQL - Lecture 3 (Aggregation, etc.) INFS 614 INFS614 1 Example Instances S1 S2 R1 sid bid day 22 101 10/10/96 58 103 11/12/96 sid sname rating age 22 dustin 7 45.0 31 lubber 8 55.5 58 rusty 10 35.0 sid

More information

Query Processing and Optimization

Query Processing and Optimization Query Processing and Optimization (Part-1) Prof Monika Shah Overview of Query Execution SQL Query Compile Optimize Execute SQL query parse parse tree statistics convert logical query plan apply laws improved

More information

The SQL Query Language. Creating Relations in SQL. Adding and Deleting Tuples. Destroying and Alterating Relations. Conceptual Evaluation Strategy

The SQL Query Language. Creating Relations in SQL. Adding and Deleting Tuples. Destroying and Alterating Relations. Conceptual Evaluation Strategy The SQ Query anguage Developed by IBM (system R) in the 1970s Need for a standard since it is used by many vendors Standards: SQ-86 SQ-89 (minor revision) SQ-92 (major revision, current standard) SQ-99

More information

Administrivia. Relational Query Optimization (this time we really mean it) Review: Query Optimization. Overview: Query Optimization

Administrivia. Relational Query Optimization (this time we really mean it) Review: Query Optimization. Overview: Query Optimization Relational Query Optimization (this time we really mean it) R&G hapter 15 Lecture 25 dministrivia Homework 5 mostly available It will be due after classes end, Monday 12/8 Only 3 more lectures left! Next

More information

CSE 444: Database Internals. Sec2on 4: Query Op2mizer

CSE 444: Database Internals. Sec2on 4: Query Op2mizer CSE 444: Database Internals Sec2on 4: Query Op2mizer Plan for Today Problem 1A, 1B: Es2ma2ng cost of a plan You try to compute the cost for 5 mins We go over the solu2on together Problem 2: Sellinger Op2mizer

More information

CS 4604: Introduc0on to Database Management Systems. B. Aditya Prakash Lecture #3: SQL and Rela2onal Algebra- - - Part 1

CS 4604: Introduc0on to Database Management Systems. B. Aditya Prakash Lecture #3: SQL and Rela2onal Algebra- - - Part 1 CS 4604: Introduc0on to Database Management Systems B. Aditya Prakash Lecture #3: SQL and Rela2onal Algebra- - - Part 1 Reminder: Rela0onal Algebra Rela2onal algebra is a nota2on for specifying queries

More information

Databases - Relational Algebra. (GF Royle, N Spadaccini ) Databases - Relational Algebra 1 / 24

Databases - Relational Algebra. (GF Royle, N Spadaccini ) Databases - Relational Algebra 1 / 24 Databases - Relational Algebra (GF Royle, N Spadaccini 2006-2010) Databases - Relational Algebra 1 / 24 This lecture This lecture covers relational algebra which is the formal language underlying the manipulation

More information

This lecture. Projection. Relational Algebra. Suppose we have a relation

This lecture. Projection. Relational Algebra. Suppose we have a relation This lecture Databases - Relational Algebra This lecture covers relational algebra which is the formal language underlying the manipulation of relations. We follow the notation from Chapter 4 of Ramakrishnan

More information