Presentation is loading. Please wait.

Presentation is loading. Please wait.

L6-S1 MLPQ 2003 SJSU -- CmpE-- M.E. Fayad Database Design Dr. M.E. Fayad, Professor Computer Engineering Department, Room #283I College of Engineering.

Similar presentations


Presentation on theme: "L6-S1 MLPQ 2003 SJSU -- CmpE-- M.E. Fayad Database Design Dr. M.E. Fayad, Professor Computer Engineering Department, Room #283I College of Engineering."— Presentation transcript:

1 L6-S1 MLPQ 2003 SJSU -- CmpE-- M.E. Fayad Database Design Dr. M.E. Fayad, Professor Computer Engineering Department, Room #283I College of Engineering San José State University One Washington Square San José, CA 95192-0180 http://www.engr.sjsu.edu/~fayad

2 L6-S2 MLPQ 2003 SJSU -- CmpE-- M.E. Fayad 2 Lesson 6: The MLPQ System

3 L6-S3 MLPQ 2003 SJSU -- CmpE-- M.E. Fayad Lesson Objectives 3 Understand the MLPQ System Learn about: î The Database’s System Architecture î MLPQ Input Files î MLPQ Graphical User Interface î Database Setup

4 L6-S4 MLPQ 2003 SJSU -- CmpE-- M.E. Fayad MLPQ MLPQ is short for Management of liner programming queries. MLPQ is a constraint database system for rational linear constraint databases. It allows: –Datalog Queries –Minimum and maximum aggregation operations over linear objective functions –And other operators 4

5 L6-S5 MLPQ 2003 SJSU -- CmpE-- M.E. Fayad Two Main Application Areas Operations research when the available data in a database needs to be reformulated by some database query before we can solve a problem by linear programming. Dealing with spatial and spatiotemporal data. This System allows the ability to go beyond two or three dimensions of mutually constrained data. 5

6 L6-S6 MLPQ 2003 SJSU -- CmpE-- M.E. Fayad System consists of six main modules: –Representation –Query Evaluation –Visualization –Approximation –Update –Export Conversion Refer to Chapter 18 for a diagram and more details The MLPQ Database System Architecture 6

7 L6-S7 MLPQ 2003 SJSU -- CmpE-- M.E. Fayad MLPQ Input Files Each Input File has this structure: begin %moduleName%  1  2.  n end %moduleName% Where  i is a Datalog Rule or Rational Linear Constraint Tuple. 7

8 L6-S8 MLPQ 2003 SJSU -- CmpE-- M.E. Fayad Differences between Datalog and MLPQ Input File Each Linear constraint has the form: a 1 x 1 + a 2 x 2 + … + a n x n  b Where each a i is a constant and each x i is a variable, and  i is a relation operator of the from =,, =. The optional aggregate operator has the from OP(f) where OP is one of the aggregate operators: max, min, MAX, MIN, sum_max, sum_min, and f is a liner function of the variables in the rule. 8

9 L6-S9 MLPQ 2003 SJSU -- CmpE-- M.E. Fayad Differences ( continued ) For negation the symbol ! Is used instead of the word not. The Module Name controls what type of query evaluation methods will be used. It should be one of these strings: –MLPQ – to evaluate only non-recursive Datalog Queries. –RECURSIVE – to evaluation recursive Datalog Queries –GIS – to evaluate both Datalog and iconic queries 9

10 L6-S10 MLPQ 2003 SJSU -- CmpE-- M.E. Fayad Example Database file – regions.txt begin%Test% country(id,x,y,t):- id = 1, x >= 0, x =5, y =1800, t <=1950. country(id,x,y,t):- id = 1, x >= 0, x =5, y =1950, t <= 2000. country(id,x,y,t):- id = 2, x >= 4, x =5, y = 1800, t <=1950. country(id,x,y,t):- id = 2, x >= 8, x =5, y = 1950, t <= 2000. country(id,x,y,t):- id = 3, x >= 0, x =0, y = 1800, t <= 2000. location(c,x,y):- x = 3, y = 2, c = 101. location(c,x,y):- x = 7, y = 3, c = 102. location(c,x,y):- x = 5, y = 6, c = 103. location(c,x,y):- x = 7, y = 10, c = 104. location(c,x,y):- x = 10, y = 8, c = 105. location(c,x,y):- x = 1, y = 7, c = 106. location(c,x,y):- x = -8, y = 6, c = 107. growth(t,c,p):- c = 101, p = 10000, t >=1800, t <= 2000. growth(t,c,p):- c = 102, p = 20000, t >=1800, t <= 2000. growth(t,c,p):- c = 103, p = 10000, t >=1800, t <= 2000. growth(t,c,p):- c = 104, p = 30000, t >=1800, t <= 2000. growth(t,c,p):- c = 105, p = 40000, t >=1800, t <= 2000. growth(t,c,p):- c = 106, p = 35000, t >=1800, t <= 2000. end%Test% 10

11 L6-S11 MLPQ 2003 SJSU -- CmpE-- M.E. Fayad The MLPQ Graphical User Interface 11

12 L6-S12 MLPQ 2003 SJSU -- CmpE-- M.E. Fayad SQL Query Find all cities that in 1900 belonged to the USA and had a population of over 10000. Click [Qs], click SQL - Basic button In Create View field enter: “cityUSA1900” In Select field enter: “growth.c, location.x, location.y” In From field enter: “growth, location, country” In Where field enter: “growth.c = location.c, location.x = country.x, location.y = country.y, growth.t = 1900, growth.p > 10000, country.id = 1, country.t = 1900” 12

13 L6-S13 MLPQ 2003 SJSU -- CmpE-- M.E. Fayad Preparing a SQL Query 13

14 L6-S14 MLPQ 2003 SJSU -- CmpE-- M.E. Fayad Results 14

15 L6-S15 MLPQ 2003 SJSU -- CmpE-- M.E. Fayad Many Operators 15

16 L6-S16 MLPQ 2003 SJSU -- CmpE-- M.E. Fayad Where to get the MLPQ DB System Go to Dr. Fayad’s web site for this course Click the MLPQ-PRESTO System executable and sample database link near the bottom of the page. Also read the Getting started, Tips, and Specification documents 16

17 L6-S17 MLPQ 2003 SJSU -- CmpE-- M.E. Fayad Database Setup There is not a installer included with this database Just create a directory, unzip the contents of the archive file into this directory Locate and double click the mlpq_nt.exe file. 17

18 L6-S18 MLPQ 2003 SJSU -- CmpE-- M.E. Fayad Questions? 18


Download ppt "L6-S1 MLPQ 2003 SJSU -- CmpE-- M.E. Fayad Database Design Dr. M.E. Fayad, Professor Computer Engineering Department, Room #283I College of Engineering."

Similar presentations


Ads by Google