first order under approximations of consistent query
play

First-Order Under-Approximations of Consistent Query Answers DBDBD - PowerPoint PPT Presentation

First-Order Under-Approximations of Consistent Query Answers DBDBD 2015, Amsterdam Floris Geerts Fabian Pijcke Jef Wijsen Dept. of Computer Science University of Mons Dept. of Mathematics and Computer Science University of Antwerp


  1. First-Order Under-Approximations of Consistent Query Answers DBDBD 2015, Amsterdam Floris Geerts Fabian Pijcke Jef Wijsen Dept. of Computer Science — University of Mons Dept. of Mathematics and Computer Science — University of Antwerp

  2. Uncertain Database Definition (Uncertain Database and Repair) An uncertain database is a database in which primary keys can be violated. A repair of an uncertain database is any maximal consistent subset. Example ManagedBy Dept Mgr Budget WorksFor Agent Dept CIA Barack 60M James CIA MI6 James 15M James MI6 The uncertainty about James’ department gives rise to two repairs: one with WorksFor (James, CIA), another with WorksFor (James, MI6). F. Geerts, F. Pijcke, J. Wijsen First-Order Under-Approximations of Consistent Query Answers 2 / 13

  3. Certain Query Answering Definition The certain answer to a query q on an uncertain database db is defined by: � { q ( rep ) | rep is a repair of db } . Intuitively, an answer is certain if it holds true in every repair. We write ⌊ q ⌋ for the query that takes in an uncertain database db , and returns the certain answer, i.e., � ⌊ q ⌋ ( db ) := { q ( rep ) | rep is a repair of db } . F. Geerts, F. Pijcke, J. Wijsen First-Order Under-Approximations of Consistent Query Answers 3 / 13

  4. Certain Query Answering: Example Let db be the following uncertain database: ManagedBy Dept Mgr Budget WorksFor Agent Dept CIA Barack 60M James CIA MI6 James 15M James MI6 Let rep 1 be the repair with WorksFor (James, CIA), and rep 2 be the repair with WorksFor (James, MI6). F. Geerts, F. Pijcke, J. Wijsen First-Order Under-Approximations of Consistent Query Answers 4 / 13

  5. Certain Query Answering: Example Let db be the following uncertain database: ManagedBy Dept Mgr Budget WorksFor Agent Dept CIA Barack 60M James CIA MI6 James 15M James MI6 Let rep 1 be the repair with WorksFor (James, CIA), and rep 2 be the repair with WorksFor (James, MI6). Let q 0 be the query “Which departments are self-managed, i.e., managed by one of its agents?” q 0 = { d | ∃ m ∃ b ( ManagedBy ( d , m , b ) ∧ WorksFor ( m , d )) } . ⌊ q 0 ⌋ ( db ) = q 0 ( rep 1 ) ∩ q 0 ( rep 2 ) = {} ∩ { MI6 } = {} F. Geerts, F. Pijcke, J. Wijsen First-Order Under-Approximations of Consistent Query Answers 4 / 13

  6. Data Complexity The focus of this paper is on computing certain answers to self-join-free conjunctive queries q , for which three possibilities can occur: F. Geerts, F. Pijcke, J. Wijsen First-Order Under-Approximations of Consistent Query Answers 5 / 13

  7. Data Complexity The focus of this paper is on computing certain answers to self-join-free conjunctive queries q , for which three possibilities can occur: A ⌊ q ⌋ can be expressed in relational calculus (the “ideal” case); F. Geerts, F. Pijcke, J. Wijsen First-Order Under-Approximations of Consistent Query Answers 5 / 13

  8. Data Complexity The focus of this paper is on computing certain answers to self-join-free conjunctive queries q , for which three possibilities can occur: A ⌊ q ⌋ can be expressed in relational calculus (the “ideal” case); B ⌊ q ⌋ cannot be expressed in relational calculus, but can be computed by a polynomial-time algorithm; or F. Geerts, F. Pijcke, J. Wijsen First-Order Under-Approximations of Consistent Query Answers 5 / 13

  9. Data Complexity The focus of this paper is on computing certain answers to self-join-free conjunctive queries q , for which three possibilities can occur: A ⌊ q ⌋ can be expressed in relational calculus (the “ideal” case); B ⌊ q ⌋ cannot be expressed in relational calculus, but can be computed by a polynomial-time algorithm; or C ⌊ q ⌋ cannot even be computed by a polynomial-time algorithm (unless P = NP ). F. Geerts, F. Pijcke, J. Wijsen First-Order Under-Approximations of Consistent Query Answers 5 / 13

  10. Data Complexity The focus of this paper is on computing certain answers to self-join-free conjunctive queries q , for which three possibilities can occur: A ⌊ q ⌋ can be expressed in relational calculus (the “ideal” case); B ⌊ q ⌋ cannot be expressed in relational calculus, but can be computed by a polynomial-time algorithm; or C ⌊ q ⌋ cannot even be computed by a polynomial-time algorithm (unless P = NP ). Recall: a self-join-free conjunctive query q is a relational calculus query of the form: { � x | ∃ � y ( R 1 ( � z 1 ) ∧ · · · ∧ R ℓ ( � z ℓ )) } , in which i � = j implies R i � = R j . F. Geerts, F. Pijcke, J. Wijsen First-Order Under-Approximations of Consistent Query Answers 5 / 13

  11. Examples Case A: ⌊ q ⌋ in relational calculus “Who is the manager of CIA?” : q 0 = { m | ∃ b ( ManagedBy (CIA , m , b )) } . ⌊ q 0 ⌋ can be expressed in relational calculus, as follows: ⌊ q 0 ⌋ = { m | ∃ b ( ManagedBy (CIA , m , b ) ∧∀ m ′ ∀ b ′ ( ManagedBy (CIA , m ′ , b ′ ) → m ′ = m )) } F. Geerts, F. Pijcke, J. Wijsen First-Order Under-Approximations of Consistent Query Answers 6 / 13

  12. Examples Case A: ⌊ q ⌋ in relational calculus “Who is the manager of CIA?” : q 0 = { m | ∃ b ( ManagedBy (CIA , m , b )) } . ⌊ q 0 ⌋ can be expressed in relational calculus, as follows: ⌊ q 0 ⌋ = { m | ∃ b ( ManagedBy (CIA , m , b ) ∧∀ m ′ ∀ b ′ ( ManagedBy (CIA , m ′ , b ′ ) → m ′ = m )) } Case B: ⌊ q ⌋ in P , but not expressible in relational calculus “Get budgets of self-managed departments” : q 0 = { b | ∃ d ∃ m ( ManagedBy ( d , m , b ) ∧ WorksFor ( m , d )) } . F. Geerts, F. Pijcke, J. Wijsen First-Order Under-Approximations of Consistent Query Answers 6 / 13

  13. Examples Case A: ⌊ q ⌋ in relational calculus “Who is the manager of CIA?” : q 0 = { m | ∃ b ( ManagedBy (CIA , m , b )) } . ⌊ q 0 ⌋ can be expressed in relational calculus, as follows: ⌊ q 0 ⌋ = { m | ∃ b ( ManagedBy (CIA , m , b ) ∧∀ m ′ ∀ b ′ ( ManagedBy (CIA , m ′ , b ′ ) → m ′ = m )) } Case B: ⌊ q ⌋ in P , but not expressible in relational calculus “Get budgets of self-managed departments” : q 0 = { b | ∃ d ∃ m ( ManagedBy ( d , m , b ) ∧ WorksFor ( m , d )) } . Case C: ⌊ q ⌋ is coNP -hard Example in the paper. F. Geerts, F. Pijcke, J. Wijsen First-Order Under-Approximations of Consistent Query Answers 6 / 13

  14. Research Question Since RDBMSs cope well with relational calculus (in the form of SQL), it is easy to handle the case where ⌊ q ⌋ is expressible in relational calculus (case A). But what if ⌊ q ⌋ is not expressible in relational calculus (cases B and C)? F. Geerts, F. Pijcke, J. Wijsen First-Order Under-Approximations of Consistent Query Answers 7 / 13

  15. Research Question Since RDBMSs cope well with relational calculus (in the form of SQL), it is easy to handle the case where ⌊ q ⌋ is expressible in relational calculus (case A). But what if ⌊ q ⌋ is not expressible in relational calculus (cases B and C)? Find a relational calculus query ϕ (the greater with respect to ⊆ , the better) such that Under-Approximation: ϕ ⊆ ⌊ q ⌋ ; and First-Order Postprocessig: ϕ is a first-order combination (using ∧ , ∨ , ¬ , ∃ , ∀ ) of queries of the form ⌊ q i ⌋ , where q i is self-join-free conjunctive and ⌊ q i ⌋ can be expressed in relational calculus (as in case A). Such query ϕ is called a strategy for ⌊ q ⌋ . F. Geerts, F. Pijcke, J. Wijsen First-Order Under-Approximations of Consistent Query Answers 7 / 13

  16. Practical Setting 1 Restricted query interface to an inconsistent database db : You can only ask self-join-free conjunctive queries q! 2 Moreover, the interface only returns consistent answers computable in relational calculus: If ⌊ q ⌋ cannot be expressed in relational calculus, then your query q is rejected; otherwise the answer ⌊ q ⌋ ( db ) will be returned. 3 Assume that your query q is rejected. How will you proceed? Find queries q 1 , . . . , q ℓ , each accepted by the interface, and a relational calculus query ϕ such that ϕ ( ⌊ q 1 ⌋ ( db ) , . . . , ⌊ q ℓ ⌋ ( db )) is a “large” subset of ⌊ q ⌋ ( db ) . Intuitively, the strategy ϕ does some first-order postprocessing on answers obtained from the interface. F. Geerts, F. Pijcke, J. Wijsen First-Order Under-Approximations of Consistent Query Answers 8 / 13

  17. Optimality of Strategies Let q be a self-join-free conjunctive query q such that ⌊ q ⌋ is not expressible in relational calculus. Obviously, there exists no strategy ϕ such that ϕ ≡ ⌊ q ⌋ , because ϕ is a relational calculus query, but ⌊ q ⌋ cannot be expressed in relational calculus. Obviously, strategies are closed under union : if ϕ 1 and ϕ 2 are strategies, then ϕ 1 ∪ ϕ 2 is a strategy. If neither of ϕ 1 or ϕ 2 is contained in the other, then ϕ 1 ∪ ϕ 2 is a better strategy than ϕ 1 (and than ϕ 2 ). A strategy ϕ for ⌊ q ⌋ is called optimal if for every other strategy ϕ ′ , we have ϕ ′ ⊆ ϕ ⊆ ⌊ q ⌋ . F. Geerts, F. Pijcke, J. Wijsen First-Order Under-Approximations of Consistent Query Answers 9 / 13

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend