<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Kellblog &#187; XML server</title>
	<atom:link href="http://kellblog.com/category/xml-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://kellblog.com</link>
	<description>The official blog of Dave Kellogg</description>
	<lastBuildDate>Tue, 01 May 2012 01:07:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='kellblog.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/8ecfcffdb3cd0948a0c38207c0ca38d6?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Kellblog &#187; XML server</title>
		<link>http://kellblog.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://kellblog.com/osd.xml" title="Kellblog" />
	<atom:link rel='hub' href='http://kellblog.com/?pushpress=hub'/>
		<item>
		<title>Classifying Database Management Systems:  Regular and NoSQL</title>
		<link>http://kellblog.com/2010/03/31/classifying-database-management-systems-regular-and-nosql/</link>
		<comments>http://kellblog.com/2010/03/31/classifying-database-management-systems-regular-and-nosql/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 16:02:28 +0000</pubDate>
		<dc:creator>Dave Kellogg</dc:creator>
				<category><![CDATA[Database management system]]></category>
		<category><![CDATA[NoSQL]]></category>
		<category><![CDATA[RDBMS]]></category>
		<category><![CDATA[relational database]]></category>
		<category><![CDATA[XML database]]></category>
		<category><![CDATA[XML server]]></category>

		<guid isPermaLink="false">http://www.kellblog.com/?p=4686</guid>
		<description><![CDATA[Thanks to two major trends &#8212; DBMS specialization and the NoSQL movement &#8212; the database management systems space is generating more interest and more innovation than any time I can remember since the 1980s.  Ever since around 1990, when the &#8230; <a href="http://kellblog.com/2010/03/31/classifying-database-management-systems-regular-and-nosql/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kellblog.com&#038;blog=11070789&#038;post=4686&#038;subd=davidkellogg&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Thanks to two major trends &#8212; <a href="http://www.kellblog.com/2010/02/24/the-database-tea-party-the-nosql-movement/">DBMS specialization</a> and the <a href="http://en.wikipedia.org/wiki/NoSQL">NoSQL movement</a> &#8212; the database management systems space is generating more interest and more innovation than any time I can remember since the 1980s.  Ever since around 1990, when the relational database management system (RDBMS) became firmly established, IT has played <a href="http://en.wikipedia.org/wiki/Chatroulette">DBMSroulette</a>:  spin the wheel and use the DBMS on which the needle lands &#8212; Oracle, DB2, or SQL Server.  (If you think this trivializes things, not so fast:  a friend who was the lead DBMS analyst at a major analyst firm once quipped to me that this wheel-spinning was his job, circa 1995.)</p>
<p>Obviously, there was always some rational basis for DBMS selection &#8212; IBM shops tended to pick DB2, best-of-breed buyers liked Oracle, performance whizzes and finance types often picked Sybase, and frugal shoppers would choose SQL Server, and later MySQL &#8212; but there was no differentiation in the model.  All these choices were <em>relational </em>database management systems.</p>
<p>Over time, our minds became dulled to orthogonal dimensions of database differentiation:</p>
<ul>
<li>The database model.  For years, we lived in the database equivalent world of Henry Ford&#8217;s <a href="http://www.digitalsignage.com/blog/2009/08/03/you-can-have-any-color-you-want-as-long-as-its-black/">Model T</a>:  any model you want as long as it&#8217;s relational.</li>
<li>The potential for trade-offs in fundamental database-ness.  We became binary and religious about what it meant be a database management system and that attitude blinded us to some fundamental trade-offs that some users might want to make &#8212; e.g., trading consistency for scalability, or trading <a href="http://en.wikipedia.org/wiki/ACID">ACID</a> transactions for <a href="http://en.wikipedia.org/wiki/Eventual_consistency">BASE</a>.</li>
</ul>
<p>The latter is the domain of <a href="http://en.wikipedia.org/wiki/CAP_theorem">Brewer&#8217;s CAP theorem</a> which I will not discuss today.  The former, the database model, will be the subject of this post.</p>
<p>Every DBMS has some native modeling element (NME). For example, in an RDBMS that NME is the relation (or table).  Typically that NME is used to store everything in the DBMS.  For example, in an RDBMS:</p>
<ul>
<li>User data is stored in tables.</li>
<li>Indexes are implemented as tables which are joined back to the base tables.</li>
<li>Administration information is stored in tables.</li>
<li>Security is usually handled through tables  and joins.</li>
<li>Unusual data types (e.g., XML) are stored in &#8220;odd columns&#8221; in tables.  (If your only model&#8217;s a table, every problem looks like a column.)</li>
</ul>
<p>In general, the more naturally the data you&#8217;re storing maps to the paradigm (or NME) of the database, the better things will work.  For example, you can model XML documents as tables and store them in an RDBMS, or you can model tables in XML and store them as XML documents, but those approaches will tend to be more difficult to implement and less efficient to process than simply storing tables in an RDBMS and XML documents in an XML server (e.g., <a href="http://www.marklogic.com/product/marklogic-server.html">MarkLogic</a>).</p>
<p>The question is not whether you <strong>can </strong>model documents as tables or tables as documents.  The answer is almost always yes.  Thus, the better question is <strong>should </strong>you?  The most famous example of this type of modeling problem is the storage of hierarchical data in an RDBMS.  To quote this article on <a href="http://dev.mysql.com/tech-resources/articles/hierarchical-data.html">managing hierarchical data in MySQL</a>:</p>
<blockquote>
<p style="text-align:left;">Most users at one time or another have dealt with hierarchical data in a  SQL database and no doubt learned that the management of hierarchical  data is not what a relational database is intended for.</p>
</blockquote>
<p>(Personally, I blame<a href="http://www.kellblog.com/2005/08/30/lessons-from-winfs/"> the failure of Microsoft&#8217;s WinFS</a> on this root problem &#8212; file systems are inherently hierarchical &#8212; but that&#8217;s  a story for a different day.)</p>
<p>I believe the best way to classify DBMSs is by their native modeling element.</p>
<ul>
<li>In hierarchical databases, the NME is the <strong>hierarchy</strong>.  Example:  <a href="http://en.wikipedia.org/wiki/Information_Management_System">IMS</a>.</li>
<li>In network databases, it&#8217;s the (directed, acyclic) <strong>graph. </strong>Example:  <a href="http://en.wikipedia.org/wiki/IDMS">IDMS</a>.</li>
<li>In relational databases, it&#8217;s the <strong>relation </strong>(or, table).  Example:  <a href="http://www.oracle.com">Oracle</a>.</li>
<li>In object databases, it&#8217;s the (typically C++) object <strong>class. </strong>Example:  <a href="http://www.versant.com">Versant</a>.<strong><br />
</strong></li>
<li>In multi-dimensional databases, it&#8217;s the <strong>hypercube. </strong>Example:  <a href="http://en.wikipedia.org/wiki/Essbase">Essbase</a>.<strong><br />
</strong></li>
<li>In document databases, it&#8217;s the <strong>document. </strong>Example:  <a href="http://en.wikipedia.org/wiki/Couchdb">CouchDB</a>.<strong><br />
</strong></li>
<li>In key/value stores, it&#8217;s the <strong>key/value pair. </strong> Example:  <a href="http://en.wikipedia.org/wiki/Redis_%28data_store%29">Redis</a>.<strong><br />
</strong></li>
<li>In XML databases, it&#8217;s the <strong>XML document. </strong>Example:  <a href="http://www.marklogic.com/product/marklogic-server.html">MarkLogic</a>.</li>
</ul>
<p>The biggest limitation of this approach is that classifying by model fails to capture implementation differences. Some examples:</p>
<ul>
<li>I would classify columnar DBMSs (e.g., <a href="http://www.vertica.com">Vertica</a>) as relational if they model data as tables, and key/value stores (e.g., <a href="http://hadoop.apache.org/hbase/">Hbase</a>) as such if they model data in key/value pairs.  This fails to capture the performance advantage that Vertica gets on certain data warehousing problems due to its column orientation.</li>
</ul>
<ul>
<li>I would classify all relational databases as relational, despite implementation optimizations.  For example, this approach fails to capture <a href="http://www.teradata.com">Teradata&#8217;s</a> optimizations for large-scale data warehousing, <a href="http://www.asterdata.com">Aster&#8217;s</a> optimizations for analytics on big data, or <a href="http://www.voltdb.com">Volt&#8217;s</a> optimizations for what Curt Monash calls <a href="http://blogs.the451group.com/information_management/tag/hvsp/">HVSP</a>.</li>
</ul>
<ul>
<li>I would classify all XML databases as XML databases, despite possible optimization differences for the two basic XML use-cases:  (1) XML as message wrapper vs. (2) XML as document markup.</li>
</ul>
<p>Nevertheless, I believe that DBMSs should be classified first by model and then sub-classified by implementation optimization.  For example, a relational database optimized for big data analytics (<a href="http://www.asterd">Aster</a>).  An XML database optimized for large amounts of semi-structured information marked in XML (<a href="http://www.marklogic.">MarkLogic</a>).</p>
<p>In closing, I&#8217;d say that we are seeing increasing numbers of customers coming to Mark Logic saying:  &#8220;well, I suppose we could have modeled this data relationally, but in our business we think of this information as documents and we&#8217;ve decided that it&#8217;s easier and more natural to manage it that way, so we decided to give you a call.&#8221;</p>
<p>After thinking about this for some time, I have one response:  keep calling!</p>
<p>No matter how you want to think about MarkLogic Server &#8212; an XML server, an XML database, or an XML document database &#8212; dare I say an [XML] [document] server|database  &#8212; it&#8217;s definitely a document-oriented, XML-oriented database management system and a great place to put any information that you think is more naturally modeled as documents.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/davidkellogg.wordpress.com/4686/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/davidkellogg.wordpress.com/4686/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/davidkellogg.wordpress.com/4686/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/davidkellogg.wordpress.com/4686/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/davidkellogg.wordpress.com/4686/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/davidkellogg.wordpress.com/4686/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/davidkellogg.wordpress.com/4686/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/davidkellogg.wordpress.com/4686/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/davidkellogg.wordpress.com/4686/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/davidkellogg.wordpress.com/4686/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/davidkellogg.wordpress.com/4686/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/davidkellogg.wordpress.com/4686/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/davidkellogg.wordpress.com/4686/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/davidkellogg.wordpress.com/4686/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kellblog.com&#038;blog=11070789&#038;post=4686&#038;subd=davidkellogg&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kellblog.com/2010/03/31/classifying-database-management-systems-regular-and-nosql/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Dave Kellogg</media:title>
		</media:content>
	</item>
		<item>
		<title>Positioning MarkLogic Server</title>
		<link>http://kellblog.com/2008/11/21/positioning-marklogic-server/</link>
		<comments>http://kellblog.com/2008/11/21/positioning-marklogic-server/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 21:43:00 +0000</pubDate>
		<dc:creator>Dave Kellogg</dc:creator>
				<category><![CDATA[Database management system]]></category>
		<category><![CDATA[Query language]]></category>
		<category><![CDATA[relational database]]></category>
		<category><![CDATA[XML server]]></category>

		<guid isPermaLink="false">http://test.kellblog.com/2008/11/21/positioning-marklogic-server/</guid>
		<description><![CDATA[Here&#8217;s a great picture from our VP of engineering, Ron Avnur, on how he positions MarkLogic Server relative to other software categories. It&#8217;s an elegant and simple way of explaining where we fit. The two dimensions are structure and query &#8230; <a href="http://kellblog.com/2008/11/21/positioning-marklogic-server/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kellblog.com&#038;blog=11070789&#038;post=4300&#038;subd=davidkellogg&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a great picture from our VP of engineering, Ron Avnur, on how he positions MarkLogic Server relative to other software categories.  It&#8217;s an elegant and simple way of explaining where we fit.</p>
<p>The two dimensions are structure and query type.  Structure can either be predefined or ad hoc (and often, in the document world, there is a predefined structure that no one actually uses, which is <span style="font-style:italic;">de facto ad hoc</span>).  Query types can either be predefined (i.e., known in advance) or ad hoc (i.e., not known in advance).</p>
<p>Let&#8217;s look at the quadrants that result:</p>
<ul>
<li>Bottom left is where both structure and queries and predefined.  <a href="http://en.wikipedia.org/wiki/Hierarchical_database">Hierarchical </a><a class="zem_slink" title="Database management system" rel="wikipedia" href="http://en.wikipedia.org/wiki/Hierarchical_database">DBMSs</a>, like <a href="http://en.wikipedia.org/wiki/Information_Management_System">IMS</a>, live in this quadrant.  In these (now legacy) systems, the structure of the data is rigidly defined as are the queries that may be run against them.  These databases provide high performance, but their inflexibility became their Achilles&#8217; heel.</li>
</ul>
<ul>
<li>Bottom right is where structure is predefined but queries are ad hoc.  The quadrant defines the <a class="zem_slink" title="Relational database" rel="wikipedia" href="http://en.wikipedia.org/wiki/Relational_database">relational database</a>, which brought unprecedented flexibility to database querying, eventually enabling the modern <a href="http://en.wikipedia.org/wiki/Business_intelligence">BI</a> market.  Data structure is predefined through the creation of tables with defined names/columns to hold the data.  Queries are ad hoc &#8212; in a well designed relational database, the system can provide the results for almost any imaginable query.  (And with the right indexes, it can provide those results fairly quickly.)</li>
</ul>
<ul>
<li>Top left is where queries are predefined but structure is not.  This &#8212; and this is non-obvious to most people &#8212; is the zone of the enterprise search engine.  People tend to think of search engines as providing high flexiblity because you can type any word in the search box.  In reality, seen from a database viewpoint, search engines provide a small number of parametrized queries.  (It&#8217;s the parametrization that gives the impression of flexibility.)  The small number of queries include (1) return list of documents where document contains word or phrase, (2) return list of documents where field-in-document contains word or phrase, (3) either query (1) or (2) where word or phrase is replaced with the search engine&#8217;s basically Boolean primitive query language (i.e., AND, OR, NOT).</li>
</ul>
<ul>
<li>The top right is the tricky zone where both queries and structure are not defined in advance.  This is the zone of the XML Server, like MarkLogic.  In these systems, content can be ingested &#8220;as is&#8221; without adherence to any predefined structure.  Queries are ad hoc, and written in XQuery with full-text extensions.  Given the proper indexes, these systems can run virtually any query against the content with high performance.</li>
</ul>
<p>Hopefully this sheds some light on my soundbite that:  &#8220;at Mark Logic, we are doing for (XML) documents what the relational database did for data.&#8221;<a href="http://davidkellogg.files.wordpress.com/2010/09/quad.jpg"><img class="aligncenter size-full wp-image-6822" title="MarkLogic Server Quad" src="http://davidkellogg.files.wordpress.com/2010/09/quad.jpg?w=500" alt=""   /></a></p>
<fieldset>
<legend>Related articles by Zemanta</legend>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://arnoldit.com/wordpress/2008/10/07/marklogic-40-a-next-generation-content-system/">MarkLogic 4.0: A Next-Generation Content System</a></li>
</ul>
</fieldset>
<div class="zemanta-pixie" style="margin-top:10px;height:15px;"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/69fc5b51-1df4-49ce-ae86-7aec90d2be56/"><img class="zemanta-pixie-img" style="border:medium none;float:right;" src="http://img.zemanta.com/reblog_e.png?x-id=69fc5b51-1df4-49ce-ae86-7aec90d2be56" alt="Reblog this post [with Zemanta]" /></a></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/davidkellogg.wordpress.com/4300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/davidkellogg.wordpress.com/4300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/davidkellogg.wordpress.com/4300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/davidkellogg.wordpress.com/4300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/davidkellogg.wordpress.com/4300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/davidkellogg.wordpress.com/4300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/davidkellogg.wordpress.com/4300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/davidkellogg.wordpress.com/4300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/davidkellogg.wordpress.com/4300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/davidkellogg.wordpress.com/4300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/davidkellogg.wordpress.com/4300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/davidkellogg.wordpress.com/4300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/davidkellogg.wordpress.com/4300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/davidkellogg.wordpress.com/4300/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kellblog.com&#038;blog=11070789&#038;post=4300&#038;subd=davidkellogg&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kellblog.com/2008/11/21/positioning-marklogic-server/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Dave Kellogg</media:title>
		</media:content>

		<media:content url="http://davidkellogg.files.wordpress.com/2010/09/quad.jpg" medium="image">
			<media:title type="html">MarkLogic Server Quad</media:title>
		</media:content>

		<media:content url="http://img.zemanta.com/reblog_e.png?x-id=69fc5b51-1df4-49ce-ae86-7aec90d2be56" medium="image">
			<media:title type="html">Reblog this post [with Zemanta]</media:title>
		</media:content>
	</item>
		<item>
		<title>Mark Logic in EContent Magazine Dynamic Navigation Story</title>
		<link>http://kellblog.com/2008/11/12/mark-logic-in-econtent-magazine-dynamic-navigation-story/</link>
		<comments>http://kellblog.com/2008/11/12/mark-logic-in-econtent-magazine-dynamic-navigation-story/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 20:38:00 +0000</pubDate>
		<dc:creator>Dave Kellogg</dc:creator>
				<category><![CDATA[content applications]]></category>
		<category><![CDATA[content architecture]]></category>
		<category><![CDATA[content delivery]]></category>
		<category><![CDATA[Information and Media]]></category>
		<category><![CDATA[XML server]]></category>

		<guid isPermaLink="false">http://test.kellblog.com/2008/11/12/mark-logic-in-econtent-magazine-dynamic-navigation-story/</guid>
		<description><![CDATA[A rather overdue post to highlight that Mark Logic was featured a few months back in an EContent Magazine story entitled Reaping Information: Dynamic Navigation Helps Users (PDF). Excerpts: Delivering information in ways that make the most sense to users &#8230; <a href="http://kellblog.com/2008/11/12/mark-logic-in-econtent-magazine-dynamic-navigation-story/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kellblog.com&#038;blog=11070789&#038;post=4291&#038;subd=davidkellogg&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A rather overdue post to highlight that Mark Logic was featured a few months back in an <a href="http://www.econtentmag.com/">EContent Magazine</a> story entitled <a href="http://www.marklogic.com/press/EContent-reaping-information-dynamic-navigation.pdf">Reaping Information:  Dynamic Navigation Helps Users</a> (PDF).</p>
<p>Excerpts:<br />
<blockquote>Delivering information in ways that make the most sense to users is a key characteristic of <a href="http://www.marklogic.com/product/marklogic-server.html">MarkLogic Server</a>, an XML Server that allows users to store, manage, manipulate, and deliver information</p></blockquote>
<p>Indeed, a key use-case for MarkLogic is as an information delivery platform.  More:<br />
<blockquote>Media company <a href="http://www.alm.com/alm.asp">ALM</a> uses MarkLogic Server for its enterprise content repository, which holds more than 2 decades worth of news and analysis for and about the legal market.</p></blockquote>
<p><a href="http://www.incisivemedia.com/corporate/news/79">ALM was acquired by Incisive Media</a> a while back but nevertheless remains a customer.  More:<br />
<blockquote>Oxford University Press has organized its reference works on African-Americans into a central repository it calls the <a href="http://www.oxfordaasc.com/public/">African American Studies Center</a> (AASC), which allows researchers the ability to search through images and articles, arranging them in chronological order.</p></blockquote>
<p>AASC is not only a very cool MarkLogic-based application, but also &#8212; perhaps more importantly &#8212; it&#8217;s just one slice of Oxford&#8217;s content.</p>
<p>Once a publisher builds their content application platform, it is relatively easy to take different slices of their content to build new and different information products. For example, <a href="http://www.oxfordislamicstudies.com/">Oxford Islamic Studies Online</a> (OISO)  is built on the same platform as the AASC, and I&#8217;m sure the OISO&#8217;s marginal development cost was reduced because it could leverage the fixed costs invested the development of OUP&#8217;s (MarkLogic-based) publishing platform.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/davidkellogg.wordpress.com/4291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/davidkellogg.wordpress.com/4291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/davidkellogg.wordpress.com/4291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/davidkellogg.wordpress.com/4291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/davidkellogg.wordpress.com/4291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/davidkellogg.wordpress.com/4291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/davidkellogg.wordpress.com/4291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/davidkellogg.wordpress.com/4291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/davidkellogg.wordpress.com/4291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/davidkellogg.wordpress.com/4291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/davidkellogg.wordpress.com/4291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/davidkellogg.wordpress.com/4291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/davidkellogg.wordpress.com/4291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/davidkellogg.wordpress.com/4291/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kellblog.com&#038;blog=11070789&#038;post=4291&#038;subd=davidkellogg&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kellblog.com/2008/11/12/mark-logic-in-econtent-magazine-dynamic-navigation-story/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Dave Kellogg</media:title>
		</media:content>
	</item>
	</channel>
</rss>
