Report
Charts
Crosstab
Responses
SQL Query
Explore the Data Yourself
Charts are linked to SPARQL and SPASQL queries executed against a live Virtuoso Multi-Model Database instance.
Primary Productivity Bottlenecks SPARQL SPASQL
View Queries
SPARQL
SPASQL
PREFIX : <https://gemini.google.com/share/e37d9615f322#>
PREFIX schema: <http://schema.org/>
SELECT ?bottleneck (COUNT(?s) AS ?countx) (SAMPLE(?s) AS ?sampleEntry)
WHERE {
?s a schema:SurveyResponse ;
:biggestbottleneck ?bottleneck .
}
GROUP BY ?bottleneck
ORDER BY DESC(?countx)
LIMIT 10
AI Adoption Status SPARQL SPASQL
View Queries
SPARQL
SPASQL
PREFIX : <https://gemini.google.com/share/e37d9615f322#>
PREFIX schema: <http://schema.org/>
SELECT ?status (COUNT(?s) AS ?countx) (SAMPLE(?s) AS ?sampleEntry)
WHERE {
?s :aiadoption ?status .
}
GROUP BY ?status
Orchestration Tools SPARQL SPASQL
View Queries
SPARQL
SPASQL
PREFIX schema: <http://schema.org/>
PREFIX : <https://gemini.google.com/share/e37d9615f322#>
PREFIX schema: <http://schema.org/>
SELECT ?tool (COUNT(?s) AS ?countx) (SAMPLE(?s) AS ?sampleEntry)
WHERE {
?s :orchestration ?tool .
}
GROUP BY ?tool
ORDER BY DESC(?countx)
LIMIT 10
Storage Strategies SPARQL SPASQL
View Queries
SPARQL
SPASQL
PREFIX schema: <http://schema.org/>
PREFIX : <https://gemini.google.com/share/e37d9615f322#>
PREFIX schema: <http://schema.org/>
SELECT ?storage (COUNT(?s) AS ?countx) (SAMPLE(?s) AS ?sampleEntry)
WHERE {
?s :storageenvironment ?storage .
}
GROUP BY ?storage
ORDER BY DESC(?countx)
2026 Growth Outlook SPARQL SPASQL
View Queries
SPARQL
SPASQL
PREFIX : <https://gemini.google.com/share/e37d9615f322#>
PREFIX schema: <http://schema.org/>
SELECT ?growth (COUNT(?s) AS ?countx) (SAMPLE(?s) AS ?sampleEntry)
WHERE {
?s :teamgrowth2026 ?growth .
}
GROUP BY ?growth
State of Data Modeling SPARQL SPASQL
View Queries
SPARQL
SPASQL
PREFIX schema: <http://schema.org/>
PREFIX schema: <http://schema.org/>
PREFIX : <https://gemini.google.com/share/e37d9615f322#>
PREFIX schema: <http://schema.org/>
SELECT ?approach (COUNT(?s) AS ?countx) (SAMPLE(?s) AS ?sampleEntry)
WHERE {
?s :modelingapproach ?approach .
}
GROUP BY ?approach
Desired Education Topics SPARQL SPASQL
View Queries
SPARQL
SPASQL
PREFIX : <https://gemini.google.com/share/e37d9615f322#>
PREFIX schema: <http://schema.org/>
SELECT ?topic (COUNT(?s) AS ?countx) (SAMPLE(?s) AS ?sampleEntry)
WHERE {
?s :educationtopic ?topic .
}
GROUP BY ?topic
ORDER BY DESC(?countx)
Charts
Same queries as the Report tab, updated with active filters.