VLDB 2026 Research / reviewers in the wild / expert
Philip A. Bernstein
dblp:b/PhilipABernstein
· DBLP profile ↗
110ranked-venue papers in the field
52as first author
13since 2021 · last 2026
0000-0001-5781-1558ORCID · verified
Domains — venue-derived; a paper can count in several
Database Systems & Data Management · 104 (51 first)Business Process & Enterprise Data · 4 (1 first)Information Retrieval & Web Search · 1Knowledge Engineering, Semantic Web & Information Systems · 1
| Year | Publication | Venue | Position |
|---|---|---|---|
| 2026 | Rosé: Flexible Replication With Strong Semantics For Partitioned Databases
Ioannis Zarkadas, Kelly Kostopoulou, Thomas Graham, Philip A. Bernstein, Asaf Cidon, Tamer Eldeeb |
CIDR | 5 |
| 2026 | MINT: Multi-Vector Search Index TuningabstractVector search plays a crucial role in many real-world applications. In addition to single-vector search, multi-vector search becomes important for multi-modal and multi-feature scenarios today. In a multi-vector database, each row is an item, each column represents a feature of items, and each cell is a high-dimensional vector. In multi-vector databases, the choice of indexes can have a significant impact on performance. Although index tuning for relational databases has been extensively studied, index tuning for multi-vector search remains unclear and challenging. In this paper, we define multi-vector search index tuning and propose a framework to solve it. Specifically, given a multi-vector search workload, we develop algorithms to find indexes that minimize latency and meet storage and recall constraints. Compared to the baseline, our latency achieves 2.1X to 8.3X speedup. Jiongli Zhu, Yue Wang 0070, Bailu Ding, Philip A. Bernstein, Vivek R. Narasayya, Surajit Chaudhuri |
ICDE | 4 |
| 2025 | DPDPU: Data Processing with DPUs
Jason Hu, Philip A. Bernstein, Jialin Li 0001, Qizhen Zhang 0001 |
CIDR | 2 |
| 2024 | Chablis: Fast and General Transactions in Geo-Distributed Systems
Tamer Eldeeb, Philip A. Bernstein, Asaf Cidon |
CIDR | 2 |
| 2024 | Cloud Actor-Oriented Database Transactions in OrleansabstractMicrosoft Orleans is a popular open source distributed programming framework and platform which invented the virtual actor model, and has since evolved into an actor-oriented database system with the addition of database abstractions such as ACID transactions. Properties of Orleans' virtual actor model imply that any ACID transaction mechanism for operations spanning multiple actors must support distributed transactions on top of pluggable cloud storage drivers. Unfortunately, distributed transactions usually perform poorly in this environment, partly because of the high performance and contention overhead of performing two-phase commit (2PC) on slow cloud storage systems. In this paper we describe the design and implementation of ACID transactions in Orleans. The system uses two primary techniques to mask the high latency of cloud storage and enable high transaction throughput. First, Orleans pioneered the use of a distributed form of early lock release by releasing all of a transaction's locks during phase one of 2PC, and by tracking commit dependencies to implement cascading abort. This avoids blocking transactions while running 2PC and enables a distributed form of group commit. Second, Orleans leverages reconnaissance queries to prefetch the state of all actors involved in a transaction from cloud storage prior to running the transaction and acquiring any locks, thus ensuring no locks are held while blocking on high latency cloud storage in most cases. Tamer Eldeeb, Sebastian Burckhardt, Reuben Bond, Asaf Cidon, Philip A. Bernstein |
Proc. VLDB Endow. | 6 |
| 2024 | DDS: DPU-optimized Disaggregated StorageabstractThis paper presents DDS, a novel disaggregated storage architecture enabled by emerging networking hardware, namely DPUs (Data Processing Units). DPUs can optimize the latency and CPU consumption of disaggregated storage servers. However, utilizing DPUs for DBMSs requires careful design of the network and storage paths and the interface exposed to the DBMS. To fully benefit from DPUs, DDS heavily uses DMA, zero-copy, and userspace I/O to minimize overhead when improving throughput. It also introduces an offload engine that eliminates host CPUs by executing client requests directly on the DPU. Adopting DDS' API requires minimal DBMS modification. Our experimental study and production system integration show promising results---DDS achieves higher disaggregated storage throughput with an order of magnitude lower latency, and saves up to tens of CPU cores per storage server. Qizhen Zhang 0001, Philip A. Bernstein, Badrish Chandramouli, Jason Hu |
Proc. VLDB Endow. | 2 |
| 2023 | Is Scalable OLTP in the Cloud a Solved Problem?
Tobias Ziegler 0001, Philip A. Bernstein, Viktor Leis, Carsten Binnig |
CIDR | 2 |
| 2022 | CompuCache: Remote Computable Caching using Spot VMs
Qizhen Zhang 0001, Philip A. Bernstein, Daniel S. Berger, Badrish Chandramouli, Vincent Liu 0001, Boon Thau Loo |
CIDR | 2 |
| 2022 | Factor Windows: Cost-based Query Rewriting for Optimizing Correlated Window AggregatesabstractWindow aggregates are ubiquitous in stream processing. In Azure Stream Analytics (ASA), a stream processing service hosted by Microsoft's Azure cloud, we see many customer queries that contain aggregate functions (such as MIN and MAX) over multiple correlated windows (e.g., tumbling windows of length five minutes and ten minutes) defined on the same event stream. In this paper, we present a cost-based optimization framework for optimizing such queries by sharing computation among multiple windows. In particular, we introduce the notion of factor windows, which are auxiliary windows that are not in the input query but may nevertheless help reduce the overall computation cost, and our cost-based optimizer can produce rewritten query plans that have lower costs than the original query plan by utilizing factor windows. Since our optimization techniques are at the level of query (plan) rewriting, they can be implemented on any stream processing system that supports a declarative, SQL-like query language without changing the underlying query execution engine. We formalize the shared computation problem, present the optimization techniques in detail, and report evaluation results over both synthetic and real datasets. Our results show that, compared to the original query plans, the rewritten plans output by our cost-based optimizer can yield significantly higher (up to 16.8×) throughput. Wentao Wu 0001, Philip A. Bernstein, Alex Raizman, Christina Pavlopoulou |
ICDE | 2 |
| 2022 | Budget-aware Index Tuning with Reinforcement LearningabstractIndex tuning aims to find the optimal index configuration for an input workload. It is a resource-intensive task since it requires making multiple expensive "what-if" calls to the query optimizer to estimate the cost of a query given an index configuration without actually building the indexes. In this paper, we study the problem of budget-aware index tuning where the number of what-if calls allowed when searching for the optimal configuration during tuning is constrained. This problem is challenging as it requires addressing the trade-off between investing what-if calls on exploring new configurations versus exploiting a known promising configuration. We formulate budget-aware index tuning as a Markov decision process, and propose a solution based on Monte Carlo tree search, a classic reinforcement learning technology. Experimental evaluation on both standard industry benchmarks and real workloads shows that our solution can significantly outperform alternative budget-aware solutions in terms of the quality of the index configuration. Wentao Wu 0001, Chi Wang 0001, Tarique Siddiqui, Junxiong Wang, Vivek R. Narasayya, Surajit Chaudhuri, Philip A. Bernstein |
SIGMOD Conference | 7 |
| 2022 | Cornus: Atomic Commit for a Cloud DBMS with Storage DisaggregationabstractTwo-phase commit (2PC) is widely used in distributed databases to ensure atomicity of distributed transactions. Conventional 2PC was originally designed for the shared-nothing architecture and has two limitations: long latency due to two eager log writes on the critical path, and blocking of progress when a coordinator fails. Modern cloud-native databases are moving to a storage disaggregation architecture where storage is a shared highly-available service. Our key observation is that disaggregated storage enables protocol innovations that can address both the long-latency and blocking problems. We develop Cornus, an optimized 2PC protocol to achieve this goal. The only extra functionality Cornus requires is an atomic compare-and-swap capability in the storage layer, which many existing storage services already support. We present Cornus in detail and show how it addresses the two limitations. We also deploy it on real storage services including Azure Blob Storage and Redis. Empirical evaluations show that Cornus can achieve up to 1.9X latency reduction over conventional 2PC. Zhihan Guo, Xinyu Zeng, Wuh-Chwen Hwang, Ziwei Ren, Xiangyao Yu, Mahesh Balakrishnan 0001, Philip A. Bernstein |
Proc. VLDB Endow. | 8 |
| 2021 | Optimization of Threshold Functions over StreamsabstractA common stream processing application is alerting, where the data stream management system (DSMS) continuously evaluates a threshold function over incoming streams. If the threshold is crossed, the DSMS raises an alarm. The threshold function is often calculated over two or more streams, such as combining temperature and humidity readings to determine if moisture will form on a machine and therefore cause it to malfunction. This requires taking a temporal join across the input streams. We show that for the broad class of functions called quasiconvex functions, the DSMS needs to retain very few tuples per-data-stream for any given time interval and still never miss an alarm. This surprising result yields a large memory savings during normal operation. That savings is also important if one stream fails, since the DSMS would otherwise have to cache all tuples in other streams until the failed stream recovers. We prove our algorithm is optimal and provide experimental evidence that validates its substantial memory savings. Walter Cai, Philip A. Bernstein, Wentao Wu 0001, Badrish Chandramouli |
Proc. VLDB Endow. | 2 |
| 2021 | Redy: Remote Dynamic Memory CacheabstractRedy is a cloud service that provides high performance caches using RDMA-accessible remote memory. An application can customize the performance of each cache with a service level objective (SLO) for latency and throughput. By using remote memory, it can leverage stranded memory and spot VM instances to reduce the cost of its caches and improve data center resource utilization. Redy automatically customizes the resource configuration for the given SLO, handles the dynamics of remote memory regions, and recovers from failures. The experimental evaluation shows that Redy can deliver its promised performance and robustness under remote memory dynamics in the cloud. We augment a production key-value store, FASTER, with a Redy cache. When the working set exceeds local memory, using Redy is significantly faster than spilling to SSDs. Qizhen Zhang 0001, Philip A. Bernstein, Daniel S. Berger, Badrish Chandramouli |
Proc. VLDB Endow. | 2 |
| 2019 | Serverless Event-Stream Processing over Virtual Actors
Philip A. Bernstein, Todd Porter, Rahul Potharaju, Alejandro Z. Tomsic, Shivaram Venkataraman, Wentao Wu 0001 |
CIDR | 1 |
| 2018 | Actor-Oriented Database SystemsabstractWe present the vision of an actor-oriented database. Its goal is to integrate database abstractions into an actor-oriented programming language for interactive, stateful, scalable, distributed applications that use cloud storage. Philip A. Bernstein |
ICDE | 1 |
| 2017 | Indexing in an Actor-Oriented Database
Philip A. Bernstein, Mohammad Dashti 0001, Tim Kiefer, David Maier 0001 |
CIDR | 1 |
| 2015 | Optimizing Optimistic Concurrency Control for Tree-Structured, Log-Structured DatabasesabstractScaling-out a database system typically requires partitioning the database across multiple servers. If applications do not partition perfectly, then transactions accessing multiple partitions end up being distributed, which has well-known scalability challenges. To address them, we describe a high-performance transaction mechanism that uses optimistic concurrency control on a multi-versioned tree-structured database stored in a shared log. The system scales out by adding servers, without partitioning the database. Philip A. Bernstein, Sudipto Das, Bailu Ding, Markus Pilman |
SIGMOD Conference | 1 |
| 2015 | Concept Expansion Using Web TablesabstractWe study the following problem: given the name of an ad-hoc concept as well as a few seed entities belonging to the concept, output all entities belonging to it. Since producing the exact set of entities is hard, we focus on returning a ranked list of entities. Previous approaches either use seed entities as the only input, or inherently require negative examples. They suffer from input ambiguity and semantic drift, or are not viable options for ad-hoc tail concepts. In this paper, we propose to leverage the millions of tables on the web for this problem. The core technical challenge is to identify the ``exclusive'' tables for a concept to prevent semantic drift; existing holistic ranking techniques like personalized PageRank are inadequate for this purpose. We develop novel probabilistic ranking methods that can model a new type of table-entity relationship. Experiments with real-life concepts show that our proposed solution is significantly more effective than applying state-of-the-art set expansion or holistic ranking techniques. Chi Wang 0001, Kaushik Chakrabarti, Yeye He, Kris Ganjam, Philip A. Bernstein |
WWW | 6 |
| 2015 | Annotating Database Schemas to Help Enterprise SearchabstractIn large enterprises, data discovery is a common problem faced by users who need to find relevant information in relational databases. In this scenario, schema annotation is a useful tool to enrich a database schema with descriptive keywords. In this paper, we demonstrate Barcelos, a system that automatically annotates corporate databases. Unlike existing annotation approaches that use Web oriented knowledge bases, Barcelos mines enterprise spreadsheets to find candidate annotations. Our experimental evaluation shows that Barcelos produces high quality annotations; the top-5 have an average precision of 87%. Eli Cortez, Philip A. Bernstein, Yeye He, Lev Novik |
Proc. VLDB Endow. | 2 |
| 2014 | Mapping XML to a Wide Sparse TableabstractXML is commonly supported by SQL database systems. However, existing mappings of XML to tables can only deliver satisfactory query performance for limited use cases. In this paper, we propose a novel mapping of XML data into one wide table whose columns are sparsely populated. This mapping provides good performance for document types and queries that are observed in enterprise applications but are not supported efficiently by existing work. XML queries are evaluated by translating them into SQL queries over the wide sparsely-populated table. We show how to translate full XPath 1.0 into SQL. Based on the characteristics of the new mapping, we present rewriting optimizations that dramatically reduce the number of joins. Experiments demonstrate that query evaluation over the new mapping delivers considerable improvements over existing techniques for the target use cases. Liang Jeff Chen, Philip A. Bernstein, Peter Carlin, Dimitrije Filipovic, Michael Rys, Nikita Shamgunov, James F. Terwilliger, Milos Todic, Sasa Tomasevic, Dragan Tomic |
IEEE Trans. Knowl. Data Eng. | 2 |
| 2013 | Transactional Middleware Reconsidered
Philip A. Bernstein |
CIDR | 1 |
| 2013 | Rethinking eventual consistencyabstractThere has been a resurgence of work on replicated, distributed database systems to meet the demands of intermittently-connected clients and of disaster-tolerant databases that span data centers. Many systems weaken the criteria for replica-consistency or isolation, and in some cases add new mechanisms, to improve partition-tolerance, availability, and performance. We present a framework for comparing these criteria and mechanisms, to help architects navigate through this complex design space. Philip A. Bernstein, Sudipto Das |
SIGMOD Conference | 1 |
| 2013 | Incremental mapping compilation in an object-to-relational mapping systemabstractIn an object-to-relational mapping system (ORM), mapping expressions explain how to expose relational data as objects and how to store objects in tables. If mappings are sufficiently expressive, then it is possible to define lossy mappings. If a user updates an object, stores it in the database based on a lossy mapping, and then retrieves the object from the database, the user might get a different result than the updated state of the object; that is, the mapping might not "roundtrip." To avoid this, the ORM should validate that user-defined mappings roundtrip the data. However, this problem is NP-hard, so mapping validation can be very slow for large or complex mappings. Philip A. Bernstein, Marie Jacob, Jorge Pérez 0001, Guillem Rull, James F. Terwilliger |
SIGMOD Conference | 1 |
| 2013 | Query containment in entity SQLabstractWe describe a software architecture we have developed for a constructive containment checker of Entity SQL queries defined over extended ER schemas expressed in Microsoft's Entity Data Model. Our application of interest is compilation of object-to-relational mappings for Microsoft's ADO.NET Entity Framework, which has been shipping since 2007. The supported language includes several features which have been individually addressed in the past but, to the best of our knowledge, they have not been addressed all at once before. Moreover, when embarking on an implementation, we found no guidance in the literature on how to modularize the software or apply published algorithms to a commercially-supported language. This paper reports on our experience in addressing these real-world challenges. Guillem Rull, Philip A. Bernstein, Ivo Garcia dos Santos, Yannis Katsis, Sergey Melnik 0001, Ernest Teniente |
SIGMOD Conference | 2 |
| 2012 | Mapping XML to a Wide Sparse TableabstractXML is commonly supported by SQL database systems. However, existing mappings of XML to tables can only deliver satisfactory query performance for limited use cases. In this paper, we propose a novel mapping of XML data into one wide table whose columns are sparsely populated. This mapping provides good performance for document types and queries that are observed in enterprise applications but are not supported efficiently by existing work. XML queries are evaluated by translating them into SQL queries over the wide sparsely-populated table. We show how to translate full XPath 1.0 into SQL. Based on the characteristics of the new mapping, we present rewriting optimizations that minimize the number of joins. Experiments demonstrate that query evaluation over the new mapping delivers considerable improvements over existing techniques for the target use cases. Liang Jeff Chen, Philip A. Bernstein, Peter Carlin, Dimitrije Filipovic, Michael Rys, Nikita Shamgunov, James F. Terwilliger, Milos Todic, Sasa Tomasevic, Dragan Tomic |
ICDE | 2 |
| 2011 | Hyder - A Transactional Record Manager for Shared Flash
Philip A. Bernstein, Colin W. Reid, Sudipto Das |
CIDR | 1 |
| 2011 | Adapting microsoft SQL server for cloud computingabstractCloud SQL Server is a relational database system designed to scale-out to cloud computing workloads. It uses Microsoft SQL Server as its core. To scale out, it uses a partitioned database on a shared-nothing system architecture. Transactions are constrained to execute on one partition, to avoid the need for two-phase commit. The database is replicated for high availability using a custom primary-copy replication scheme. It currently serves as the storage engine for Microsoft's Exchange Hosted Archive and SQL Azure. Philip A. Bernstein, Istvan Cseri, Nishant Dani, Nigel Ellis, Ajay Kalhan, Gopal Kakivaya, David B. Lomet, Ramesh Manne, Lev Novik, Tomas Talius |
ICDE | 1 |
| 2011 | Generic Schema Matching, Ten Years Later
Philip A. Bernstein, Jayant Madhavan, Erhard Rahm |
Proc. VLDB Endow. | 1 |
| 2011 | Optimistic Concurrency Control by Melding Trees
Philip A. Bernstein, Colin W. Reid, Xinhao Yuan |
Proc. VLDB Endow. | 1 |
| 2010 | Automated Co-evolution of Conceptual Models, Physical Databases, and Mappings
James F. Terwilliger, Philip A. Bernstein, Adi Unnithan |
ER | 2 |
| 2010 | Reverse engineering models from databases to bootstrap application developmentabstractObject-relational mapping systems have become often-used tools to provide application access to relational databases. In a database-first development scenario, the onus is on the developer to construct a meaningful object layer for the application because shipping tools, as ORM tools only ship database reverse-engineering tools that generate objects with a trivial one-to-one mapping. We built a tool, EdmGen++, that combines pattern-finding rules from conceptual modelling literature with configurable conditions that increase the likelihood that found patterns are semantically relevant. EdmGen++ produces a conceptual model with inheritance in Microsoft's Entity Data Model, which Microsoft's Entity Framework uses to support an executable object-to-relational mapping. The execution time of EdmGen++ on customer databases is reasonable for design-time. Ankit Malpani, Philip A. Bernstein, Sergey Melnik 0001, James F. Terwilliger |
ICDE | 2 |
| 2010 | Worry-free database upgrades: automated model-driven evolution of schemas and complex mappingsabstractSchema evolution is an unavoidable consequence of the application development lifecycle. The two primary schemas in an application, the client conceptual object model and the persistent database model, must co-evolve or risk quality, stability, and maintainability issues. We present MoDEF, an extension to Visual Studio that supports automatic evolution of object-relational mapping artifacts in the Microsoft Entity Framework. When starting with a valid mapping between client and store, MoDEF translates changes made to a client model into incremental changes to the store as an upgrade script, along with a new valid mapping to the new store. MoDEF mines the existing mapping for mapping patterns which MoDEF reuses for new client artifacts. James F. Terwilliger, Philip A. Bernstein, Adi Unnithan |
SIGMOD Conference | 2 |
| 2009 | How Best to Build Web-Scale Data Managers? A Panel DiscussionabstractMany of the largest database-driven web sites use custom web-scale data managers (WDMs). On the surface, these WDMs are being applied to problems that are well-suited for relational database systems. Some examples are the following: • Map-Reduce [5], Hadoop [7], and Dryad [9] are used to process queries on large data sets using sequential scan and aggregation. Hive [8] is a data warehouse built on Hadoop. • Google's Bigtable [3] is used to store a replicated table of rows of semi-structured data. • Amazon's Dynamo [6] is used to store partitioned, replicated databases of key-value pairs. Cassandra [2] is similar. • Object caching systems are used instead of a persistent store, such as memcached [10], Oracle's Coherence, and Microsoft's Velocity project. Daniel J. Abadi, Michael J. Cafarella, Joseph M. Hellerstein, Donald Kossmann, Samuel Madden 0001, Philip A. Bernstein |
Proc. VLDB Endow. | 6 |
| 2009 | HAMSTER: Using Search Clicklogs for Schema and Taxonomy MatchingabstractWe address the problem of unsupervised matching of schema information from a large number of data sources into the schema of a data warehouse. The matching process is the first step of a framework to integrate data feeds from third-party data providers into a structured-search engine's data warehouse. Our experiments show that traditional schema-based and instance-based schema matching methods fall short. We propose a new technique based on the search engine's clicklogs. Two schema elements are matched if the distribution of keyword queries that cause click-throughs on their instances are similar. We present experiments on large commercial datasets that show the new technique has much better accuracy than traditional techniques. Arnab Nandi 0001, Philip A. Bernstein |
Proc. VLDB Endow. | 2 |
| 2009 | Full-Fidelity Flexible Object-Oriented XML AccessabstractDevelopers need to programmatically access persistent XML data. Object-oriented access is often the preferred method. Translating XML data into objects or vice-versa is a hard problem due to the data model mismatch and the difficulty of query translation. We propose a framework that addresses this problem by transforming object-based queries and updates into queries and updates on XML using flexible, declarative mappings between classes and XML schema types. The same mappings are used to shred XML fragments from query results into client-side objects. Information in the XML store that is not mapped using the mapping language, such as comments and processing instructions, are also made available in the object representation. James F. Terwilliger, Philip A. Bernstein, Sergey Melnik 0001 |
Proc. VLDB Endow. | 2 |
| 2008 | Schema merging and mapping creation for relational sourcesabstractWe address the problem of generating a mediated schema from a set of relational data source schemas and conjunctive queries that specify where those schemas overlap. Unlike past approaches that generate only the mediated schema, our algorithm also generates view definitions, i.e., source-to-mediated schema mappings. Rachel Pottinger, Philip A. Bernstein |
EDBT | 2 |
| 2008 | Model Management Engine for Data Integration with Reverse-Engineering SupportabstractModel management is a high-level programming language designed to efficiently manipulate schemas and mappings. It is comprised of robust operators that combined in short programs can solve complex metadata-oriented problems in a compact way. For instance, countless enterprise data integration scenarios can be easily expressed in this high-level language thus saving hundreds of development man-hours. Here we present the first model management engine that has reverse-engineering support for data integration, which is one of the most pressing metadata-oriented problems. It merges two schemas based on the mappings between them and allows user to correct the result keeping all the mappings in sync automatically. For user it is much more convenient than determining which mappings to correct in order to get desired result. In addition, the engine supports restructuring merging which is important when the sources are structured differently and cannot be mapped directly. While making schema merging fully automatic is not yet possible, our work simplifies and automates this process to make it practical in complex data integration scenarios. Michael N. Gubanov, Philip A. Bernstein, Alexander Moshchuk |
ICDE | 2 |
| 2008 | Language-integrated querying of XML data in SQL serverabstractDevelopers need to access persistent XML data programmatically. Object-oriented access is often the preferred method. Translating XML data into objects or vice-versa is a hard problem due to the data model mismatch and the difficulty of query translation. Our prototype addresses this problem by transforming object-based queries and updates into queries and updates on XML using declarative mappings between classes and XML schema types. Our prototype extends the ADO.NET Entity Framework and leverages its object-relational mapping capabilities. We demonstrate how a developer can interact with stored relational and XML data using the Language Integrated Query (LINQ) feature of .NET. We show how LINQ queries are translated into a combination of SQL and XQuery. Finally, we illustrate how explicit mappings facilitate data independence upon database refactoring. James F. Terwilliger, Sergey Melnik 0001, Philip A. Bernstein |
Proc. VLDB Endow. | 3 |
| 2008 | Compiling mappings to bridge applications and databasesabstractTranslating data and data access operations between applications and databases is a longstanding data management problem. We present a novel approach to this problem, in which the relationship between the application data and the persistent storage is specified using a declarative mapping, which is compiled into bidirectional views that drive the data transformation engine. Expressing the application model as a view on the database is used to answer queries, while expressing the database schema as a view on the application model allows us to leverage view maintenance algorithms for update translation. This approach has been implemented in a commercial product. It enables developers to interact with a relational database via a conceptual schema and an object-oriented programming surface. We outline the implemented system and focus on the challenges of mapping compilation, which include rewriting queries under constraints and supporting nonrelational constructs. Sergey Melnik 0001, Atul Adya, Philip A. Bernstein |
ACM Trans. Database Syst. | 3 |
| 2008 | Model-independent schema translation
Paolo Atzeni, Paolo Cappellari, Riccardo Torlone, Philip A. Bernstein, Giorgio Gianforme |
VLDB J. | 4 |
| 2008 | Implementing mapping composition
Philip A. Bernstein, Todd J. Green, Sergey Melnik 0001, Alan Nash |
VLDB J. | 1 |
| 2007 | Teaching a Schema Translator to Produce O/R Views
Kris Mork, Philip A. Bernstein, Sergey Melnik 0001 |
ER | 2 |
| 2007 | Model management 2.0: manipulating richer mappingsabstractModel management is a generic approach to solving problems of data programmability where precisely engineered mappings are required. Applications include data warehousing, e-commerce, object-to-relational wrappers, enterprise information integration, database portals, and report generators. The goal is to develop a model management engine that can support tools for all of these applications. The engine supports operations to match schemas, compose mappings, diff schemas, merge schemas, translate schemas into different data models, and generate data transformations from mappings. Philip A. Bernstein, Sergey Melnik 0001 |
SIGMOD Conference | 1 |
| 2007 | Compiling mappings to bridge applications and databasesabstractTranslating data and data access operations between applications and databases is a longstanding data management problem. We present a novel approach to this problem, in which the relationship between the application data and the persistent storage is specified using a declarative mapping, which is compiled into bidirectional views that drive the data transformation engine. Expressing the application model as a view on the database is used to answer queries, while viewing the database in terms of the application model allows us to leverage view maintenance algorithms for update translation. This approach has been implemented in a commercial product. It enables developers to interact with a relational database via a conceptual schema and an object oriented programming surface. We outline the implemented system and focus on the challenges of mapping compilation, which include rewriting queries under constraints and supporting non-relational constructs. Sergey Melnik 0001, Atul Adya, Philip A. Bernstein |
SIGMOD Conference | 3 |
| 2007 | Model Management and Schema Mappings: Theory and Practice
Philip A. Bernstein, C. T. Howard Ho |
VLDB | 1 |
| 2007 | Composition of mappings given by embedded dependenciesabstractComposition of mappings between schemas is essential to support schema evolution, data exchange, data integration, and other data management tasks. In many applications, mappings are given by embedded dependencies. In this article, we study the issues involved in composing such mappings. Our algorithms and results extend those of Fagin et al. [2004], who studied the composition of mappings given by several kinds of constraints. In particular, they proved that full source-to-target tuple-generating dependencies (tgds) are closed under composition, but embedded source-to-target tgds are not. They introduced a class of second-order constraints, SO tgds , that is closed under composition and has desirable properties for data exchange. We study constraints that need not be source-to-target and we concentrate on obtaining (first-order) embedded dependencies. As part of this study, we also consider full dependencies and second-order constraints that arise from Skolemizing embedded dependencies. For each of the three classes of mappings that we study, we provide: (a) an algorithm that attempts to compute the composition; and (b) sufficient conditions on the input mappings which guarantee that the algorithm will succeed. In addition, we give several negative results. In particular, we show that full and second-order dependencies that are not limited to be source-to-target are not closed under composition (for the latter, under the additional restriction that no new function symbols are introduced). Furthermore, we show that determining whether the composition can be given by these kinds of dependencies is undecidable. Alan Nash, Philip A. Bernstein, Sergey Melnik 0001 |
ACM Trans. Database Syst. | 2 |
| 2006 | Model-Independent Schema and Data Translation
Paolo Atzeni, Paolo Cappellari, Philip A. Bernstein |
EDBT | 3 |
| 2006 | Relaxed-currency serializability for middle-tier caching and replicationabstractMany applications, such as e-commerce, routinely use copies of data that are not in sync with the database due to heuristic caching strategies used to enhance performance. We study concurrency control for a transactional model that allows update transactions to read out-of-date copies. Each read operation carries a "freshness constraint" that specifies how fresh a copy must be in order to be read. We offer a definition of correctness for this model and present algorithms to ensure several of the most interesting freshness constraints. We outline a serializability-theoretic correctness proof and present the results of a detailed performance study. Philip A. Bernstein, Alan D. Fekete, Hongfei Guo, Raghu Ramakrishnan 0001, Pradeep Tamma |
SIGMOD Conference | 1 |
| 2006 | Implementing Mapping Composition
Philip A. Bernstein, Todd J. Green, Sergey Melnik 0001, Alan Nash |
VLDB | 1 |
| 2006 | Incremental Schema Matching
Philip A. Bernstein, Sergey Melnik 0001, John E. Churchill |
VLDB | 1 |
| 2006 | Structural text search and comparison using automatically extracted schema
Michael N. Gubanov, Philip A. Bernstein |
WebDB | 2 |
| 2005 | A Multilevel Dictionary for Model Management
Paolo Atzeni, Paolo Cappellari, Philip A. Bernstein |
ER | 3 |
| 2005 | ModelGen: Model Independent Schema TranslationabstractA customizable and extensible tool is proposed to implement ModelGen, the model management operator that translates a schema from one model to another. A wide family of models is handled, by using a metamodel in which models can be succinctly and precisely described. The approach is novel because the tool exposes the dictionary that stores models, schemas, and the rules used to implement translations. In this way, the transformations can be customized and the tool can be easily extended. Paolo Atzeni, Paolo Cappellari, Philip A. Bernstein |
ICDE | 3 |
| 2005 | Corpus-based Schema MatchingabstractSchema matching is the problem of identifying corresponding elements in different schemas. Discovering these correspondences or matches is inherently difficult to automate. Past solutions have proposed a principled combination of multiple algorithms. However, these solutions sometimes perform rather poorly due to the lack of sufficient evidence in the schemas being matched. In this paper we show how a corpus of schemas and mappings can be used to augment the evidence about the schemas being matched, so they can be matched better. Such a corpus typically contains multiple schemas that model similar concepts and hence enables us to learn variations in the elements and their properties. We exploit such a corpus in two ways. First, we increase the evidence about each element being matched by including evidence from similar elements in the corpus. Second, we learn statistics about elements and their relationships and use them to infer constraints that we use to prune candidate mappings. We also describe how to use known mappings to learn the importance of domain and generic constraints. We present experimental results that demonstrate corpus-based matching outperforms direct matching (without the benefit of a corpus) in multiple domains. Jayant Madhavan, Philip A. Bernstein, AnHai Doan, Alon Y. Halevy |
ICDE | 2 |
| 2005 | Composition of mappings given by embedded dependenciesabstractComposition of mappings between schemas is essential to support schema evolution, data exchange, data integration, and other data management tasks. In many applications, mappings are given by embedded dependencies. In this paper, we study the issues involved in composing such mappings. Alan Nash, Philip A. Bernstein, Sergey Melnik 0001 |
PODS | 2 |
| 2005 | The many roles of meta data in data integrationabstractThis paper is a short introduction to an industrial session on the use of meta data to address data integration problems in large enterprises. The main topics are data discovery, version and configuration management, and mapping development. Philip A. Bernstein |
SIGMOD Conference | 1 |
| 2005 | Supporting Executable Mappings in Model ManagementabstractModel management is an approach to simplify the programming of metadata-intensive applications. It offers developers powerful operators, such as Compose, Diff, and Merge, that are applied to models, such as database schemas or interface specifications, and to mappings between models. Prior model management solutions focused on a simple class of mappings that do not have executable semantics. Yet many metadata applications require that mappings be executable, expressed in SQL, XSLT, or other data transformation languages.In this paper, we develop a semantics for model-management operators that allows applying the operators to executable mappings. Our semantics captures previously-proposed desiderata and is language-independent: the effect of the operators is expressed in terms of what they do to the instances of models and mappings. We describe an implemented prototype in which mappings are represented as dependencies between relational schemas, and discuss algebraic optimization of model-management scripts. Sergey Melnik 0001, Philip A. Bernstein, Alon Y. Halevy, Erhard Rahm |
SIGMOD Conference | 2 |
| 2005 | Database Publication Practices
Philip A. Bernstein, David J. DeWitt, Andreas Heuer 0001, Zachary G. Ives, Christian S. Jensen, Holger Meyer 0001, M. Tamer Özsu, Richard T. Snodgrass, Kyu-Young Whang, Jennifer Widom |
VLDB | 1 |
| 2005 | Interactive Schema Translation with Instance-Level Mappings
Philip A. Bernstein, Sergey Melnik 0001, Kris Mork |
VLDB | 1 |
| 2004 | Meta Data ManagementabstractBy meta data management, we mean techniques for manipulating schemas and schema-like objects (such as interface definitions and web site maps) and mappings between them. Work on meta data problems goes back to at least the early 1970s, when data translation was the hot database research topic, even before relational databases caught on. Many popular research problems in the past five years are primarily meta data problems, such as data warehouse tools (e.g., ETL – to extract, transform and load), data integration, the semantic web, generation of XML or object-oriented wrappers for SQL databases, and generation of wrappers for web sites. Other classical meta data problems are information resource management, design tool support and integration, and schema evolution and data migration. Despite its longevity and continued importance, there is no widely-accepted conceptual framework for the meta data field, as there is for many other database topics, such as access methods, query processing, and transaction management. In this seminar, we propose such a conceptual framework. It consists of three layers: applications, design patterns, and basic operators. Applications are the end-user problems to be solved, like those listed in the previous paragraph. Design patterns are generic problems that need to be solved in support of many different applications, such as meta modeling (for all meta data problems), answering queries using views (for data integration and the semantic web), and change propagation (for data translation, schema evolution, and round-trip engineering). Basic operators are procedures that are needed to support multiple design patterns and applications, such as matching schemas to produce a mapping, merging schemas based on a mapping, and composing mappings. We will describe several meta data management problems, and for each, we will explain the design patterns and operators that are needed to solve it. We will summarize the main approaches to each design pattern and operator – the main choices of language, data structures, and algorithms – and will highlight the relevant papers that address it. This seminar is targeted at both practicing engineers and researchers. The former will learn about the latest solutions to important meta data problems and the many difficult unsolved problems that are best to avoid. Database researchers, especially professors, will benefit from considering the conceptual framework that we propose, since no database textbooks treat meta data management as a separate topic as far as we know. Philip A. Bernstein, Sergey Melnik 0001 |
ICDE | 1 |
| 2004 | Adapting a Generic Match Algorithm to Align Ontologies of Human AnatomyabstractThe difficulty inherent in schema matching has led to the development of several generic match algorithms. We describe how we adapted general approaches to the specific task of aligning two ontologies of human anatomy, the Foundational Model of Anatomy and the GALEN Common Reference Model. Our approach consists of three phases: lexical, structural and hierarchical, which leverage different aspects of the ontologies as they are represented in a generic meta-model. Lexical matching identifies concepts with similar names. Structural matching identifies concepts whose neighbors are similar. Finally, hierarchical matching identifies concepts with similar descendants. We conclude by reporting on the lessons we learned. Kris Mork, Philip A. Bernstein |
ICDE | 2 |
| 2004 | Rethinking the Conference Reviewing Process - PanelabstractNo abstract available. Michael J. Franklin, Jennifer Widom, Gerhard Weikum, Philip A. Bernstein, Alon Y. Halevy, David J. DeWitt, Anastasia Ailamaki, Zachary G. Ives |
SIGMOD Conference | 4 |
| 2003 | Applying Model Management to Classical Meta Data Problems
Philip A. Bernstein |
CIDR | 1 |
| 2003 | Rondo: A Programming Platform for Generic Model ManagementabstractModel management aims at reducing the amount of programming needed for the development of metadata-intensive applications. We present a first complete prototype of a generic model management system, in which high-level operators are used to manipulate models and mappings between models. We define the key conceptual structures: models, morphisms, and selectors, and describe their use and implementation. We specify the semantics of the known model-management operators applied to these structures, suggest new ones, and develop new algorithms for implementing the individual operators. We examine the solutions for two model-management tasks that involve manipulations of relational schemas, XML schemas, and SQL views. Sergey Melnik 0001, Erhard Rahm, Philip A. Bernstein |
SIGMOD Conference | 3 |
| 2003 | Merging Models Based on Given Correspondences
Rachel Pottinger, Philip A. Bernstein |
VLDB | 2 |
| 2003 | Guest editorial
Philip A. Bernstein, Yannis E. Ioannidis, Raghu Ramakrishnan 0001 |
VLDB J. | 1 |
| 2003 | Developing metadata-intensive applications with Rondo
Sergey Melnik 0001, Erhard Rahm, Philip A. Bernstein |
J. Web Semant. | 3 |
| 2002 | Data Management for Peer-to-Peer Computing : A Vision
Philip A. Bernstein, Fausto Giunchiglia, Anastasios Kementsietsidis, John Mylopoulos, Luciano Serafini, Ilya Zaihrayeu |
WebDB | 1 |
| 2001 | Generic Schema Matching with Cupid
Jayant Madhavan, Philip A. Bernstein, Erhard Rahm |
VLDB | 2 |
| 2001 | A survey of approaches to automatic schema matching
Erhard Rahm, Philip A. Bernstein |
VLDB J. | 2 |
| 2000 | Data Warehouse Scenarios for Model Management
Philip A. Bernstein, Erhard Rahm |
ER | 1 |
| 2000 | Panel: Is Generic Metadata Management Feasible?
Philip A. Bernstein, Laura M. Haas, Matthias Jarke, Erhard Rahm, Gio Wiederhold |
VLDB | 1 |
| 2000 | Context-based prefetch - an optimization for implementing objects on relations
Philip A. Bernstein, Shankar Pal, David Shutt |
VLDB J. | 1 |
| 1999 | Versions and Workspaces in Microsoft RepositoryabstractThis paper describes the version and workspace features of Microsoft Repository, a layer that implements fine-grained objects and relationships on top of Microsoft SQL Server. It supports branching and merging of versions, delta storage, checkout-checkin, and single-version views for version-unaware applications. Thomas Bergsträsser, Philip A. Bernstein, Shankar Pal, David Shutt |
SIGMOD Conference | 2 |
| 1999 | Context-Based Prefetch for Implementing Objects on Relations
Philip A. Bernstein, Shankar Pal, David Shutt |
VLDB | 1 |
| 1999 | Microsoft Repository Version 2 and the Open Information Model
Philip A. Bernstein, Thomas Bergsträsser, Jason Carlson, Shankar Pal, Paul Sanders, David Shutt |
Inf. Syst. | 1 |
| 1997 | The Microsoft Repository
Philip A. Bernstein, Brian Harry, Paul Sanders, David Shutt, Jason Zander |
VLDB | 1 |
| 1996 | Repository System Engineering
Philip A. Bernstein |
SIGMOD Conference | 1 |
| 1995 | A Critique of ANSI SQL Isolation LevelsabstractANSI SQL-92 [MS, ANSI] defines Isolation Levels in terms of phenomena: Dirty Reads, Non-Repeatable Reads, and Phantoms. This paper shows that these phenomena and the ANSI SQL definitions fail to properly characterize several popular isolation levels, including the standard locking implementations of the levels covered. Ambiguity in the statement of the phenomena is investigated and a more formal statement is arrived at; in addition new phenomena that better characterize isolation types are introduced. Finally, an important multiversion isolation type, called Snapshot Isolation, is defined. Hal Berenson, Philip A. Bernstein, Jim Gray 0001, Jim Melton, Elizabeth J. O'Neil, Patrick E. O'Neil |
SIGMOD Conference | 2 |
| 1994 | PC Database Systems - Present and Future
Philip A. Bernstein |
VLDB | 1 |
| 1994 | An Overview of Repository Technology
Philip A. Bernstein, Umeshwar Dayal |
VLDB | 1 |
| 1993 | STDL - A Portable Language for Transaction Processing
Philip A. Bernstein, Per O. Gyllstrom, Tom Wimberg |
VLDB | 1 |
| 1990 | Implementing Recoverable Requests Using QueuesabstractTransactions have been rigorously defined and extensively studied in the database and transaction processing literature, but little has been said about the handling of the requests for transaction execution in commercial TP systems, especially distributed ones, managing the flow of requests is often as important as executing the transactions themselves. Philip A. Bernstein, Meichun Hsu, Bruce Mann |
SIGMOD Conference | 1 |
| 1984 | An Algorithm for Concurrency Control and Recovery in Replicated Distributed DatabasesabstractIn a one-copy distributed database, each data item is stored at exactly one site. In a replicated database, some data items may be stored at multiple sites. The main motivation is improved reliability: by storing important data at multiple sites, the DBS can operate even though some sites have failed. This paper describes an algorithm for handling replicated data, which allows users to operate on data so long as one copy is “available.” A copy is “available” when (i) its site is up, and (ii) the copy is not out-of-date because of an earlier crash. The algorithm handles clean, detectable site failures, but not Byzantine failures or network partitions. Philip A. Bernstein, Nathan Goodman |
ACM Trans. Database Syst. | 1 |
| 1983 | Database Theory: Where Has It Been? Where Is It Going? (Abstract)abstractNo abstract available. Philip A. Bernstein |
SIGMOD Conference | 1 |
| 1983 | Multiversion Concurrency Control - Theory and AlgorithmsabstractConcurrency control is the activity of synchronizing operations issued by concurrently executing programs on a shared database. The goal is to produce an execution that has the same effect as a serial (noninterleaved) one. In a multiversion database system, each write on a data item produces a new copy (or version ) of that data item. This paper presents a theory for analyzing the correctness of concurrency control algorithms for multiversion database systems. We use the theory to analyze some new algorithms and some previously published ones. Philip A. Bernstein, Nathan Goodman |
ACM Trans. Database Syst. | 1 |
| 1982 | Fast Methods for Testing Quantified Relational Calculus AssertionsabstractSemantic integrity assertions are predicates that define consistent states. A database system enforces assertions by ensuring that consistency is maintained as the database is updated.Most research on the efficient enforcement of assertions has concentrated on assertion simplification algorithms --- algorithms that produce simplified assertions that can be evaluated before the update is executed. This paper describes a strategy for further improving the efficiency of assertion enforcement.We develop an efficient algorithm for evaluating an assertion produced by an assertion simplification algorithm. We characterize a class of assertions that can be evaluated using a simple two-step procedure. The first step defines and evaluates simple selection queries on each relation. The second step applies set emptiness tests to the results of these selections. We also show how these techniques may be used to improve the efficiency of evaluating assertions outside our class. Philip A. Bernstein, Barbara T. Blaustein |
SIGMOD Conference | 1 |
| 1982 | A Sophisticate's Introduction to Distributed Concurrency Control (Invited Paper)
Philip A. Bernstein, Nathan Goodman |
VLDB | 1 |
| 1982 | On the updatability of network views-extending relational view theory to the network model
Umeshwar Dayal, Philip A. Bernstein |
Inf. Syst. | 2 |
| 1982 | On the Correct Translation of Update Operations on Relational ViewsabstractMost relational database systems provide a facility for supporting user views. Permitting this level of abstraction has the danger, however, that update requests issued by a user within the context of his view may not translate correctly into equivalent updates on the underlying database. The purpose of this paper is to formalize the notion of update translation and derive conditions under which translation procedures will produce correct translations of view updates. Umeshwar Dayal, Philip A. Bernstein |
ACM Trans. Database Syst. | 2 |
| 1981 | The power of inequality semijoins
Philip A. Bernstein, Nathan Goodman |
Inf. Syst. | 1 |
| 1981 | Query Processing in a System for Distributed Databases (SDD-1)abstractThis paper describes the techniques used to optimize relational queries in the SDD-1 distributed database system. Queries are submitted to SDD-1 in a high-level procedural language called Datalanguage. Optimization begins by translating each Datalanguage query into a relational calculus form called an envelope , which is essentially an aggregate-free QUEL query. This paper is primarily concerned with the optimization of envelopes. Envelopes are processed in two phases. The first phase executes relational operations at various sites of the distributed database in order to delimit a subset of the database that contains all data relevant to the envelope. This subset is called a reduction of the database. The second phase transmits the reduction to one designated site, and the query is executed locally at that site. The critical optimization problem is to perform the reduction phase efficiently. Success depends on designing a good repertoire of operators to use during this phase, and an effective algorithm for deciding which of these operators to use in processing a given envelope against a given database. The principal reduction operator that we employ is called a semijoin . In this paper we define the semijoin operator, explain why semijoin is an effective reduction operator, and present an algorithm that constructs a cost-effective program of semijoins, given an envelope and a database. Philip A. Bernstein, Nathan Goodman, Eugene Wong 0001, Christopher L. Reeve, James B. Rothnie Jr. |
ACM Trans. Database Syst. | 1 |
| 1980 | Fast Maintenance of Semantic Integrity Assertions Using Redundant Aggregate Data
Philip A. Bernstein, Barbara T. Blaustein, Edmund M. Clarke |
VLDB | 1 |
| 1980 | What does Boyce-Codd Normal Form Do?
Philip A. Bernstein, Nathan Goodman |
VLDB | 1 |
| 1980 | Timestamp-Based Algorithms for Concurrency Control in Distributed Database Systems
Philip A. Bernstein, Nathan Goodman |
VLDB | 1 |
| 1980 | The Correctness of Concurrency Control Mechanisms in a System for Distributed Databases (SDD-1)abstractThis paper presents a formal analysis of the concurrency control strategy of SDD-1. SDD-1, a System for Distributed Databases, is a prototype distributed database system being developed by Computer Corporation of America. In SDD-1, portions of data distributed throughout a network may be replicated at multiple sites. The SDD-1 concurrency control guarantees database consistency in the face of such distribution and replication. This paper is one of a series of companion papers on SDD-1 [2, 8]. Philip A. Bernstein, David W. Shipman |
ACM Trans. Database Syst. | 1 |
| 1980 | Concurrency Control in a System for Distributed Databases (SDD-1)abstractThis paper presents the concurrency control strategy of SDD-1. SDD-1, a System for Distributed Databases, is a prototype distributed database system being developed by Computer Corporation of America. In SDD-1, portions of data distributed throughout a network may be replicated at multiple sites. The SDD-1 concurrency control guarantees database consistency in the face of such distribution and replication. This paper is one of a series of companion papers on SDD-1 [4, 10, 12, 21]. Philip A. Bernstein, David W. Shipman, James B. Rothnie Jr. |
ACM Trans. Database Syst. | 1 |
| 1980 | A Language Facility for Designing Database-Intensive ApplicationsabstractTAXIS, a language for the design of interactive information systems (e.g., credit card verification, student-course registration, and airline reservations) is described. TAXIS offers (relational) database management facilities, a means of specifying semantic integrity constraints, and an exception-handling mechanism, integrated into a single language through the concepts of class, property , and the IS-A (generalization) relationship . A description of the main constructs of TAXIS is included and their usefulness illustrated with examples. John Mylopoulos, Philip A. Bernstein, Harry K. T. Wong |
ACM Trans. Database Syst. | 2 |
| 1980 | Introduction to a System for Distributed Databases (SDD-1)abstractThe declining cost of computer hardware and the increasing data processing needs of geographically dispersed organizations have led to substantial interest in distributed data management. SDD-1 is a distributed database management system currently being developed by Computer Corporation of America. Users interact with SDD-1 precisely as if it were a nondistributed database system because SDD-1 handles all issues arising from the distribution of data. These issues include distributed concurrency control, distributed query processing, resiliency to component failure, and distributed directory management. This paper presents an overview of the SDD-1 design and its solutions to the above problems. This paper is the first of a series of companion papers on SDD-1 (Bernstein and Shipman [2], Bernstein et al. [4], and Hammer and Shipman [14]). James B. Rothnie Jr., Philip A. Bernstein, Stephen Fox, Nathan Goodman, Michael Hammer, Terry A. Landers, Christopher L. Reeve, David W. Shipman, Eugene Wong 0001 |
ACM Trans. Database Syst. | 2 |
| 1979 | Synthesizing Independent Database SchemasabstractWe study the following database design problem. Given a universal relation scheme 〈U, F〉 where F is a set of functional dependencies, find an in some way normalized database schema D = {〈X1, F1〉,..., 〈Xn, Fn〉} where Xi ⊂ U and Fi is inherited from F, such that D is an independent representation of the universal scheme 〈U, F〉. This means that D has both the lossless join property and the faithful closure property, (***** Fi)+ = F+, where + denotes the closure of a set of functional dependencies. We show that this goal can easily be achieved by an extension of the well-known synthetic approach of Bernstein and others to database design. We merely have to check whether the usual synthesis procedure has produced a key component 〈Xi, Fi〉 such that Xi → U ε F+; in case this is true the output of the synthesis procedure is actually an independent (and not only faithful) representation, otherwise we only have to add one further component, namely just a key. These claims are proved by a careful inspection of the Aho/Beeri/Ullman algorithm to test for losslessness. Finally, we show how to use our method to synthesize minimal independent third normal form schemas. Joachim Biskup, Umeshwar Dayal, Philip A. Bernstein |
SIGMOD Conference | 3 |
| 1979 | Computational Problems Related to the Design of Normal Form Relational SchemasabstractProblems related to functional dependencies and the algorithmic design of relational schemas are examined. Specifically, the following results are presented: (1) a tree model of derivations of functional dependencies from other functional dependencies; (2) a linear-time algorithm to test if a functional dependency is in the closure of a set of functional dependencies; (3) a quadratic-time implementation of Bernstein's third normal form schema synthesis algorithm. Furthermore, it is shown that most interesting algorithmic questions about Boyce-Codd normal form and keys are NP -complete and are therefore probably not amenable to fast algorithmic solutions. Catriel Beeri, Philip A. Bernstein |
ACM Trans. Database Syst. | 2 |
| 1979 | Errata: Computational Problems Related to the Design of Normal Form Relational Schemas
Philip A. Bernstein |
ACM Trans. Database Syst. | 1 |
| 1979 | Comments on "Process Synchronization in Database Systems"abstractNo abstract available. Philip A. Bernstein, Marco A. Casanova, Nathan Goodman |
ACM Trans. Database Syst. | 1 |
| 1978 | A Language Facility for Designing Interactive Database-Intensive Applications (Abstract)abstractThis paper describes TAXIS, a language for the design of Interactive Information Systems (e.g., credit card varification, student-course registration and airline reservations). TAXIS offers (relational) database management facilities, a means of specifying semantic integrity constraints and an exception-handling mechanism, integrated into a single language through the concepts of class, property and the ISA (generalization) relationship. The paper includes a description of the main constructs of TAXIS and illustrates their usefulness with examples. John Mylopoulos, Philip A. Bernstein, Harry K. T. Wong |
SIGMOD Conference | 2 |
| 1978 | A Sophisticate's Introduction to Database Normalization Theory
Catriel Beeri, Philip A. Bernstein, Nathan Goodman |
VLDB | 2 |
| 1978 | On the Updatability of Relational Views
Umeshwar Dayal, Philip A. Bernstein |
VLDB | 2 |
| 1976 | Synthesizing Third Normal Form Relations from Functional DependenciesabstractIt has been proposed that the description of a relational database can be formulated as a set of functional relationships among database attributes. These functional relationships can then be used to synthesize algorithmically a relational scheme. It is the purpose of this paper to present an effective procedure for performing such a synthesis. The schema that results from this procedure is proved to be in Codd's third normal form and to contain the fewest possible number of relations. Problems with earlier attempts to construct such a procedure are also discussed. Philip A. Bernstein |
ACM Trans. Database Syst. | 1 |
| 1975 | A Unified Approach to Functional Dependencies and RelationsabstractIn Codd's relational model, the relation name groups together a family of functional dependencies over a set of attributes. For integrity and for maintenance purposes it is important to eliminate inherent redundancy within a relation due to the repetition of instances of a functional connection between attributes. This led Codd to propose a series of three normalizations. The manipulation of normal forms is governed by functional dependencies that are explicitly declared to exist within the relation. Since functional dependencies completely govern the decomposition rules of normalization, perhaps it is more sensible to take them as the elementary notions to be later synthesized into more complex structures, such as relations. Our goals, then are twofold. First, we will discuss how the use of functional dependencies lends itself to a rigorous and correct, yet clear and simple description of complex data relationships. Second, we will outline some new computational techniques to map functional dependencies into normal form relations algorithmically, thus allowing us to use the dependencies as a basic unit on the implementation as well as conceptual level. Philip A. Bernstein, J. Richard Swenson, Dennis Tsichritzis |
SIGMOD Conference | 1 |
| 1975 | A Multi-Level Architecture for Relational Data Base SystemsabstractMost of the literature on implementation of relations has been directed toward user features, with little attention paid to an overall conceptual view of underlying structures. Performance oriented considerations have been treated only for isolated problems. Hans Albrecht Schmid, Philip A. Bernstein |
VLDB | 2 |
| 1975 | Allocating Storage in Hierarchical Data Bases Using Traces
Philip A. Bernstein, Dennis Tsichritzis |
Inf. Syst. | 1 |