postgresql/doc/src/sgml/biblio.sgml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

551 lines
15 KiB
Plaintext
Raw Permalink Normal View History

2010-09-20 22:08:53 +02:00
<!-- doc/src/sgml/biblio.sgml -->
1999-02-13 04:38:46 +01:00
<bibliography id="biblio">
<title>Bibliography</title>
1998-03-01 09:16:16 +01:00
1999-02-13 04:38:46 +01:00
<para>
Selected references and readings for <acronym>SQL</acronym>
and <productname>PostgreSQL</productname>.
1999-02-13 04:38:46 +01:00
</para>
1998-03-01 09:16:16 +01:00
<para>
Some white papers and technical reports from the original
<productname>POSTGRES</productname> development team
are available at the University of California, Berkeley, Computer Science
Department <ulink url="https://dsf.berkeley.edu/papers/">web site</ulink>.
</para>
1999-02-13 04:38:46 +01:00
<bibliodiv>
<title><acronym>SQL</acronym> Reference Books</title>
1998-03-01 09:16:16 +01:00
<biblioentry id="bowman01">
2001-11-09 00:34:33 +01:00
<title>The Practical <acronym>SQL</acronym> Handbook</title>
<subtitle>Using SQL Variants</subtitle>
<edition>Fourth Edition</edition>
1999-02-13 04:38:46 +01:00
<authorgroup>
<author>
2000-03-23 07:30:58 +01:00
<firstname>Judith</firstname>
1999-02-13 04:38:46 +01:00
<surname>Bowman</surname>
</author>
<author>
<firstname>Sandra</firstname>
<surname>Emerson</surname>
</author>
<author>
<firstname>Marcy</firstname>
2000-03-23 07:30:58 +01:00
<surname>Darnovsky</surname>
1999-02-13 04:38:46 +01:00
</author>
</authorgroup>
<isbn>0-201-70309-2</isbn>
1999-02-13 04:38:46 +01:00
<publisher>
<publishername>Addison-Wesley Professional</publishername>
1999-02-13 04:38:46 +01:00
</publisher>
<pubdate>2001</pubdate>
1999-02-13 04:38:46 +01:00
</biblioentry>
1998-03-01 09:16:16 +01:00
<biblioentry id="date97">
2001-11-09 00:34:33 +01:00
<title>A Guide to the <acronym>SQL</acronym> Standard</title>
<subtitle>A user's guide to the standard database language <acronym>SQL</acronym></subtitle>
<edition>Fourth Edition</edition>
1999-02-13 04:38:46 +01:00
<authorgroup>
<author>
<firstname>C. J.</firstname>
<surname>Date</surname>
</author>
<author>
<firstname>Hugh</firstname>
<surname>Darwen</surname>
</author>
</authorgroup>
<isbn>0-201-96426-0</isbn>
<publisher>
<publishername>Addison-Wesley</publishername>
</publisher>
<pubdate>1997</pubdate>
1999-02-13 04:38:46 +01:00
</biblioentry>
1998-03-01 09:16:16 +01:00
<biblioentry id="date04">
2001-11-09 00:34:33 +01:00
<title>An Introduction to Database Systems</title>
<edition>Eighth Edition</edition>
<authorgroup>
<author>
<firstname>C. J.</firstname>
<surname>Date</surname>
</author>
</authorgroup>
<isbn>0-321-19784-4</isbn>
<publisher>
<publishername>Addison-Wesley</publishername>
</publisher>
<pubdate>2003</pubdate>
</biblioentry>
<biblioentry id="elma04">
<title>Fundamentals of Database Systems</title>
<edition>Fourth Edition</edition>
<authorgroup>
<author>
<firstname>Ramez</firstname>
<surname>Elmasri</surname>
</author>
<author>
<firstname>Shamkant</firstname>
<surname>Navathe</surname>
</author>
</authorgroup>
<isbn>0-321-12226-7</isbn>
<publisher>
<publishername>Addison-Wesley</publishername>
</publisher>
<pubdate>2003</pubdate>
</biblioentry>
<biblioentry id="melt93">
2001-11-09 00:34:33 +01:00
<title>Understanding the New <acronym>SQL</acronym></title>
1999-02-13 04:38:46 +01:00
<subtitle>A complete guide</subtitle>
<authorgroup>
<author>
<firstname>Jim</firstname>
<surname>Melton</surname>
</author>
<author>
<firstname>Alan R.</firstname>
<surname>Simon</surname>
</author>
</authorgroup>
<isbn>1-55860-245-3</isbn>
<publisher>
<publishername>Morgan Kaufmann</publishername>
</publisher>
<pubdate>1993</pubdate>
1999-02-13 04:38:46 +01:00
</biblioentry>
1998-03-01 09:16:16 +01:00
<biblioentry id="ull88">
<title>Principles of Database and Knowledge-Base Systems</title>
<subtitle>Classical Database Systems</subtitle>
<authorgroup>
<author>
<firstname>Jeffrey D.</firstname>
<surname>Ullman</surname>
</author>
</authorgroup>
2001-11-09 00:34:33 +01:00
<volumenum>Volume 1</volumenum>
<publisher>
2001-11-09 00:34:33 +01:00
<publishername>Computer Science Press</publishername>
</publisher>
2001-11-09 00:34:33 +01:00
<pubdate>1988</pubdate>
</biblioentry>
Partial implementation of SQL/JSON path language SQL 2016 standards among other things contains set of SQL/JSON features for JSON processing inside of relational database. The core of SQL/JSON is JSON path language, allowing access parts of JSON documents and make computations over them. This commit implements partial support JSON path language as separate datatype called "jsonpath". The implementation is partial because it's lacking datetime support and suppression of numeric errors. Missing features will be added later by separate commits. Support of SQL/JSON features requires implementation of separate nodes, and it will be considered in subsequent patches. This commit includes following set of plain functions, allowing to execute jsonpath over jsonb values: * jsonb_path_exists(jsonb, jsonpath[, jsonb, bool]), * jsonb_path_match(jsonb, jsonpath[, jsonb, bool]), * jsonb_path_query(jsonb, jsonpath[, jsonb, bool]), * jsonb_path_query_array(jsonb, jsonpath[, jsonb, bool]). * jsonb_path_query_first(jsonb, jsonpath[, jsonb, bool]). This commit also implements "jsonb @? jsonpath" and "jsonb @@ jsonpath", which are wrappers over jsonpath_exists(jsonb, jsonpath) and jsonpath_predicate(jsonb, jsonpath) correspondingly. These operators will have an index support (implemented in subsequent patches). Catversion bumped, to add new functions and operators. Code was written by Nikita Glukhov and Teodor Sigaev, revised by me. Documentation was written by Oleg Bartunov and Liudmila Mantrova. The work was inspired by Oleg Bartunov. Discussion: https://postgr.es/m/fcc6fc6a-b497-f39a-923d-aa34d0c588e8%402ndQuadrant.com Author: Nikita Glukhov, Teodor Sigaev, Alexander Korotkov, Oleg Bartunov, Liudmila Mantrova Reviewed-by: Tomas Vondra, Andrew Dunstan, Pavel Stehule, Alexander Korotkov
2019-03-16 10:15:37 +01:00
<biblioentry id="sqltr-19075-6">
<title>SQL Technical Report</title>
Partial implementation of SQL/JSON path language SQL 2016 standards among other things contains set of SQL/JSON features for JSON processing inside of relational database. The core of SQL/JSON is JSON path language, allowing access parts of JSON documents and make computations over them. This commit implements partial support JSON path language as separate datatype called "jsonpath". The implementation is partial because it's lacking datetime support and suppression of numeric errors. Missing features will be added later by separate commits. Support of SQL/JSON features requires implementation of separate nodes, and it will be considered in subsequent patches. This commit includes following set of plain functions, allowing to execute jsonpath over jsonb values: * jsonb_path_exists(jsonb, jsonpath[, jsonb, bool]), * jsonb_path_match(jsonb, jsonpath[, jsonb, bool]), * jsonb_path_query(jsonb, jsonpath[, jsonb, bool]), * jsonb_path_query_array(jsonb, jsonpath[, jsonb, bool]). * jsonb_path_query_first(jsonb, jsonpath[, jsonb, bool]). This commit also implements "jsonb @? jsonpath" and "jsonb @@ jsonpath", which are wrappers over jsonpath_exists(jsonb, jsonpath) and jsonpath_predicate(jsonb, jsonpath) correspondingly. These operators will have an index support (implemented in subsequent patches). Catversion bumped, to add new functions and operators. Code was written by Nikita Glukhov and Teodor Sigaev, revised by me. Documentation was written by Oleg Bartunov and Liudmila Mantrova. The work was inspired by Oleg Bartunov. Discussion: https://postgr.es/m/fcc6fc6a-b497-f39a-923d-aa34d0c588e8%402ndQuadrant.com Author: Nikita Glukhov, Teodor Sigaev, Alexander Korotkov, Oleg Bartunov, Liudmila Mantrova Reviewed-by: Tomas Vondra, Andrew Dunstan, Pavel Stehule, Alexander Korotkov
2019-03-16 10:15:37 +01:00
<subtitle>Part 6: SQL support for JavaScript Object
Notation (JSON)</subtitle>
<edition>First Edition</edition>
<pubdate>2017</pubdate>
Partial implementation of SQL/JSON path language SQL 2016 standards among other things contains set of SQL/JSON features for JSON processing inside of relational database. The core of SQL/JSON is JSON path language, allowing access parts of JSON documents and make computations over them. This commit implements partial support JSON path language as separate datatype called "jsonpath". The implementation is partial because it's lacking datetime support and suppression of numeric errors. Missing features will be added later by separate commits. Support of SQL/JSON features requires implementation of separate nodes, and it will be considered in subsequent patches. This commit includes following set of plain functions, allowing to execute jsonpath over jsonb values: * jsonb_path_exists(jsonb, jsonpath[, jsonb, bool]), * jsonb_path_match(jsonb, jsonpath[, jsonb, bool]), * jsonb_path_query(jsonb, jsonpath[, jsonb, bool]), * jsonb_path_query_array(jsonb, jsonpath[, jsonb, bool]). * jsonb_path_query_first(jsonb, jsonpath[, jsonb, bool]). This commit also implements "jsonb @? jsonpath" and "jsonb @@ jsonpath", which are wrappers over jsonpath_exists(jsonb, jsonpath) and jsonpath_predicate(jsonb, jsonpath) correspondingly. These operators will have an index support (implemented in subsequent patches). Catversion bumped, to add new functions and operators. Code was written by Nikita Glukhov and Teodor Sigaev, revised by me. Documentation was written by Oleg Bartunov and Liudmila Mantrova. The work was inspired by Oleg Bartunov. Discussion: https://postgr.es/m/fcc6fc6a-b497-f39a-923d-aa34d0c588e8%402ndQuadrant.com Author: Nikita Glukhov, Teodor Sigaev, Alexander Korotkov, Oleg Bartunov, Liudmila Mantrova Reviewed-by: Tomas Vondra, Andrew Dunstan, Pavel Stehule, Alexander Korotkov
2019-03-16 10:15:37 +01:00
</biblioentry>
1999-02-13 04:38:46 +01:00
</bibliodiv>
1998-03-01 09:16:16 +01:00
1999-02-13 04:38:46 +01:00
<bibliodiv>
<title>PostgreSQL-specific Documentation</title>
1999-02-13 04:38:46 +01:00
<biblioentry id="sim98">
2001-11-09 00:34:33 +01:00
<title>Enhancement of the ANSI SQL Implementation of PostgreSQL</title>
<authorgroup>
<author>
<firstname>Stefan</firstname>
<surname>Simkovics</surname>
1999-02-13 04:38:46 +01:00
<!--
2001-11-09 00:34:33 +01:00
Paul-Peters-Gasse 36
1999-02-13 04:38:46 +01:00
2384 Breitenfurt
AUSTRIA
ssimkovi@ag.or.at
-->
</author>
</authorgroup>
2001-11-09 00:34:33 +01:00
<!--
1999-02-13 04:38:46 +01:00
<othercredit>
<contrib>
with support by
</contrib>
2001-11-09 00:34:33 +01:00
<honorific>O. Univ. Prof. Dr.</honorific>
1999-02-13 04:38:46 +01:00
<firstname>Georg</firstname>
<surname>Gottlob</surname>
2001-11-09 00:34:33 +01:00
<honorific>Univ. Ass. Mag.</honorific>
1999-02-13 04:38:46 +01:00
<firstname>Katrin</firstname>
<surname>Seyr</surname>
</othercredit>
2001-11-09 00:34:33 +01:00
-->
1999-02-13 04:38:46 +01:00
<abstract>
<para>
2001-11-09 00:34:33 +01:00
Discusses SQL history and syntax, and describes the addition of
<literal>INTERSECT</literal> and <literal>EXCEPT</literal> constructs into
2001-11-09 00:34:33 +01:00
<productname>PostgreSQL</productname>. Prepared as a Master's
Thesis with the support of O. Univ. Prof. Dr. Georg Gottlob and
Univ. Ass. Mag. Katrin Seyr at Vienna University of Technology.
1999-02-13 04:38:46 +01:00
</para>
</abstract>
<publisher>
2001-11-09 00:34:33 +01:00
<publishername>Department of Information Systems, Vienna University of Technology</publishername>
<address>Vienna, Austria</address>
1999-02-13 04:38:46 +01:00
</publisher>
<pubdate>November 29, 1998</pubdate>
1999-02-13 04:38:46 +01:00
</biblioentry>
<biblioentry id="yu95">
2001-11-09 00:34:33 +01:00
<title>The <productname>Postgres95</productname> User Manual</title>
1999-02-13 04:38:46 +01:00
<authorgroup>
<author>
<firstname>A.</firstname>
<surname>Yu</surname>
</author>
<author>
<firstname>J.</firstname>
<surname>Chen</surname>
</author>
</authorgroup>
<publisher>
2001-11-09 00:34:33 +01:00
<publishername>University of California</publishername>
<address>Berkeley, California</address>
1999-02-13 04:38:46 +01:00
</publisher>
<pubdate>Sept. 5, 1995</pubdate>
1999-02-13 04:38:46 +01:00
</biblioentry>
1998-03-01 09:16:16 +01:00
<biblioentry id="fong">
<title><ulink url="https://dsf.berkeley.edu/papers/UCB-MS-zfong.pdf">The
design and implementation of the <productname>POSTGRES</productname> query
optimizer</ulink></title>
<author>
<firstname>Zelaine</firstname>
<surname>Fong</surname>
</author>
<publisher>
<publishername>University of California, Berkeley, Computer Science Department</publishername>
</publisher>
</biblioentry>
1999-02-13 04:38:46 +01:00
</bibliodiv>
1998-03-01 09:16:16 +01:00
1999-02-13 04:38:46 +01:00
<bibliodiv>
<title>Proceedings and Articles</title>
<biblioentry id="ports12">
<biblioset relation="article">
<title><ulink url="https://arxiv.org/pdf/1208.4179">Serializable Snapshot Isolation in PostgreSQL</ulink></title>
<authorgroup>
<author>
<firstname>D.</firstname>
<surname>Ports</surname>
</author>
<author>
<firstname>K.</firstname>
<surname>Grittner</surname>
</author>
</authorgroup>
</biblioset>
<confgroup>
<conftitle>VLDB Conference</conftitle>
<confdates>August 2012</confdates>
<address>Istanbul, Turkey</address>
</confgroup>
</biblioentry>
<biblioentry id="berenson95">
<biblioset relation="article">
<title><ulink url="https://www.microsoft.com/en-us/research/wp-content/uploads/2016/02/tr-95-51.pdf">A Critique of ANSI SQL Isolation Levels</ulink></title>
<authorgroup>
<author>
<firstname>H.</firstname>
<surname>Berenson</surname>
</author>
<author>
<firstname>P.</firstname>
<surname>Bernstein</surname>
</author>
<author>
<firstname>J.</firstname>
<surname>Gray</surname>
</author>
<author>
<firstname>J.</firstname>
<surname>Melton</surname>
</author>
<author>
<firstname>E.</firstname>
<surname>O'Neil</surname>
</author>
<author>
<firstname>P.</firstname>
<surname>O'Neil</surname>
</author>
</authorgroup>
</biblioset>
<confgroup>
<conftitle>ACM-SIGMOD Conference on Management of Data</conftitle>
<confdates>June 1995</confdates>
<address>San Jose, California</address>
</confgroup>
</biblioentry>
<biblioentry id="olson93">
2001-11-09 00:34:33 +01:00
<title>Partial indexing in POSTGRES: research project</title>
1999-02-13 04:38:46 +01:00
<authorgroup>
<author>
<firstname>Nels</firstname>
<surname>Olson</surname>
</author>
</authorgroup>
2001-11-09 00:34:33 +01:00
<pubsnumber>UCB Engin T7.49.1993 O676</pubsnumber>
1999-02-13 04:38:46 +01:00
<publisher>
2001-11-09 00:34:33 +01:00
<publishername>University of California</publishername>
<address>Berkeley, California</address>
1999-02-13 04:38:46 +01:00
</publisher>
<pubdate>1993</pubdate>
1999-02-13 04:38:46 +01:00
</biblioentry>
<biblioentry id="ong90">
2001-11-09 00:34:33 +01:00
<biblioset relation="article">
<title>A Unified Framework for Version Modeling Using Production Rules in a Database System</title>
1999-02-13 04:38:46 +01:00
<authorgroup>
<author>
<firstname>L.</firstname>
<surname>Ong</surname>
</author>
<author>
<firstname>J.</firstname>
<surname>Goh</surname>
</author>
</authorgroup>
2001-11-09 00:34:33 +01:00
</biblioset>
<biblioset relation="journal">
<title>ERL Technical Memorandum M90/33</title>
1999-02-13 04:38:46 +01:00
<publisher>
2001-11-09 00:34:33 +01:00
<publishername>University of California</publishername>
<address>Berkeley, California</address>
1999-02-13 04:38:46 +01:00
</publisher>
<pubdate>April, 1990</pubdate>
2001-11-09 00:34:33 +01:00
</biblioset>
1999-02-13 04:38:46 +01:00
</biblioentry>
1998-03-01 09:16:16 +01:00
<biblioentry id="rowe87">
2001-11-09 00:34:33 +01:00
<biblioset relation="article">
<title><ulink url="https://dsf.berkeley.edu/papers/ERL-M87-13.pdf">The <productname>POSTGRES</productname>
data model</ulink></title>
1999-02-13 04:38:46 +01:00
<authorgroup>
<author>
<firstname>L.</firstname>
<surname>Rowe</surname>
</author>
<author>
<firstname>M.</firstname>
<surname>Stonebraker</surname>
</author>
</authorgroup>
2001-11-09 00:34:33 +01:00
</biblioset>
1999-02-13 04:38:46 +01:00
<confgroup>
2001-11-09 00:34:33 +01:00
<conftitle>VLDB Conference</conftitle>
1999-02-13 04:38:46 +01:00
<confdates>Sept. 1987</confdates>
2001-11-09 00:34:33 +01:00
<address>Brighton, England</address>
1999-02-13 04:38:46 +01:00
</confgroup>
</biblioentry>
1998-03-01 09:16:16 +01:00
<biblioentry id="seshadri95">
2001-11-09 00:34:33 +01:00
<biblioset relation="article">
<title><ulink url="https://citeseer.ist.psu.edu/viewdoc/summary?doi=10.1.1.40.5740">Generalized
Partial Indexes</ulink></title>
1999-02-13 04:38:46 +01:00
<authorgroup>
<author>
<firstname>P.</firstname>
<surname>Seshadri</surname>
</author>
<author>
<firstname>A.</firstname>
<surname>Swami</surname>
</author>
</authorgroup>
2001-11-09 00:34:33 +01:00
</biblioset>
1999-02-13 04:38:46 +01:00
<confgroup>
<conftitle>Eleventh International Conference on Data Engineering</conftitle>
2019-10-25 20:23:44 +02:00
<confdates>6&ndash;10 March 1995</confdates>
2001-11-09 00:34:33 +01:00
<address>Taipeh, Taiwan</address>
1999-02-13 04:38:46 +01:00
</confgroup>
2001-11-09 00:34:33 +01:00
<pubsnumber>Cat. No.95CH35724</pubsnumber>
1999-02-13 04:38:46 +01:00
<publisher>
<publishername>IEEE Computer Society Press</publishername>
2001-11-09 00:34:33 +01:00
<address>Los Alamitos, California</address>
1999-02-13 04:38:46 +01:00
</publisher>
<pubdate>1995</pubdate>
2019-10-25 20:23:44 +02:00
<pagenums>420&ndash;7</pagenums>
1999-02-13 04:38:46 +01:00
</biblioentry>
<biblioentry id="ston86">
2001-11-09 00:34:33 +01:00
<biblioset relation="article">
<title><ulink url="https://dsf.berkeley.edu/papers/ERL-M85-95.pdf">The
design of <productname>POSTGRES</productname></ulink></title>
1999-02-13 04:38:46 +01:00
<authorgroup>
<author>
<firstname>M.</firstname>
<surname>Stonebraker</surname>
</author>
<author>
<firstname>L.</firstname>
<surname>Rowe</surname>
</author>
</authorgroup>
2001-11-09 00:34:33 +01:00
</biblioset>
1999-02-13 04:38:46 +01:00
<confgroup>
2001-11-09 00:34:33 +01:00
<conftitle>ACM-SIGMOD Conference on Management of Data</conftitle>
1999-02-13 04:38:46 +01:00
<confdates>May 1986</confdates>
2001-11-09 00:34:33 +01:00
<address>Washington, DC</address>
1999-02-13 04:38:46 +01:00
</confgroup>
</biblioentry>
1998-03-01 09:16:16 +01:00
<biblioentry id="ston87a">
2001-11-09 00:34:33 +01:00
<biblioset relation="article">
<title>The design of the <productname>POSTGRES</productname> rules system</title>
1999-02-13 04:38:46 +01:00
<authorgroup>
<author>
<firstname>M.</firstname>
<surname>Stonebraker</surname>
</author>
<author>
<firstname>E.</firstname>
<surname>Hanson</surname>
</author>
<author>
<firstname>C. H.</firstname>
<surname>Hong</surname>
</author>
</authorgroup>
2001-11-09 00:34:33 +01:00
</biblioset>
1999-02-13 04:38:46 +01:00
<confgroup>
2001-11-09 00:34:33 +01:00
<conftitle>IEEE Conference on Data Engineering</conftitle>
1999-02-13 04:38:46 +01:00
<confdates>Feb. 1987</confdates>
2001-11-09 00:34:33 +01:00
<address>Los Angeles, California</address>
1999-02-13 04:38:46 +01:00
</confgroup>
</biblioentry>
1998-03-01 09:16:16 +01:00
<biblioentry id="ston87b">
2001-11-09 00:34:33 +01:00
<biblioset relation="article">
<title><ulink url="https://dsf.berkeley.edu/papers/ERL-M87-06.pdf">The
design of the <productname>POSTGRES</productname> storage
system</ulink></title>
1999-02-13 04:38:46 +01:00
<authorgroup>
<author>
<firstname>M.</firstname>
<surname>Stonebraker</surname>
</author>
</authorgroup>
2001-11-09 00:34:33 +01:00
</biblioset>
1999-02-13 04:38:46 +01:00
<confgroup>
2001-11-09 00:34:33 +01:00
<conftitle>VLDB Conference</conftitle>
1999-02-13 04:38:46 +01:00
<confdates>Sept. 1987</confdates>
2001-11-09 00:34:33 +01:00
<address>Brighton, England</address>
1999-02-13 04:38:46 +01:00
</confgroup>
</biblioentry>
1998-03-01 09:16:16 +01:00
<biblioentry id="ston89">
2001-11-09 00:34:33 +01:00
<biblioset relation="article">
<title><ulink url="https://dsf.berkeley.edu/papers/ERL-M89-82.pdf">A
commentary on the <productname>POSTGRES</productname> rules
system</ulink></title>
1999-02-13 04:38:46 +01:00
<authorgroup>
<author>
<firstname>M.</firstname>
<surname>Stonebraker</surname>
</author>
<author>
<firstname>M.</firstname>
<surname>Hearst</surname>
</author>
<author>
<firstname>S.</firstname>
<surname>Potamianos</surname>
</author>
</authorgroup>
2001-11-09 00:34:33 +01:00
</biblioset>
<biblioset relation="journal">
<title>SIGMOD Record 18(3)</title>
<date>Sept. 1989</date>
</biblioset>
1999-02-13 04:38:46 +01:00
</biblioentry>
1998-03-01 09:16:16 +01:00
<biblioentry id="ston89b">
2001-11-09 00:34:33 +01:00
<biblioset relation="article">
<title><ulink url="https://dsf.berkeley.edu/papers/ERL-M89-17.pdf">The
case for partial indexes</ulink></title>
1999-02-13 04:38:46 +01:00
<authorgroup>
<author>
<firstname>M.</firstname>
<surname>Stonebraker</surname>
</author>
</authorgroup>
2001-11-09 00:34:33 +01:00
</biblioset>
<biblioset relation="journal">
<title>SIGMOD Record 18(4)</title>
<date>Dec. 1989</date>
2019-10-25 20:23:44 +02:00
<pagenums>4&ndash;11</pagenums>
2001-11-09 00:34:33 +01:00
</biblioset>
1999-02-13 04:38:46 +01:00
</biblioentry>
<biblioentry id="ston90a">
2001-11-09 00:34:33 +01:00
<biblioset relation="article">
<title><ulink url="https://dsf.berkeley.edu/papers/ERL-M90-34.pdf">The
implementation of <productname>POSTGRES</productname></ulink></title>
1999-02-13 04:38:46 +01:00
<authorgroup>
<author>
<firstname>M.</firstname>
<surname>Stonebraker</surname>
</author>
<author>
<firstname>L. A.</firstname>
<surname>Rowe</surname>
</author>
<author>
<firstname>M.</firstname>
<surname>Hirohama</surname>
</author>
</authorgroup>
2001-11-09 00:34:33 +01:00
</biblioset>
<biblioset relation="journal">
<title>Transactions on Knowledge and Data Engineering 2(1)</title>
<publisher>
<publishername>IEEE</publishername>
</publisher>
<date>March 1990</date>
</biblioset>
1999-02-13 04:38:46 +01:00
</biblioentry>
1998-03-01 09:16:16 +01:00
<biblioentry id="ston90b">
2001-11-09 00:34:33 +01:00
<biblioset relation="article">
<title><ulink url="https://dsf.berkeley.edu/papers/ERL-M90-36.pdf">On
Rules, Procedures, Caching and Views in Database Systems</ulink></title>
1999-02-13 04:38:46 +01:00
<authorgroup>
<author>
<firstname>M.</firstname>
<surname>Stonebraker</surname>
</author>
<author>
<firstname>A.</firstname>
<surname>Jhingran</surname>
</author>
<author>
<firstname>J.</firstname>
<surname>Goh</surname>
</author>
<author>
<firstname>S.</firstname>
<surname>Potamianos</surname>
1999-02-13 04:38:46 +01:00
</author>
</authorgroup>
2001-11-09 00:34:33 +01:00
</biblioset>
1999-02-13 04:38:46 +01:00
<confgroup>
2001-11-09 00:34:33 +01:00
<conftitle>ACM-SIGMOD Conference on Management of Data</conftitle>
1999-02-13 04:38:46 +01:00
<confdates>June 1990</confdates>
</confgroup>
</biblioentry>
</bibliodiv>
</bibliography>