OpenLink Virtuoso is an innovative platform that intertwines open standards for Data Access, Integration, and Management with the transformative potential of AI & GenAI.

Employing Hyperlinks as powerful data source names functioning as Super Keys, it breaks down data silos, thereby unleashing transformative data interaction flexibility for both individuals and enterprises.

Virtuoso Benefits

Use Cases

What is a Multi-Model Database?

A Multi-Model Relational Database Management System operates on Entity Relationship Types that are represented conceptually as Relations and visually as Tables or Graphs.

Query and store data using

SQL

SELECT   CUSTOMER, 
X.INTEREST
FROM "COMPANY".."CUSTOMER"
LEFT JOIN "COMPANY".."INTEREST" AS X
ON X.CUSTOMER = CUSTOMER;

SPARQL

SELECT  ?customer
?interest
FROM <http://www.example.com/customers>
WHERE {
?customer foaf:interest ?interest.
};

SPASQL (SPARQL-Within-SQL)

SELECT  X.customer AS "CUSTOMER",
X.interest AS "INTEREST"
FROM (
SPARQL
SELECT ?customer ?interest
FROM <http://www.example.com/customers>
WHERE {
?customer foaf:interest ?interest
}
) AS X;

Customer Snapshot

s

Frequently Asked Questions