[Virtuoso-users] [SPAM] Fw: new message

2016-04-25 Thread peter.lawrence
Hello! You have a new message, please read peter.lawre...@inova8.com -- Find and fix application performance issues faster with Applications Manager Applications Manag

Re: [Virtuoso-users] Custom aggregate function in Virtuoso

2016-04-25 Thread Rumi
Hi Albert, On 12-Apr-16 8:21 PM, Albert Meroño Peñuela wrote: Hi all, I'm trying to implement a custom aggregate function in Virtuoso. Following the examples at [1] I've written something silly of the style CREATE PROCEDURE DB.DBA.MyAggregate (IN X NUMERIC) { declare m numeric; m := m +

Re: [Virtuoso-users] Subqueries in different graphs, performance problem

2016-04-25 Thread Jerven Tjalling Bolleman
As another virtuoso user. Can't you make a simpler query without a subselect? SELECT ?a FROM NAMED { GRAPH { ?c d ?e . BIND(REPLACE(STR(?e), "f", "", "i") AS ?g) BIND(REPLACE(STR(?c), "f", "", "i") AS ?a) FILTER (?g = STR(?h)) . }

[Virtuoso-users] Custom aggregate function in Virtuoso

2016-04-25 Thread Albert Meroño Peñuela
Hi all, I'm trying to implement a custom aggregate function in Virtuoso. Following the examples at [1] I've written something silly of the style CREATE PROCEDURE DB.DBA.MyAggregate (IN X NUMERIC) { declare m numeric; m := m + X; return m; }; With the intention of accumulating all bindings