<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>

<title>OpenLink Virtuoso (Product Blog)</title><link>http://www.openlinksw.com:443/blog/vdb/blog/</link><description>A great place to track Virtuoso&#39;s rapid evolution.</description><managingEditor>kidehen@openlinksw.com</managingEditor><pubDate>Tue, 10 Mar 2026 01:33:16 GMT</pubDate><generator>Virtuoso Universal Server 08.03.3334</generator><webMaster>kidehen@openlinksw.com</webMaster><image><title>OpenLink Virtuoso (Product Blog)</title><url>http://www.openlinksw.com:443/weblog/public/images/vbloglogo.gif</url><link>http://www.openlinksw.com:443/blog/vdb/blog/</link><description>A great place to track Virtuoso&#39;s rapid evolution.</description><width>88</width><height>31</height></image>
<item><title>Virtuoso 7 Release

</title><guid>http://www.openlinksw.com:443/blog/vdb/blog/?date=2013-05-13#1729</guid><comments>http://www.openlinksw.com:443/blog/vdb/blog/?id=1729#comments</comments><pubDate>Mon, 13 May 2013 16:06:02 GMT</pubDate><description>&lt;p&gt;The quest of &lt;a href=&quot;http://www.openlinksw.com/&quot; id=&quot;link-id0x7f51106137d8&quot;&gt;OpenLink Software&lt;/a&gt; is to bring flexibility, efficiency, and expressive power to people working with data. For the past several years, this has been focused on making graph data models viable for the enterprise. Flexibility in schema evolution is a central aspect of this, as is the ability to share identifiers across different information systems, i.e., giving things URIs instead of synthetic keys that are not interpretable outside of a particular application.&lt;/p&gt;

&lt;p&gt;With &lt;a href=&quot;http://virtuoso.openlinksw.com/news/virtuoso-v7-press-release-20130423&quot; id=&quot;link-id0x7f51d7c4e7a8&quot;&gt;Virtuoso 7&lt;/a&gt;, we dramatically improve the efficiency of all this. With databases in the billions of relations (also known as triples, or 3-tuples), we can fit about 3x as many relations in the same space (disk and RAM) as with Virtuoso 6. Single-threaded query speed is up to 3x better, plus there is intra-query parallelization even in single-server configurations. Graph data workloads are all about random lookups. With these, having data in RAM is all-important. With 3x space efficiency, you can run with 3x more data in the same space before starting to go to disk. In some benchmarks, this can make a 20x gain.&lt;/p&gt;

&lt;p&gt;Also the Virtuoso scale-out support is fundamentally reworked, with much more parallelism and better deployment flexibility.&lt;/p&gt;

&lt;p&gt;So, for graph data, Virtuoso 7 is a major step in the coming of age of the technology. Data keeps growing and time is getting scarcer, so we need more flexibility and more performance at the same time.&lt;/p&gt;

&lt;p&gt;So, let’s talk about how we accomplish this. Column stores have been the trend in relational data warehousing for over a decade. With column stores comes vectored execution, i.e., running any operation on a large number of values at one time. Instead of running one operation on one value, then the next operation on the result, and so forth, you run the first operation on thousands or hundreds-of-thousands of values, then the next one on the results of this, and so on.&lt;/p&gt;

&lt;p&gt;Column-wise storage brings space efficiency, since values in one column of a table tend to be alike -- whether repeating, sorted, within a specific range, or picked from a particular set of possible values. With graph data, where there are no columns as such, the situation is exactly the same -- just substitute the word &lt;i&gt;predicate&lt;/i&gt; for &lt;i&gt;column.&lt;/i&gt; Space efficiency brings speed -- first by keeping more of the data in memory; secondly by having less data travel between CPU and memory. Vectoring makes sure that data that are closely located get accessed in close temporal proximity, hence improving cache utilization. When there is no locality, there are a lot of operations pending at the same time, as things always get done on a set of values instead of on a single value. This is the crux of the science of columns and vectoring.&lt;/p&gt;

&lt;p&gt;Of the prior work in column stores, Virtuoso may most resemble &lt;a href=&quot;http://www.vertica.com/&quot; id=&quot;link-id0x7f51d66bfc88&quot;&gt;Vertica&lt;/a&gt;, well described in &lt;a href=&quot;http://cs-www.cs.yale.edu/homes/dna/&quot; id=&quot;link-id0x7f5110b17b68&quot;&gt;Daniel Abadi&lt;/a&gt;’s famous &lt;a href=&quot;http://dspace.mit.edu/handle/1721.1/43043&quot; id=&quot;link-id0x7f51d68fdfc8&quot;&gt;PhD thesis&lt;/a&gt;. Virtuoso itself is described in &lt;a href=&quot;http://www.informatik.uni-trier.de/~ley/db/journals/debu/index.html&quot; id=&quot;link-id0x7f51d73b8f28&quot;&gt;IEEE Data Engineering Bulletin&lt;/a&gt;, &lt;a href=&quot;http://www.informatik.uni-trier.de/~ley/db/journals/debu/debu35.html&quot; id=&quot;link-id0x7f51c6705998&quot;&gt;March 2012&lt;/a&gt; (&lt;a href=&quot;http://bit.ly/166kEnC&quot; id=&quot;link-id0x7f51f0862d28&quot;&gt;PDF&lt;/a&gt;). The first experiments in column store technology with Virtuoso were in 2009, published at the &lt;a href=&quot;http://semdata.org/events/2010/vldb&quot; id=&quot;link-id0x7f50d10c3508&quot;&gt;SemData workshop&lt;/a&gt; at &lt;a href=&quot;http://www.vldb2010.org/&quot; id=&quot;link-id0x7f51d73fbb98&quot;&gt;VLDB 2010&lt;/a&gt; in Singapore. We tried storing &lt;a href=&quot;http://www.tpc.org/tpch/&quot; id=&quot;link-id0x7f51d5f43b58&quot;&gt;TPC H&lt;/a&gt; as graph data and in relational tables, each with both rows and columns, and found that we could get 6 bytes per quad space utilization with the RDF-ization of TPC H, as opposed to 27 bytes with the row-wise compressed RDF storage model. The row-wise compression itself is 3x more compact than a row-wise representation with no compression.&lt;/p&gt;

&lt;p&gt;Memory is the key to speed, and space efficiency is the key to memory. Performance comes from two factors: locality and parallelism. Both are addressed by column store technology. This made me a convert.&lt;/p&gt;

&lt;p&gt;At this time, we also started the EU FP7 project, &lt;a href=&quot;http://lod2.eu/&quot; id=&quot;link-id0x7f51d53489d8&quot;&gt;LOD2&lt;/a&gt;, most specifically working with &lt;a href=&quot;http://homepages.cwi.nl/~boncz/&quot; id=&quot;link-id0x7f51d5ab9f18&quot;&gt;Peter Boncz&lt;/a&gt; of CWI, the king of the column store, famous for &lt;a href=&quot;http://dbpedia.org/page/MonetDB&quot; id=&quot;link-id0x7f51d5e97078&quot;&gt;MonetDB&lt;/a&gt; and &lt;a href=&quot;http://dbpedia.org/page/Vectorwise&quot; id=&quot;link-id0x7f51d60bfa88&quot;&gt;VectorWise&lt;/a&gt;. This cooperation goes on within LOD2 and has extended to &lt;a href=&quot;http://www.ldbc.eu/&quot; id=&quot;link-id0x7f51d5ccaad8&quot;&gt;LDBC&lt;/a&gt;, an FP7 for designing benchmarks for graph and RDF databases. Peter has given us a world of valuable insight and experience in all aspects of &lt;i&gt;avant garde&lt;/i&gt; database, from adaptive techniques to query optimization and beyond. One thing that was recently published is the &lt;a href=&quot;http://bit.ly/14ULX2F&quot; id=&quot;link-id0x7f51d69a15e8&quot;&gt;results for Virtuoso cluster at CWI&lt;/a&gt;, running analytics on 150 billion relations on CWI’s SciLens cluster.&lt;/p&gt;

&lt;p&gt;The SQL relational table-oriented databases and property graph-oriented databases (Graph for short) are both rooted in relational database science. Graph management simply introduces extra challenges with regards to scalability. Hence, at OpenLink Software, having a good grounding in the best practices of relational columnar (or column-wise) database management technology is vital.&lt;/p&gt;

&lt;p&gt;Virtuoso is more prominently known for high-performance RDF-based graph database technology, but the entirety of its SQL relational data management functionality (which is the foundation for graph store) is vectored, and even allows users to choose between row-wise and column-wise physical layouts, index by index.&lt;/p&gt;

&lt;p&gt;It has been asked: is this a new NoSQL engine? Well, there isn’t really such a thing. There are of course database engines that do not have SQL support and it has become trendy to call them &amp;quot;NoSQL.&amp;quot; So, in this space, Virtuoso is an engine that &lt;i&gt;does&lt;/i&gt; support SQL, plus SPARQL, and is designed to do big joins and aggregation (i.e., analytics) and fast bulk load, as well as ACID transactions on small updates, all with column store space efficiency. It is not only for big scans, as people tend to think about column stores, since it can also be used in compact embedded form.&lt;/p&gt;

&lt;p&gt;Virtuoso also delivers great parallelism and throughput in a scale-out setting, with no restrictions on transactions and no limits on joining. The base is in relational database science, but all the adaptations that RDF and graph workloads need are built-in, with core level support for run-time data-typing, URIs as native Reference types, user-defined custom data types, etc.&lt;/p&gt;

&lt;p&gt;Now that the major milestone of releasing Virtuoso 7 (&lt;a href=&quot;http://virtuoso.openlinksw.com/dataspace/doc/dav/wiki/Main/VOSIndex&quot; id=&quot;link-id0x7f51d6f78e88&quot;&gt;open source&lt;/a&gt; and &lt;a href=&quot;http://virtuoso.openlinksw.com/download/&quot; id=&quot;link-id0x7f5110cf58f8&quot;&gt;commercial editions&lt;/a&gt;) has been reached, the next steps include enabling our current and future customers to attain increased agility from big (linked) open data exploits. Technically, it will also include continued participation in DBMS industry benchmarks, such as those from the &lt;a href=&quot;http://www.tpc.org/&quot; id=&quot;link-id0x7f51d5088008&quot;&gt;TPC&lt;/a&gt;, and others under development via the Linked Data Benchmark Council (LDBC), plus other social-media-oriented challenges that arise in this exciting data access, integration, and management innovation continuum. Thus, continue to expect new optimization tricks to be introduced at frequent intervals through the open source development branch at &lt;a href=&quot;https://github.com/openlink/&quot; id=&quot;link-id0x7f51c4addd18&quot;&gt;GitHub&lt;/a&gt;, between major commercial releases.&lt;/p&gt;

&lt;p&gt;
 &lt;i&gt;&lt;b&gt;Related&lt;/b&gt;
 &lt;/i&gt;
&lt;/p&gt;
&lt;ul&gt;
 &lt;li&gt;
  &lt;a href=&quot;http://bit.ly/17oSWk9&quot; id=&quot;link-id0x7f51f0c46f18&quot;&gt;Column Store Tutorial from Peter Boncz and Daniel Abadi&lt;/a&gt;
 &lt;/li&gt;
&lt;li&gt;
  &lt;a href=&quot;http://slidesha.re/13RzSfq&quot; id=&quot;link-id0x7f511a9f1b98&quot;&gt;NewSQL vs NoSQL session by Prof. Michael Stonebraker&lt;/a&gt;
&lt;/li&gt;
 &lt;li&gt;
  &lt;a href=&quot;http://bit.ly/166kEnC&quot; id=&quot;link-id0x7f51e1d85de8&quot;&gt;Virtuoso 7.0 White Paper by Orri Erling (ACM edition)&lt;/a&gt;
 &lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Developer Opportunities at OpenLink Software
</title><guid>http://www.openlinksw.com:443/blog/vdb/blog/?date=2012-08-07#1717</guid><comments>http://www.openlinksw.com:443/blog/vdb/blog/?id=1717#comments</comments><pubDate>Tue, 07 Aug 2012 17:21:52 GMT</pubDate><description>&lt;p&gt;If it is advanced database technology, you will get to do it with us.&lt;/p&gt;

&lt;p&gt;We are looking for exceptional talent to implement some of the hardest stuff in the industry.  This ranges from new approaches to query optimization; to parallel execution (both scale up and scale out); to elastic cloud deployments and self-managing, self-tuning, fault-tolerant databases.  We are most familiar to the RDF world, but also have full SQL support, and the present work will serve both use cases equally.&lt;/p&gt;

&lt;p&gt;We are best known in the realms of high-performance database connectivity middleware and massively-scalable Linked-Data-oriented graph-model DBMS technology.&lt;/p&gt;

&lt;p&gt;We have the basics -- SQL and SPARQL, column store, vectored execution, cost based optimization, parallel execution (local and cluster), and so forth.  In short, we have everything you would expect from a DBMS.  We do transactions as well as analytics, but the greater challenges at present are on the analytics side.&lt;/p&gt;

&lt;p&gt;You will be working with my team covering:&lt;/p&gt;

&lt;ul&gt;
 &lt;li&gt;
  &lt;p&gt;Adaptive query optimization -- interleaving execution and optimization, so as to always make the correct plan choices based on actual data characteristics&lt;/p&gt;
 &lt;/li&gt;

&lt;li&gt;
  &lt;p&gt;Self-managing cloud deployments for elastic big data -- clusters that can grow themselves and redistribute load, recover from failures, etc.&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
  &lt;p&gt;Developing and analyzing new benchmarks for RDF and graph databases&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
  &lt;p&gt;Embedding complex geospatial reasoning inside the database engine.  We have the basic R-tree and the OGC geometry data types; now we need to go beyond this&lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
  &lt;p&gt;Every type of SQL optimizer and execution engine trick that serves to optimize for TPC-H and DS.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;What do I mean by really good?  It boils down to being a smart and fast programmer.  We have over the years talked to people, including many who have worked on DBMS programming, and found that they actually know next to nothing of database science.  For example, they might not know what a hash join is.  Or they might not know that interprocess latency is in the tens of microseconds even within one box, and that in that time one can do tens of index lookups.  Or they might not know that blocking on a mutex kills.&lt;/p&gt;

&lt;p&gt;If you do core database work, we want you to know how many CPU cache misses you will have in flight at any point of the algorithm, and how many clocks will be spent waiting for them at what points.  Same for distributed execution: The only way a cluster can perform is having max messages with max payload per message in flight at all times.&lt;/p&gt;

&lt;p&gt;These are things that can be learned.  So I do not necessarily expect that you have in-depth experience of these, especially since most developer jobs are concerned with something else.  You may have to unlearn the bad habit of putting interfaces where they do not belong, for example.  Or to learn that if there is an interface, then it must pass as much data as possible in one go.&lt;/p&gt;

&lt;p&gt;Talent is the key.  You need to be a self-starter with a passion for technology and have competitive drive.  These can be found in many guises, so we place very few limits on the rest.  If you show you can learn and code fast, we don&amp;#39;t necessarily care about academic or career histories.  You can be located anywhere in the world, and you can work from home.  There may be some travel but not very much.&lt;/p&gt;

&lt;p&gt;In the context of &lt;a href=&quot;http://lod2.eu/&quot; id=&quot;link-id0x7719ea0&quot;&gt;EU FP7 projects&lt;/a&gt;, we are working with some of the best minds in database, including &lt;a href=&quot;http://homepages.cwi.nl/~boncz/&quot; id=&quot;link-id0x21d67d80&quot;&gt;Peter Boncz&lt;/a&gt; of CWI and VU Amsterdam (MonetDB, VectorWise) and &lt;a href=&quot;http://www.mpi-inf.mpg.de/~neumann/&quot; id=&quot;link-id0x2192d900&quot;&gt;Thomas Neumann&lt;/a&gt; of Technical University of Munich (RDF3X, HYPER).  This is an extra guarantee that you will be working on the most relevant problems in database, informed by the results of the very best work to date.&lt;/p&gt;

&lt;p&gt;For more background, please see the IEEE Computer Society &lt;i&gt;Bulletin of the Technical Committee on Data Engineering,&lt;/i&gt; &lt;a href=&quot;http://sites.computer.org/debull/A12mar/issue1.htm&quot; id=&quot;link-id0x7ca1d20&quot;&gt;Special Issue on Column Store Systems&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;All articles and references therein are relevant for the job.  Be sure to read the CWI work on run time optimization (ROX), cracking, and recycling.   Do not miss the many papers on architecture-conscious, cache-optimized  algorithms; see the VectorWise and MonetDB articles in the bulletin for extensive references.&lt;/p&gt;

&lt;p&gt;If you are interested in an opportunity with us, we will ask you to do a little exercise in multithreaded, performance-critical coding, to be detailed in a blog post in a few days.  If you have done similar work in research or industry, we can substitute the exercise with a suitable sample of this, but only if this is core database code.&lt;/p&gt;

&lt;p&gt;There is a dual message:  The challenges will be the toughest a very tough race can offer.  On the other hand, I do not want to scare you away prematurely.  Nobody knows this stuff, except for the handful of people who actually do core database work.  So we are  not limiting this call to this small crowd and will teach you on the job if you just come with an aptitude to think in algorithms and code fast.  Experience has pros and cons so we do not put formal bounds on this.  &amp;quot;Just out of high school&amp;quot; may be good enough, if you are otherwise exceptional.  Prior work in RDF or semantic web is not a factor.  Sponsorship of your M.Sc. or Ph.D. thesis, if the topic is in our line of work and implementation can be done in our environment, is a further possibility.  Seasoned pros are also welcome and will know the nature of the gig from the reading list.&lt;/p&gt;

&lt;p&gt;We are aiming to fill the position(s) between now and October.&lt;/p&gt;

&lt;p&gt;Resumes and inquiries can be sent to Hugh Williams, &lt;a href=&quot;mailto:hwilliams@openlinksw.com?subject=2012-08%20Virtuoso%20Developer%20Application&quot; id=&quot;link-id0x5dc1ac0&quot;&gt;hwilliams@openlinksw.com&lt;/a&gt;.  We will contact applicants for interviews.&lt;/p&gt;
</description></item><item><title>Virtuoso 6.2 brings New Features!</title><guid>http://www.openlinksw.com:443/blog/vdb/blog/?date=2010-09-22#1638</guid><comments>http://www.openlinksw.com:443/blog/vdb/blog/?id=1638#comments</comments><pubDate>Wed, 22 Sep 2010 21:08:24 GMT</pubDate><description>&lt;p&gt;Virtuoso 6.2 introduces a major number of enhancements to areas including...&lt;/p&gt;
&lt;ul&gt; &lt;li&gt;
  Linked Data Deployment
&lt;/li&gt; 
&lt;li&gt;
  Linked Data Middleware&lt;/li&gt; 
&lt;li&gt;
  Data Virtualization&lt;/li&gt; 
&lt;li&gt;
  Dynamic Data Exchange &amp;amp; Data Replication
&lt;/li&gt; 
&lt;li&gt;
  Security&lt;/li&gt;
&lt;/ul&gt;  

&lt;p&gt; &lt;/p&gt;
&lt;h3&gt;
&lt;a name=&quot;LinkedDataDeployment&quot; id=&quot;LinkedDataDeployment&quot;&gt;&lt;/a&gt; Linked Data Deployment&lt;/h3&gt;
 
&lt;table class=&quot;data&quot; border=&quot;1&quot; cellspacing=&quot;2&quot; cellpadding=&quot;2&quot;&gt;
 &lt;tr&gt;
&lt;th id=&quot;0&quot; width=&quot;15%&quot;&gt;Feature&lt;/th&gt;
&lt;th id=&quot;1&quot; width=&quot;42%&quot;&gt;Description&lt;/th&gt;
&lt;th id=&quot;2&quot;&gt;Benefit&lt;/th&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
  &lt;td align=&quot;center&quot;&gt; &lt;b&gt;Automatic Deployment&lt;/b&gt;  &lt;/td&gt;
  &lt;td&gt; Linked Data Pages are now automatically published for every Virtuoso Data Object; users need only load their data into the RDF Quad Store.   &lt;/td&gt;
  &lt;td&gt; Handcrafted URL-Rewrite Rules are no longer necessary.  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
  &lt;td align=&quot;center&quot;&gt; &lt;b&gt;HTTP Metadata Enhancements&lt;/b&gt;  &lt;/td&gt;
  &lt;td&gt; HTTP &lt;code&gt;Link:&lt;/code&gt; header is used to transfer vital metadata (e.g., relationships between a Descriptor Resource and its Subject) from HTTP Servers to User Agents.  &lt;/td&gt;
  &lt;td&gt; Enables HTTP-oriented tools to work with such relationships and other metadata.  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
  &lt;td align=&quot;center&quot;&gt; &lt;b&gt;HTML Metadata Embedding&lt;/b&gt;  &lt;/td&gt;
  &lt;td&gt; HTML resource &lt;code&gt;&amp;lt;head /&amp;gt;&lt;/code&gt; and &lt;code&gt;&amp;lt;link  /&amp;gt;&lt;/code&gt; elements and their &lt;code&gt;@rel&lt;/code&gt; attributes are used to transfer vital metadata  (e.g., relationships between a Descriptor Resource and its Subject) from HTTP Servers to User Agents.  &lt;/td&gt;
  &lt;td&gt; Enables HTML-oriented tools to work with such relationships and other metadata.  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
  &lt;td align=&quot;center&quot;&gt; &lt;b&gt;Hammer Stack Auto-Discovery Patterns&lt;/b&gt;  &lt;/td&gt;
  &lt;td&gt; HTML resource &lt;code&gt;&amp;lt;head /&amp;gt;&lt;/code&gt; section and &lt;code&gt;&amp;lt;link  /&amp;gt;&lt;/code&gt; elements, the HTTP &lt;code&gt;Link:&lt;/code&gt; header, and XRD-based &lt;code&gt;&amp;quot;host-meta&amp;quot;&lt;/code&gt; resources collectively provide structured metadata about Virtuoso hosts, associated Linked Data Spaces, and specific Data Items (Entities). &lt;/td&gt;
  &lt;td&gt; Enables humans and machines to easily distinguish between Descriptor Resources and their Subjects, irrespective of URI scheme.  &lt;/td&gt;
 &lt;/tr&gt;
&lt;/table&gt;

&lt;h3&gt;
&lt;a name=&quot;LinkedDataMiddleware&quot; id=&quot;LinkedDataMiddleware&quot;&gt;&lt;/a&gt; Linked Data Middleware&lt;/h3&gt;
 
&lt;table class=&quot;data&quot; border=&quot;1&quot; cellspacing=&quot;2&quot; cellpadding=&quot;2&quot;&gt;
&lt;tr&gt;
  &lt;th id=&quot;3&quot; width=&quot;15%&quot;&gt;Feature&lt;/th&gt;
&lt;th id=&quot;4&quot; width=&quot;42%&quot;&gt;Description&lt;/th&gt;
&lt;th id=&quot;5&quot;&gt;Benefit&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td align=&quot;center&quot;&gt; &lt;b&gt;New Sponger Cartridges&lt;/b&gt;  &lt;/td&gt;
  &lt;td&gt; New cartridges (data access and transformation drivers) for Twitter, Facebook, Amazon, eBay, &lt;nop&gt;&lt;/nop&gt;LinkedIn, and others.   &lt;/td&gt;
  &lt;td&gt; Enable users and user agents to deal with the Sponged data spaces as though they were named graphs in a quad store, or tables in an RDBMS.  &lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
  &lt;td align=&quot;center&quot;&gt; &lt;b&gt;New Descriptor Pages&lt;/b&gt;  &lt;/td&gt;
  &lt;td&gt; HTML-based descriptor pages are automatically generated.  &lt;/td&gt;
  &lt;td&gt; Descriptor subjects, and the constellation of navigable attribute-and-value pairs that constitute their descriptive representation, are clearly identified.  &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td align=&quot;center&quot;&gt; &lt;b&gt;Automatic Subject Identifier Generation&lt;/b&gt;  &lt;/td&gt;
  &lt;td&gt; De-referenceable data object identifiers are automatically created.  &lt;/td&gt;
  &lt;td&gt; Removes tedium and risk of error associated with nuance-laced manual construction of identifiers. &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td align=&quot;center&quot;&gt;  &lt;b&gt;Support for OData, JSON, RDFa&lt;/b&gt;  &lt;/td&gt;
  &lt;td&gt; Additional data representation and serialization formats associated with Linked Data.  &lt;/td&gt;
  &lt;td&gt; Increases flexibility and interoperability. &lt;/td&gt;
&lt;/tr&gt;

&lt;/table&gt;
&lt;h3&gt;
&lt;a name=&quot;DataVirtualization&quot; id=&quot;DataVirtualization&quot;&gt;&lt;/a&gt; Data Virtualization&lt;/h3&gt;
 
&lt;table class=&quot;data&quot; border=&quot;1&quot; cellspacing=&quot;2&quot; cellpadding=&quot;2&quot;&gt;
&lt;tr&gt;
  &lt;th id=&quot;6&quot; width=&quot;15%&quot;&gt;Feature&lt;/th&gt;
&lt;th id=&quot;7&quot; width=&quot;42%&quot;&gt;Description&lt;/th&gt;
&lt;th id=&quot;8&quot;&gt;Benefit&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td align=&quot;center&quot;&gt; &lt;b&gt;Materialized RDF Views&lt;/b&gt;  &lt;/td&gt;
  &lt;td&gt; RDF Views over ODBC/JDBC Data Sources can now (optionally) keep the Quad Store in sync with the RDBMS data source.  &lt;/td&gt;
  &lt;td&gt; Enables high-performance Faceted Browsing while remaining sensitive to changes in the RDBMS data sources.  &lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
  &lt;td align=&quot;center&quot;&gt; &lt;b&gt;CSV-to-RDF Transformation&lt;/b&gt;  &lt;/td&gt;
  &lt;td&gt; Wizard-based generation of RDF Linked Data from CSV files.  &lt;/td&gt;
  &lt;td&gt; Speeds deployment of data which may only exist in CSV form as Linked Data.  &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td align=&quot;center&quot;&gt; &lt;b&gt;Transparent Data Access Binding&lt;/b&gt;  &lt;/td&gt;
  &lt;td&gt; SPASQL (SPARQL Query Language integrated into SQL) is usable over ODBC, JDBC, ADO.NET, OLEDB, or XMLA connections.  &lt;/td&gt;
  &lt;td&gt; Enables Desktop Productivity Tools to transparently work with any blend of RDBMS and RDF data sources. &lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;

&lt;h3&gt;
&lt;a name=&quot;DynamicDataExchangeDataReplication&quot; id=&quot;DynamicDataExchangeDataReplication&quot;&gt;&lt;/a&gt; Dynamic Data Exchange &amp;amp; Data Replication&lt;/h3&gt;
 
&lt;table class=&quot;data&quot; border=&quot;1&quot; cellspacing=&quot;2&quot; cellpadding=&quot;2&quot;&gt;
&lt;tr&gt;
  &lt;th id=&quot;9&quot; width=&quot;15%&quot;&gt;Feature&lt;/th&gt;
&lt;th id=&quot;10&quot; width=&quot;42%&quot;&gt;Description&lt;/th&gt;
&lt;th id=&quot;11&quot;&gt;Benefit&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td align=&quot;center&quot;&gt; &lt;b&gt;Quad Store to Quad Store Replication&lt;/b&gt;  &lt;/td&gt;
  &lt;td&gt; High-fidelity graph-data replication between one or more database instances.  &lt;/td&gt;
  &lt;td&gt; Enables a wide variety of deployment topologies.  &lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
  &lt;td align=&quot;center&quot;&gt; &lt;b&gt;Delta Engine&lt;/b&gt;  &lt;/td&gt;
  &lt;td&gt; Automated generation of deltas at the named-graph-level, matches transactional replication offered by the Virtuoso SQL engine.  &lt;/td&gt;
  &lt;td&gt; Brings RDF replication on par with SQL replication. &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td align=&quot;center&quot;&gt;  &lt;b&gt;&lt;nop&gt;&lt;/nop&gt;PubSubHubbub Support&lt;/b&gt;  &lt;/td&gt;
  &lt;td&gt; Deep integration within Quad Store as an optional mechanism for shipping deltas.  &lt;/td&gt;
  &lt;td&gt; Enables push-based data replication across a variety of topologies. &lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;

&lt;h3&gt;
&lt;a name=&quot;Security&quot; id=&quot;Security&quot;&gt;&lt;/a&gt; Security&lt;/h3&gt;
 
&lt;table class=&quot;data&quot; border=&quot;1&quot; cellspacing=&quot;2&quot; cellpadding=&quot;2&quot;&gt;
&lt;tr&gt;
  &lt;th id=&quot;12&quot; width=&quot;15%&quot;&gt;Feature&lt;/th&gt;
&lt;th id=&quot;13&quot; width=&quot;42%&quot;&gt;Description&lt;/th&gt;
&lt;th id=&quot;14&quot;&gt;Benefit&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td align=&quot;center&quot;&gt;  &lt;b&gt;&lt;nop&gt;&lt;/nop&gt;WebID support at the DBMS core&lt;/b&gt;  &lt;/td&gt;
  &lt;td&gt; Use &lt;nop&gt;&lt;/nop&gt;WebID protocol for low-level ACL-based protection of database objects (RDF or Relational) and Web Services.  &lt;/td&gt;
  &lt;td&gt; Enables application of sophisticated security and data access policies to Web Services (e.g., SPARQL endpoint) and actual DBMS objects. &lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
  &lt;td align=&quot;center&quot;&gt; &lt;b&gt;Webfinger&lt;/b&gt;  &lt;/td&gt;
  &lt;td&gt; Supports using &lt;code&gt;mailto:&lt;/code&gt; and &lt;code&gt;acct:&lt;/code&gt; URIs in the context of &lt;nop&gt;&lt;/nop&gt;WebID and other mechanisms, when domain holders have published necessary XRDS resources.  &lt;/td&gt;
  &lt;td&gt; Enables more intuitive identification of people and organizations. &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td align=&quot;center&quot;&gt; &lt;b&gt;Fingerpoint&lt;/b&gt;  &lt;/td&gt;
  &lt;td&gt; Similar to Webfinger but does not require XRDS resources; instea,d it works directly with SPARQL endpoints exposed using auto-discovery patterns in the &lt;code&gt;&amp;lt;head  /&amp;gt;&lt;/code&gt; section of HTML documents.  &lt;/td&gt;
  &lt;td&gt; Enables more intuitive identification of people and organizations. &lt;/td&gt;
&lt;/tr&gt;

&lt;/table&gt;
&lt;p&gt; &lt;/p&gt;
</description></item><item><title>DataSpaces Bulletin: December issue now online!</title><guid>http://www.openlinksw.com:443/blog/vdb/blog/?date=2008-12-09#1493</guid><comments>http://www.openlinksw.com:443/blog/vdb/blog/?id=1493#comments</comments><pubDate>Tue, 09 Dec 2008 18:21:00 GMT</pubDate><description>&lt;p&gt;The highly anticipated &lt;a href=&quot;http://support.openlinksw.com/supportweb/DataSpacesBulletin-2008-12&quot; id=&quot;link-id0x1ec42588&quot;&gt;December 2008 issue of the DataSpaces Bulletin is now available&lt;/a&gt;!&lt;/p&gt;
&lt;p&gt;This month&amp;#39;s DataSpaces contains material of interest to the Virtuoso developer and UDA user community alike —&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Introduction to Virtuoso Universal Server (Cloud Edition).&lt;/li&gt;
&lt;li&gt;Links to Virtuoso and Linked Data mailing lists.&lt;/li&gt;
&lt;li&gt;UDA license management tips and tricks.&lt;/li&gt;
&lt;/ol&gt;</description></item><item><title>IBM Flexes XML Muscle</title><guid>http://www.openlinksw.com:443/blog/vdb/blog/?date=2005-01-04#659</guid><comments>http://www.openlinksw.com:443/blog/vdb/blog/?id=659#comments</comments><pubDate>Tue, 04 Jan 2005 17:19:20 GMT</pubDate><description>&lt;p&gt;Here is another article titled &amp;quot;&lt;a href=&quot;http://www.eweek.com/article2/0,1759,1747224,00.asp?kc=ewnws010305dtx1k0000599&quot;&gt;IBM Flexes XML Muscle&lt;/a&gt;&amp;quot; that covers the same general theme: IBM&amp;#39;s appreciation of Unified Storage.&lt;/p&gt;
&lt;p&gt;As indicated in an earlier &lt;a href=&quot;http://www.openlinksw.com/blog/~kidehen/index.vspx?id=648&quot;&gt;post&lt;/a&gt;: IBM is clearly validating what we have done with Virtuoso (as was the case initially with their Virtual / Federated DBMS initiative ala DB2 Integrator). Here is an excerpt from today&amp;#39;s &lt;a href=&quot;http://www.eweek.com/article2/0,1759,1747224,00.asp?kc=ewnws010305dtx1k0000599&quot;&gt;eWeek article&lt;/a&gt; supporting this position:&lt;/p&gt;
&lt;blockquote dir=&quot;ltr&quot; style=&quot;MARGIN-RIGHT: 0px&quot;&gt;
&lt;p&gt;To achieve maximum XML performance, bolstered indexing attributes in the technology will enable advanced search functions and a higher degree of filtering. IBM is also adding support for XPath and XQuery data models. This will allow users to create views that involve SQL and XQuery by sending the protocol through DB2&amp;#39;s query optimizer for a unified query plan. &lt;/p&gt;
&lt;p&gt;
  &lt;a href=&quot;http://www.eweek.com/article2/0,1759,1747224,00.asp?kc=ewnws010305dtx1k0000599&quot;&gt;Read on..&lt;/a&gt;
&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p dir=&quot;ltr&quot;&gt;
&lt;a href=&quot;http://virtuoso.openlinksw.com/&quot;&gt;Virtuoso&lt;/a&gt; has been doing this since 2000; unfortunately a lot of&lt;/p&gt;</description></item><item><title>What is the platform?</title><guid>http://www.openlinksw.com:443/blog/vdb/blog/?date=2004-10-05#625</guid><comments>http://www.openlinksw.com:443/blog/vdb/blog/?id=625#comments</comments><pubDate>Tue, 05 Oct 2004 16:31:44 GMT</pubDate><description>&lt;p&gt;I came across an interesting piece by Adam Bosworth titled &amp;quot;&lt;a href=&quot;http://www.adambosworth.net/archives/000026.html&quot;&gt;What is the platform?&lt;/a&gt;&amp;quot;&lt;/p&gt;</description></item><item><title>Enterprise Databases get a grip on XML</title><guid>http://www.openlinksw.com:443/blog/vdb/blog/?date=2004-01-06#443</guid><comments>http://www.openlinksw.com:443/blog/vdb/blog/?id=443#comments</comments><pubDate>Tue, 06 Jan 2004 23:17:54 GMT</pubDate><description>&lt;blockquote dir=&quot;ltr&quot; style=&quot;MARGIN-RIGHT: 0px&quot;&gt;
&lt;p&gt;
  &lt;a class=&quot;listLinkLrg&quot; title=&quot;http://newsletter.infoworld.com/t?ctl=4FEDB6:1F3948D&quot; href=&quot;http://newsletter.infoworld.com/t?ctl=4FEDB6:1F3948D&quot; target=&quot;_new&quot;&gt;
   &lt;strong&gt;&lt;font face=&quot;Verdana&quot;&gt;Databases get a grip on XML&lt;/font&gt;
   &lt;/strong&gt;
  &lt;/a&gt;
  &lt;br /&gt;
  &lt;font size=&quot;2&quot;&gt;&lt;/font&gt;&lt;font face=&quot;Verdana&quot;&gt;From &lt;a href=&quot;http://newsletter.infoworld.com/t?ctl=4FEDB6:1F3948D&quot;&gt;Inforworld&lt;/a&gt;.&lt;/font&gt;
  &lt;br /&gt;
  &lt;br /&gt;
  &lt;font face=&quot;Verdana,Geneva,Arial,sans-serif&quot; size=&quot;2&quot;&gt;The next iteration of the SQL standard was supposed to arrive in 2003. But SQL standardization has always been a glacially slow process, so nobody should be surprised that SQL:2003 ? now known as SQL:200n ? isn?t ready yet. Even so, 2003 was a year in which XML-oriented data management, one of the areas addressed by the forthcoming standard, showed up on more and more developers? radar screens. &lt;/font&gt;
&lt;/p&gt;
&lt;/blockquote&gt;</description></item><item><title>Creating RSS Using SQLX</title><guid>http://www.openlinksw.com:443/blog/vdb/blog/?date=2003-11-11#427</guid><comments>http://www.openlinksw.com:443/blog/vdb/blog/?id=427#comments</comments><pubDate>Tue, 11 Nov 2003 23:33:50 GMT</pubDate><description>&lt;p&gt;Here is a &lt;a href=&quot;http://www.openlinksw.com/articles/rssvirtsqlx.htm&quot;&gt;practical example of how to create RSS on the fly from SQL &lt;/a&gt;data sources leveraging Virtuoso 3.2&amp;#39;s SQLX implementation.&lt;/p&gt;
&lt;p&gt;This is further illuminates the content of my &lt;a href=&quot;http://www.openlinksw.com/weblogs/virtuoso/index.vspx?id=426&quot;&gt;earlier post&lt;/a&gt; on this subject.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;</description></item><item><title>XML Development Hindered by Lack of Conformity to Data Connectivity Standards ?</title><guid>http://www.openlinksw.com:443/blog/vdb/blog/?date=2003-11-11#426</guid><comments>http://www.openlinksw.com:443/blog/vdb/blog/?id=426#comments</comments><pubDate>Tue, 11 Nov 2003 23:14:55 GMT</pubDate><description>&lt;p dir=&quot;ltr&quot;&gt;I&amp;#39;ve just read an&lt;/p&gt;</description></item><item><title>Replace and defend -- Contd</title><guid>http://www.openlinksw.com:443/blog/vdb/blog/?date=2003-10-31#409</guid><comments>http://www.openlinksw.com:443/blog/vdb/blog/?id=409#comments</comments><pubDate>Fri, 31 Oct 2003 20:58:18 GMT</pubDate><description>&lt;blockquote dir=&quot;ltr&quot; style=&quot;MARGIN-RIGHT: 0px&quot;&gt;
&lt;p dir=&quot;ltr&quot; style=&quot;MARGIN-RIGHT: 0px&quot;&gt;Reading the Longhorn SDK docs is a disorienting experience. Everything&amp;#39;s familiar but different. Consider these three examples: &lt;/p&gt;
&lt;p dir=&quot;ltr&quot; style=&quot;MARGIN-RIGHT: 0px&quot;&gt;[Full story: &lt;a href=&quot;http://weblog.infoworld.com/udell/2003/10/31.html#a836&quot;&gt;Replace and defend&lt;/a&gt; via &lt;a href=&quot;http://weblog.infoworld.com/udell/&quot;&gt;Jon&amp;#39;s Radio&lt;/a&gt;]&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p dir=&quot;ltr&quot; style=&quot;MARGIN-RIGHT: 0px&quot;&gt;&amp;quot;Replace &amp;amp; Defend&amp;quot; is certainly a strategy that would have awakened the entire non Microsoft Developer world during the recent PDC event. I know these events are all about preaching to the choir (Windows only developers), but as someone who has worked with Microsoft technologies as an ISV since the late 80&amp;#39;s there is something about this events announcements that leave me concerned. &lt;/p&gt;
&lt;p dir=&quot;ltr&quot; style=&quot;MARGIN-RIGHT: 0px&quot;&gt;Ironically these concerns aren&amp;#39;t about the competitive aspects of their technology disruptions, but more along the lines of how&lt;/p&gt;</description></item><item><title>Yukon&#39;s Top 10 Development Features &amp; Virtuoso</title><guid>http://www.openlinksw.com:443/blog/vdb/blog/?date=2003-10-30#408</guid><comments>http://www.openlinksw.com:443/blog/vdb/blog/?id=408#comments</comments><pubDate>Fri, 31 Oct 2003 04:39:26 GMT</pubDate><description>&lt;a href=&quot;http://demo2.usnet.private:8890/?id=1307&quot;&gt;Yukon&amp;#39;s Top 10 Development Features &amp;amp; Virtuoso&lt;/a&gt; 
&lt;p&gt;Yukon&amp;#39;s top 30 features are now available for &lt;a href=&quot;http://www.microsoft.com/sql/yukon/productinfo/top30features.asp&quot;&gt;perusal&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;As I read through the top 10 Developer features I realized that I might as well link each feature to an existing &lt;a href=&quot;http://demo.openlinksw.com:8890/tutorial/&quot;&gt;Live Virtuoso Tutorial/Demo&lt;/a&gt;. Virtuoso and Yukon compete in some realms, but more importantly they espouse a common strategic vision re. &lt;a href=&quot;http://www.openlinksw.com/blog/~kidehen/index.vspx?id=406&quot;&gt;Unified Data Storage and the next Database Technology Frontiers&lt;/a&gt; (basically demonstrating the universality of science). &lt;br /&gt;
&lt;br /&gt;
&lt;/p&gt;
&lt;table class=&quot;tblMatrix&quot; cellspacing=&quot;0&quot; bordercolordark=&quot;#999999&quot; cellpadding=&quot;5&quot; width=&quot;100%&quot; bordercolorlight=&quot;#ffffff&quot; border=&quot;1&quot; frame=&quot;below&quot;&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td class=&quot;tblHeader&quot; valign=&quot;top&quot;&gt;&lt;font size=&quot;2&quot;&gt;Feature&lt;/font&gt;&lt;/td&gt;
&lt;td class=&quot;tblHeader&quot; valign=&quot;top&quot;&gt;&lt;font size=&quot;2&quot;&gt;Description&lt;/font&gt;&lt;/td&gt;
  &lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&quot;tblColOne&quot; valign=&quot;top&quot;&gt;
&lt;p&gt;
     &lt;font size=&quot;2&quot;&gt;&lt;strong&gt;.NET Framework Hosting&lt;/strong&gt;
     &lt;/font&gt;
    &lt;/p&gt;
&lt;p&gt;
     &lt;font size=&quot;2&quot;&gt;&lt;a href=&quot;http://kingsleydemo.openlinksw.com:8890/tutorial/hosting/&quot;&gt;Windows&lt;/a&gt;
      &lt;br /&gt;
      &lt;a href=&quot;http://demo.openlinksw.com:8890/tutorial/hosting/&quot;&gt;Linux&lt;/a&gt;
     &lt;/font&gt;
    &lt;/p&gt;&lt;/td&gt;
&lt;td class=&quot;tblData&quot;&gt;&lt;font size=&quot;2&quot;&gt;With SQL Server &amp;quot;Yukon,&amp;quot; you will be able to create database objects using familiar languages such as Microsoft Visual C#&lt;/font&gt;&lt;/td&gt;
  &lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;</description></item><item><title>Virtuoso Hosting CLR &amp; ASP.NET Demo</title><guid>http://www.openlinksw.com:443/blog/vdb/blog/?date=2003-10-26#403</guid><comments>http://www.openlinksw.com:443/blog/vdb/blog/?id=403#comments</comments><pubDate>Sun, 26 Oct 2003 23:29:19 GMT</pubDate><description>&lt;div class=&quot;Section1&quot;&gt;
&lt;p&gt;
  &lt;font face=&quot;Times New Roman&quot;&gt;
   &lt;span style=&quot;FONT-SIZE: 12pt&quot;&gt;&lt;font size=&quot;2&quot;&gt;I finally have two live servers that demonstrate Virtuoso&lt;/font&gt;
   &lt;/span&gt;
  &lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;</description></item><item><title>HOWTO: Apache-PHP-ODBC on Mac OS X</title><guid>http://www.openlinksw.com:443/blog/vdb/blog/?date=2003-10-24#398</guid><comments>http://www.openlinksw.com:443/blog/vdb/blog/?id=398#comments</comments><pubDate>Fri, 24 Oct 2003 15:39:28 GMT</pubDate><description>&lt;div class=&quot;Section1&quot;&gt;
&lt;p&gt;
  &lt;font face=&quot;Times New Roman&quot;&gt;
   &lt;span style=&quot;FONT-SIZE: 12pt&quot;&gt;&lt;font size=&quot;2&quot;&gt;There is a new &lt;/font&gt;
    &lt;a href=&quot;http://www.iodbc.org/iodbc-phposxHOWTO.html&quot;&gt;&lt;font size=&quot;2&quot;&gt;HOWTO document&lt;/font&gt;
    &lt;/a&gt;&lt;font size=&quot;2&quot;&gt; that addresses an area of frequent confusion on Mac OS X, which is how do you build PHP with an ODBC data access layer binding (&lt;/font&gt;
    &lt;a href=&quot;http://www.iodbc.org/&quot;&gt;&lt;font size=&quot;2&quot;&gt;iODBC&lt;/font&gt;
    &lt;/a&gt;&lt;font size=&quot;2&quot;&gt; variant) using Mac OS X Frameworks as opposed to Darwin Shared Libraries. &lt;/font&gt;
   &lt;/span&gt;
  &lt;/font&gt;
&lt;/p&gt;
&lt;/div&gt;</description></item><item><title>A Virtuoso of a Server</title><guid>http://www.openlinksw.com:443/blog/vdb/blog/?date=2003-10-23#394</guid><comments>http://www.openlinksw.com:443/blog/vdb/blog/?id=394#comments</comments><pubDate>Thu, 23 Oct 2003 21:50:49 GMT</pubDate><description>&lt;font size=&quot;2&quot;&gt;
&lt;p&gt;
&lt;a href=&quot;http://www.nwfusion.com/index.html&quot;&gt;NETWORK WORLD&lt;/a&gt; NEWSLETTER: MARK GIBBS ON WEB APPLICATIONS &lt;/p&gt;
&lt;p&gt;
&lt;font size=&quot;2&quot;&gt;Today&amp;#39;s focus: A Virtuoso of a server&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;By &lt;a href=&quot;http://www.nwfusion.com/columnists/gibbs.html&quot;&gt;Mark Gibbs&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;One of the bigger drags of Web applications development is that building a system of even modest complexity is a lot like herding cats - you need a database, an applications server, an XML engine, etc., etc. And as they all come from different vendors you are faced with solving the constellation of integration issues that inevitably arise.&lt;/p&gt;
&lt;p&gt;If you are lucky, your integration results in a smoothly functioning system. If not, you have a lot of spare parts flying in loose formation with the risk of a crash and burn at any moment.&lt;/p&gt;
&lt;p&gt;An alternative is to look for all of these features and services in a single package but you&amp;#39;ll find few choices in this arena.&lt;/p&gt;
&lt;p&gt;One that is available and looks very promising is OpenLink&amp;#39;s Virtuoso (see links below).&lt;/p&gt;
&lt;p&gt;Virtuoso is described as a cross platform (runs on Windows, all Unix flavors, Linux, and Mac OS X) universal server that provides databases, XML services, a Web application server and supporting services all in a single package.&lt;/p&gt;
&lt;p&gt;OpenLink&amp;#39;s list of supported standards is impressive and includes .Net, Mono, J2EE, XML Web Services (Simple Object Application Protocol, Web Services Description Language, WS-Security, Universal Description, Discovery and Integration), XML, XPath, XQuery, XSL-T, WebDav, HTTP, SMTP, LDAP, POP3, SQL-92, ODBC, JDBC and OLE-DB.&lt;/p&gt;
&lt;p&gt;Virtuoso provides an HTTP-compliant Web Server; native XML document creation, storage and management; a Web services platform for creation, hosting and consumption of Web services; content replication and synchronization services; free text index server, mail delivery and storage and an NNTP server.&lt;/p&gt;
&lt;p&gt;Another interesting feature is that with Virtuoso you can create Web services from existing SQL Stored Procedures, Java classes,&lt;/p&gt;
&lt;p&gt;C++ classes, and &amp;#39;C&amp;#39; functions as well as create dynamic XML&lt;/p&gt;
&lt;p&gt;documents from ODBC and JDBC data sources.&lt;/p&gt;
&lt;p&gt;This is an enormous product and implies a serious commitment on the part of adopters due to its scope and range of services.&lt;/p&gt;
&lt;p&gt;Surprisingly given the scale of the product its price seems very reasonable starting at $5,000.&lt;/p&gt;
&lt;p&gt;RELATED EDITORIAL LINKS&lt;/p&gt;
&lt;p&gt;OpenLink Software&lt;/p&gt;
&lt;p&gt;
  &lt;a href=&quot;http://www.openlinksw.com/&quot;&gt;
   &lt;u&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;http://www.openlinksw.com/&lt;/font&gt;
   &lt;/u&gt;
  &lt;/a&gt;
&lt;/p&gt;
 &lt;font size=&quot;2&quot;&gt;
&lt;p&gt;OpenLink Virtuoso&lt;/p&gt;
&lt;p&gt;
   &lt;a href=&quot;http://www.openlinksw.com/virtuoso/&quot;&gt;
    &lt;u&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;http://www.openlinksw.com/virtuoso/&lt;/font&gt;
    &lt;/u&gt;
   &lt;/a&gt;
&lt;/p&gt;
  &lt;font size=&quot;2&quot;&gt;
&lt;p&gt;Vituoso pricing&lt;/p&gt;
&lt;p&gt;
    &lt;a href=&quot;http://www.openlinksw.com/virtuoso/sales/vpricing2.htm&quot;&gt;
     &lt;u&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;http://www.openlinksw.com/virtuoso/sales/vpricing2.htm&lt;/font&gt;
     &lt;/u&gt;
    &lt;/a&gt;
&lt;/p&gt;
  &lt;/font&gt;
 &lt;/font&gt;
&lt;/font&gt;</description></item>
</channel>
</rss>
