Re: [Virtuoso-users] ISQL Result Dump format

2016-06-13 Thread Rumi
truct {...} from <> where {}" > XX.ttl 2) trim the first 9 lines so to have as content only the triples: tail -n +9 XX.ttl > XX_new.ttl Best Regards, Rumi Best Regards, Rumi On 13-Jun-16 9:50 AM, S.M.Shamimul Hasan wrote: Hello, I am running following quer

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] (no subject)

2015-03-12 Thread Rumi
out etc) but I am doing something wrong of is this some limitation? If someone has an entirely different way to accomplish exactly the same: by my guest to show me! Did you try changing the type to any i.e.: DECLARE col any; Best

Re: [Virtuoso-users] vhost_define vsp_user and real user

2015-02-06 Thread Rumi
Hi Gang Fu, On 06-Feb-15 4:29 PM, Gang Fu wrote: > Hi Rumi, > > I totally understand your point. My quesiton is about the 'vsp_user' > or called 'vsp_host' used to expose the sparql endpoint. Our system > security team has concern about the 'vsp_user

Re: [Virtuoso-users] vhost_define vsp_user and real user

2015-02-05 Thread Rumi
Hi Gang Fu, On 05-Feb-15 3:03 PM, Gang Fu wrote: Hi Rumi, Using vhost_define() through isql we can achieve the same thing: DB.DBA.VHOST_DEFINE ( lhost=>, vhost=>, lpath=>'/sparql', ppath=>'/!sparql/', is_dav=>1, vsp_user=>'dba&

Re: [Virtuoso-users] vhost_define vsp_user and real user

2015-02-04 Thread Rumi
Hi Gang Fu, On 04-Feb-15 2:22 AM, Gang Fu wrote: Hi Rumi, I have tried to expose a password-protected sparql endpoint, actually it can be done using vhost_define() function as well, just add sec=>'digest' and authentication function. But the vsp_user to expose a password-pro

Re: [Virtuoso-users] vhost_define vsp_user and real user

2015-02-03 Thread Rumi
Hi Gang Fu, On 03-Feb-15 3:47 PM, Gang Fu wrote: Hi Rumi, I looked at the source code of libsrc/Wi/sparql_io.sql for procedure WS.WS <http://WS.WS>."/!sparql/": create procedure WS.WS."/!sparql/"(inout pathvarchar, inout params any, inout lines any) I am no

Re: [Virtuoso-users] vhost_define vsp_user and real user

2015-02-03 Thread Rumi
'SPARQLUserId', 'SOME_USER_NAME'); What you could try is to grant more roles to the user if needed, such as: SPARQL_LOAD_SERVICE_DATA or SPARQL_UPDATE, by granting directly to the user or, better, to SPARQL_SELECT, since the endpoint page will requir

Re: [Virtuoso-users] Documentation for "Strict checking of void variables"

2014-11-24 Thread Rumi
WHERE { <http://localhost:8000/11> <http://our_namespace/something_different/> ?s } } to : | |{ ?s ?p ?v . <http://localhost:8000/11> <http://our_namespace/something_different/> ?s . }| then I get no error

Re: [Virtuoso-users] FED works via isql but it does not via http

2014-10-17 Thread Rumi
ive results: http://linkeddata.uriburner.com/c/9DN77N2S What Virtuoso product are you using -- Open Source / Commercial and also what is its build version? Links: 1. http://linkeddata.uriburner.com/sparql -- URIBurner instance. Best Regards, Rumi Kocis HTTP SPARQL QUERY: http://rdf.d

Re: [Virtuoso-users] Transaction aborted because it's log after image size went above the limit

2014-09-05 Thread Rumi
Hi Núria, On 05-Sep-14 2:50 PM, Nuria Queralt Rosinach wrote: Hi Rumi, I did it again following your indications. Now, the message that come up with the original query: CL033: Connect failed to localhost: = localhost:. From where are you trying to execute the sparql statement

Re: [Virtuoso-users] Transaction aborted because it's log after image size went above the limit

2014-09-05 Thread Rumi
you. Best Regards, Rumi Kocis On 05-Sep-14 9:38 AM, Nuria Queralt Rosinach wrote: Hi Rumi, I did what you suggested querying from our sparql endpoint. Our server did not understand the 'DEFINE' keyword: Virtuoso 37000 Error SP030: SPARQL compiler, line 17: syntax error at 'DEFIN

Re: [Virtuoso-users] Transaction aborted because it's log after image size went above the limit

2014-09-04 Thread Rumi
EFINE sql:log-enable 3 2) Execute the query. 3) Send us the query and the log output Best Regards, Rumi Kocis Cheers, n -- Núria Queralt Rosinach Research Programme on Biomedical Informatics (GRIB) Department of Experimenta

Re: [Virtuoso-users] 'Too many arguments' error

2014-08-28 Thread Rumi
|| ... and so on ... || (?id = The error comes from the compiler's limitations .. Does it make difference if you use instead this: FILTER( ?id IN(, ...)) i.e. do you get again (the same) error or this works for you? Best Regards, Rumi Kocis I find this error message

Re: [Virtuoso-users] 'Too many arguments' error

2014-08-26 Thread Rumi
tting back to my old question, I have another question :-) Am I right if I say that using an expression like ?id IN(1,2,3) is a Virtuoso-specific extension to the SPARQL standard? It is indeed part of the SPARQL 1.1 Specification: -- http://www.w3.org/TR/sparql11-query/#func-in Best Regards, R

Re: [Virtuoso-users] Trouble writing a query filter

2014-07-25 Thread Rumi
data triples you are trying to query since it is internal mediawiki etc. Best Regards, Rumi Kocis Sent from my iPhone On Jul 25, 2014, at 2:39 PM, "Rumi" wrote: Hi Phillip, On 25-Jul-14 4:00 PM, Legault, Phillip [ITSUS] wrote: I'm trying to write a query filter, to fi

Re: [Virtuoso-users] Trouble writing a query filter

2014-07-25 Thread Rumi
Time(str(?start_date)) <= xsd:dateTime( str(bif:now () ) )) ; Best Regards, Rumi Kocis This works with the first part with ?support_status =Obsolete, however I'm stuck trying to figure out the second part. Any help is greatly appreciated. PREFIX rdfs:<http://www.w3.org/2000/01/rdf-sch

Re: [Virtuoso-users] dump_nquads

2014-07-02 Thread Rumi
, Rumi Thanks, Tim Lebo [1] http://virtuoso.openlinksw.com/dataspace/doc/dav/wiki/Main/VirtRDFDumpNQuad -- Open source business process management suite built on Java and Eclipse Turn processes into business applications

Re: [Virtuoso-users] Create sparql view with composite Primary Keys

2014-07-02 Thread Rumi
ew is replaced by the optimizer into a sub-query that is made from the body of the view. If a view refers to other views, the process is repeated. The result is an execution plan that refers solely to database tables and table function. Best Regards, Rumi Kocis Re

Re: [Virtuoso-users] Efficient querying to large graphs

2014-06-27 Thread Rumi
Regards, Rumi Kocis Best, Núria smime.p7s Description: S/MIME Cryptographic Signature -- Open source business process management suite built on Java and Eclipse Turn processes into business applications with Bonita BPM

Re: [Virtuoso-users] Optional clause location in SPAQRL

2014-06-26 Thread Rumi
0 both of which result in same total of 1839 and in both of which the position in OPTIONAL is different. Best Regards, Rumi Kocis Thank you, Olga Medvedeva. -- Open source business process management suite built on

Re: [Virtuoso-users] "Stack Overflow in cost model" error

2014-06-25 Thread Rumi
it indeed a bug ? Or am I doing something wrong ? Do you see a workaround ? Thanks a lot ! I've been able to reproduce the issue and we are looking into the cause of the error. Will report back .. Best Regards, Rumi Kocis Olivier Dalang --- Digital Humanities Lab (DHLAB) - http://dhlab.

Re: [Virtuoso-users] bif:contains behavior

2014-06-20 Thread Rumi
} LIMIT 10 -- Live demo results -- http://bit.ly/1lGrciT Doc links: -- http://docs.openlinksw.com/virtuoso/fn_starts_with.html -- http://docs.openlinksw.com/virtuoso/fn_locate.html -- http://docs.openlinksw.com/virtuoso/fn_strstr.html Best Regards, Rumi Kocis However, I have a query that has ?searchterm

Re: [Virtuoso-users] What does "not support OPTION (...) clause for triples so SPARQL query can not be composed" mean?

2014-05-30 Thread Rumi
Hi Andra, On 30-May-14 10:35 AM, Andra Waagmeester wrote: Hi Rumi, That seems odd to me, because the same query on , that means that the SERVICE parts of the query changes gives results. I would expect that if the sparql endpoint at the EBI does not support the OPTION CLAUSE that

Re: [Virtuoso-users] What does "not support OPTION (...) clause for triples so SPARQL query can not be composed" mean?

2014-05-28 Thread Rumi
clause. Basically, you should be able to use the following command to interrogate a target SPARQL endpoint (if initial SPARQL-FED fails): SPARQL LOAD SERVICE <{SPARQL-END-POINT-URL}> DATA So in your case: LOAD SERVICE <https://www.ebi.ac.uk/fgpt/atlasrdf/sparql> DATA ; Best Regards,

Re: [Virtuoso-users] Function db.dba.ttlp does not save XML datatype

2014-02-19 Thread Rumi
gt; "Enrico Daga"^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral> .', '', 'TTLPTEST') ; which results in: enridaga http://property/name "Enrico Daga" Note that in a week or so development team will add fixes re. XMLLiteral in RDF, so

Re: [Virtuoso-users] Function db.dba.ttlp does not save XML datatype

2014-02-18 Thread Rumi
-ns#XMLLiteral'' .', '', 'TTLPTEST') ; then "sparql select * from where {?s ?p ?o}" Conductor returns for me: enridaga http://property/name "Enrico Daga"^^http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral Note that &

Re: [Virtuoso-users] Error using UNION of two transitive queries.

2014-01-24 Thread Rumi
when it is available ... Best Regards, Rumi Kocis DBPedialink: http://dbpedia.org/sparql?default-graph-uri=http%3A%2F%2Fdbpedia.org&query=select+distinct+%3FG+%3FS+%3FP+%3FO+Datatype%28%3FO%29+as+%3FObjectType%0D%0Awhere+{+%0D%0A+{%0D%0A%3Fanchor+%3FanchorPred+%3FS%0D%0AOPTION+%28+TRANSITIV

Re: [Virtuoso-users] Problems with INSERT via SPARQL endpoint

2014-01-14 Thread Rumi
ksw.com/virtuoso/rdfsparql.html#sparqloauthendpointauth Best Regards, Rumi Kocis Best regards, Núria -- Núria Queralt Rosinach Research Programme on Biomedical Informatics (GRIB) Department of Experimental and Health S

Re: [Virtuoso-users] Group by in ASK queries error

2014-01-06 Thread Rumi
Hi Dimitris, On 03-Jan-14 1:49 PM, Dimitris Kontokostas wrote: Hi Rumi, I know about the inner select but by checking the sparql grammar [1] and validator [2] my query looks valid Yes. The query syntax is correct. A report is sent to development to fix. Will let you know when it is

Re: [Virtuoso-users] Group by in ASK queries error

2014-01-03 Thread Rumi
uery: -- http://bit.ly/1g5mqqm Best Regards, Rumi Kocis Best, Dimitris -- Kontokostas Dimitris -- Rapidly troubleshoot problems before they affect your business. Most IT organizations don't have a clear pictur

Re: [Virtuoso-users] Strange behaviour Virtuoso when estimating execution time

2013-12-17 Thread Rumi
ease let us know if that worked for you. Best Regards, Rumi Kocis #SPARQL query: PREFIX sioc: <http://rdfs.org/sioc/ns#> PREFIX sysont: <http://ns.ontowiki.net/SysOnt/> PREFIX ns2: <http://data.cbg.nl/a2a#> PREFIX xml: <http://www.w3.org/XML/1998/namespace> PREFIX ns1: &l

Re: [Virtuoso-users] Unable to drop graph from isql-vt

2013-12-06 Thread Rumi
used as a constant graph of some quad map. What you need to do is to drop first the mapping, and then drop the graph. Best Regards, Rumi Kocis 2013/12/6 Rumi : Hi Alex, On 03-Dec-13 2:59 PM, Alex Bondo Andersen wrote: Hi, Some graphs I cannot drop from the isql-vt interface using &quo

Re: [Virtuoso-users] Unable to drop graph from isql-vt

2013-12-06 Thread Rumi
tensions.html#rdfsparulexamples2 Best Regards, Rumi However I can easily drop it from the webpage interface under Linked Data -> Graphs, where it is showing up. Is there any way to be "more insistent" that the graph is dropped through isql-vt? I should mention that the graph is b

Re: [Virtuoso-users] Issue with ResultSetMaxRows property

2013-12-04 Thread Rumi
a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place> . OPTIONAL { ?v0 <http://dbpedia.org/ontology/wikiPageRedirects> ?a . } } ORDER BY ?a } } OFFSET 1 LIMIT 1000 Result set against dbpedi

Re: [Virtuoso-users] Parallel WebDAV uploads fail

2013-03-21 Thread Rumi
Hello Harald, On 21-Mar-13 10:39 AM, Harald Beck wrote: Hi Rumi, thanks for the hint. Btw, do I need to restart the server in order for these changes in the virtuoso.ini to become active? (I remember that DirsAllowed auto refresh, what about the buffer count?) In most cases on a change of

Re: [Virtuoso-users] Parallel WebDAV uploads fail

2013-03-20 Thread Rumi
ffers = 50 MaxDirtyBuffers = 40 Note that these values are approximate depending on the RAM of your machine has etc. Best Regards, Rumi (Since I don't how many 'hundreds of thousands' exactly are, I omitted this option.) ERROR LOG 2: 12:50:50 INFO: Checkpo

Re: [Virtuoso-users] LDAP Authentication pull-down menu in LDAP Import

2013-03-13 Thread Rumi
Hello Shinichi, On 13-Mar-13 5:30 PM, Rumi wrote: Hello Shinichi, On 13-Mar-13 4:54 PM, Shinichi Kai wrote: Hello Rumi, Thank you for your assistance. I have double checked my settings and copy-pasted "SQL_ENCRYPTION_ON_PASSWORD = 1" into my virtuoso.ini. However, it did not w

Re: [Virtuoso-users] LDAP Authentication pull-down menu in LDAP Import

2013-03-13 Thread Rumi
Hello Shinichi, On 13-Mar-13 4:54 PM, Shinichi Kai wrote: Hello Rumi, Thank you for your assistance. I have double checked my settings and copy-pasted "SQL_ENCRYPTION_ON_PASSWORD = 1" into my virtuoso.ini. However, it did not work for me. And, I already use LDAP V3. I believe the

Re: [Virtuoso-users] changing descripton.vsp default visualisation

2013-03-13 Thread Rumi
Hello Nuno, On 13-Mar-13 10:45 AM, Rumi wrote: Hello Nuno, On 13-Mar-13 10:36 AM, Nuno Lopes wrote: Hello Rumi, Thanks for the info, can you point me to some T&C page? Since the data we are using is supplied by another institution I've been asked to replace the logo. Would ha

Re: [Virtuoso-users] changing descripton.vsp default visualisation

2013-03-13 Thread Rumi
Hello Nuno, On 13-Mar-13 10:36 AM, Nuno Lopes wrote: Hello Rumi, Thanks for the info, can you point me to some T&C page? Since the data we are using is supplied by another institution I've been asked to replace the logo. Would having more logos (keeping openlink and adding anoth

Re: [Virtuoso-users] LDAP Authentication pull-down menu in LDAP Import

2013-03-13 Thread Rumi
Hello Shinichi , On 13-Mar-13 5:33 AM, Shinichi Kai wrote: Hello Rumi, I followed the steps you provided, but I still get "Bad login" error. Are there other settings to make the LDAP feature work? I performed following steps: 1) Set SQL_ENCRYPTION_ON_PASSWORD in the [Client]

Re: [Virtuoso-users] changing descripton.vsp default visualisation

2013-03-12 Thread Rumi
Hello Nuno, On 12-Mar-13 11:13 PM, Nuno Lopes wrote: Hello Rumi, Thanks for the info. Should have been more clear, sorry. I was hoping to replace the openlink logo or somehow change the default look we get from 'about/html/http/..', similar to: http://demo.openlinksw.com

Re: [Virtuoso-users] Virtuoso 6.16 and possible encoding weirdness?

2013-03-12 Thread Rumi
e an example of the SPARQL Query so we can test in-house to see this issue ? Best Regards, Rumi -- Quentin | Clear Blue Water Pty Ltd quent...@clearbluewater.com.au <mailto:quent...@clearbluewater.com.au> ---

Re: [Virtuoso-users] changing descripton.vsp default visualisation

2013-03-12 Thread Rumi
xisting code in ~/DAV/VAD/fct/.. but this would require to have additional permissions etc., so probably easiest will be to make changes in the source and then re-build. Btw. what changes re. logo do you want to apply? Best Regards, Rumi

Re: [Virtuoso-users] LDAP Authentication pull-down menu in LDAP Import

2013-03-12 Thread Rumi
Hello Shinichi, On 12-Mar-13 3:15 PM, Shinichi Kai wrote: Hello Rumi, I set LDAP Authentication "enabled" on an imported user and tried to log in to Virtuoso with isql. However, I got "CL034: Bad login" error and Virtuoso did not make any LDAP requests to the LDAP serve

Re: [Virtuoso-users] LDAP Authentication pull-down menu in LDAP Import

2013-03-11 Thread Rumi
Hello Kai, On 11-Mar-13 3:32 PM, Shinichi Kai wrote: Hello Rumi, Thank you for your prompt reply. for ex. if "enabled", user will be able to perform LDAP Authentication etc. How do I perform LDAP Authentication during login to Virtuoso (e.g. isql or sparql-auth endpoint, etc.)?

Re: [Virtuoso-users] LDAP Authentication pull-down menu in LDAP Import

2013-03-10 Thread Rumi
for ex. if "enabled", user will be able to perform LDAP Authentication etc. Best Regards, Rumi Regards, Shinichi -- Symantec Endpoint Protection 12 positioned as A LEADER in The Forrester Wave(TM): Endpoint Security,

Re: [Virtuoso-users] Escape double quotes in entity name

2013-01-24 Thread Rumi Tsekova
tly escape double quotes? Thanks. Please try this variant: SELECT * FROM WHERE { {`iri('http://yago-knowledge.org/resource/H._L._"Hub"_Hollis_Field')` ?a ?b} } Best Regards, Rumi Kocis > > > Yizhen >

Re: [Virtuoso-users] Virtuoso Construct Query - Creating URI problem

2013-01-10 Thread Rumi Tsekova
) <http://com.galaksiya.muse/event#will_send_to> ?user WHERE { ?feedback <http://seagent.ege.edu.tr/feedback#time> ?time. ?feedback <http://seagent.ege.edu.tr/feedback#has_user> ?user. } } } Best Regard

Re: [Virtuoso-users] dbg_printf does not print to console

2012-11-22 Thread Rumi Tsekova
older\virtuoso.ini" pause goto start - Just tried on Win7 with the bat from above and I can see the following output on the server console after calling your procedure: Start function Value:4 Best Regards, Rumi - Original Message - From: Mirko Madon To

Re: [Virtuoso-users] bif vs regex, not getting the same results

2012-07-27 Thread Rumi Tsekova
test.com/doc1#thisidentifier 1 http://test.com/doc11#this identifier 11 2 Rows. -- 15 msec. # Get all ?o containing the char "1" using LIKE SQL> SPARQL PREFIX dcterms: <http://purl.org/dc/terms/> SELECT DISTINCT * FROM WHERE { ?doc dcterms:identifier ?id . FILTER( ?id LIKE '%1%' ) . } ; doc id VARCHAR VARCHAR ___ http://test.com/doc1#this identifier 1 http://test.com/doc11#thisidentifier 11 2 Rows. -- 16 msec. Best Regards, Rumi > > Cheers, > > LJ > > >

Re: [Virtuoso-users] Again Internal error: 'output:valmode' declarationconflicts with 'output:format'

2012-06-28 Thread Rumi Tsekova
the format that I should define in order to work? Could someone help > me on this? Thanks. The syntax of something ( as per your example ) should be correct so not to get SPARQL error i.e. should be on of the followng: , :something , some:thing , something: and if the needed namespace prefixes etc. Best Regards, Rumi

Re: [Virtuoso-users] MD5 function

2012-06-25 Thread Rumi Tsekova
Hi Lorena, Hi Rumi It works with the bif prefix. Here is the output of virtuoso-t I'm working on Ubuntu 10.10 so I have built it from the sources several months ago. regards Lorena lorena@lorena-virtual-machine:~$ virtuoso-t -? Virtuoso Open Source Edition (multi threaded) Ve

Re: [Virtuoso-users] MD5 function

2012-06-25 Thread Rumi Tsekova
Hi Lorena, Could you send us the output of: virtuoso-t -? It seems you are having Virtuoso version that does not support the SPARQL 1.1 function extensions. What about if you try with bif:MD5 ? So for ex: SELECT bif:MD5 ('test') WHERE { ?s ?p ?o } LIMIT 10 Best Reg

Re: [Virtuoso-users] MD5 function

2012-06-25 Thread Rumi Tsekova
LIMIT 10 However I noticed your query from above is missing one white space after ('test'). What if you try the query like this: SELECT MD5 ('test') WHERE { ?s ?p ?o } LIMIT 10 Please let us know if that worked for you. Best Regards, Rumi thanks in advance Lore

Re: [Virtuoso-users] Virtuoso Docs Chapter 16

2012-06-25 Thread Rumi Tsekova
Hi Jürgen, Thanks lot for sending the file content! It is reflected in our doc and should be live soon. Best Regards, Rumi - Original Message - From: "Jürgen Jakobitsch" To: Sent: Monday, June 25, 2012 2:21 PM Subject: [Virtuoso-users] Virtuoso Docs Chapter 16

Re: [Virtuoso-users] Conductor not loaded

2012-06-05 Thread Rumi Tsekova
.00.8025 2012-05-21 15:10 2012-05-22 15:26 3 Rows. -- 0 msec. Best Regards, Rumi Adrian -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape ha

Re: [Virtuoso-users] Transaction aborted because it's log after imagesize went above the limit

2012-05-18 Thread Rumi Tsekova
upinterval Best Regards, Rumi - Original Message - From: Alex To: virtuoso-users@lists.sourceforge.net Sent: Friday, May 18, 2012 9:56 AM Subject: [Virtuoso-users] Transaction aborted because it's log after imagesize went above the limit Hello to everyone,

Re: [Virtuoso-users] SQ074: Line 1: SP031: SPARQL: Internal error

2012-05-11 Thread Rumi Tsekova
parql-results#> . [] rdf:type rs:results ; rs:boolean TRUE . No. of rows in result: 1 False is returned when the subject is found. Best Regards, Rumi Hi, I am getting the following error with virtuoso 6.1.5: SQ074: Line 1: SP031: SPARQL: Internal error: 'output:valmode' declaration c

Re: [Virtuoso-users] demo queries - fct

2012-03-14 Thread Rumi Tsekova
Hello Houda, You can take a look at http://virtuoso.openlinksw.com/dataspace/dav/wiki/Main/VirtFCTFeatureQueries and specifically for adding your own queries the "SPARQL Queries" section should give light for this etc. Best Regards, Rumi - Original Message - From: Ho

Re: [Virtuoso-users] Delete a tripple with space in subject

2011-12-13 Thread Rumi Tsekova
<http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://isbsg.org/ontology/data/Dataset> . FILTER regex(?s, 'Capers Jones') } ; Best Regards, Rumi - Original Message - From: Sachit Malhotra To: virtuoso-users@lists.sourceforge.net Sent: Tuesday, Decembe

Re: [Virtuoso-users] Problems securing SPARQL Enpoint

2011-12-06 Thread Rumi Tsekova
nd what are the properties for your user (user type, account roles, etc.) probably a screenshot will be best here. Best Regards, Rumi - Original Message - From: Peter Secomb To: virtuoso-users@lists.sourceforge.net Sent: Tuesday, December 06, 2011 2:09 AM Subject: [Virtuoso-

Re: [Virtuoso-users] What does the '-f' do in the command ...

2011-09-24 Thread Rumi Tsekova
Hi Herman, virtuoso-t +command list shows all supported commands. Hope this helps. btw, -f is for foreground. Best Regards, Rumi - Original Message - From: Herman A. Junge To: virtuoso-users@lists.sourceforge.net Sent: Saturday, September 24, 2011 4:52 PM Subject

Re: [Virtuoso-users] SPARQL Query using "SERVICE"

2011-06-20 Thread Rumi Tsekova
Hi Boris, Executing the following statement should fix the problem: GRANT EXECUTE on DB.DBA.SPARQL_SINV to SPARQL_SELECT; Best Regards, Rumi - Original Message - From: Boris Villazón Terrazas To: Virtuoso Users Sent: Monday, June 20, 2011 1:25 PM Subject: [Virtuoso-users

Re: [Virtuoso-users] Dump arbitrary query result as N-Triples

2011-03-02 Thread Rumi Tsekova
line uses exec with SPARQL query. Hope this helps. Best Regards, Rumi - Original Message - From: CStadler To: virtuoso-users@lists.sourceforge.net Sent: Tuesday, March 01, 2011 8:40 PM Subject: [Virtuoso-users] Dump arbitrary query result as N-Triples Hi, So far I h

Re: [Virtuoso-users] loading big file in virtuoso

2011-03-01 Thread Rumi Tsekova
rs) or link to http://docs.openlinksw.com/virtuoso/databaseadmsrv.html#VIRTINI Links for the Scale: http://docs.openlinksw.com/virtuoso/ptune.html http://www.openlinksw.com/dataspace/dav/wiki/Main/VirtConfigScale Additional changes to doc will be applied in order the examples and description

Re: [Virtuoso-users] Searching for dates with bif:contains?

2011-02-07 Thread Rumi Tsekova
e date range. See example at http://virtuoso.openlinksw.com/dataspace/dav/wiki/Main/VirtTipsAndTricksGuideDataRangeQueries Hope this helps, Best Regards, Rumi Hi! Is there any way to search for numbers using bif:contains? regex takes too long: SELECT DISTINCT ?s ?date FROM <http://dbpe

Re: [Virtuoso-users] Strange behavior of MODIFY query

2011-01-04 Thread Rumi Tsekova
Aleksandr, Another example with no WHERE clause: http://docs.openlinksw.com/virtuoso/sparqlextensions.html#rdfsparulexamples13 Best Regards, Rumi Hi Aleksandr, Using MODIFY graph in SPARQL as per below is actually performing UPDATE operation. i.e. you need to specify WHERE clause. See

Re: [Virtuoso-users] Strange behavior of MODIFY query

2011-01-04 Thread Rumi Tsekova
, Rumi С уважением, Александр Зарипов zari...@tpu.ru От: Aleksandr A. Zaripov Отправлено: 22 декабря 2010 г. 23:22 Кому: virtuoso-de...@lists.sourceforge.net Тема: Strange behavior of MODIFY query Hello. I am running VOS 6.01.3127 and have strange

Re: [Virtuoso-users] select into file

2010-12-07 Thread Rumi Tsekova
Hi Mirko, You can use the following syntax: isql user pass exec="select ..." > file.xx Best Regards, Rumi - Original Message - From: Mirko To: Virtuoso Users Sent: Tuesday, December 07, 2010 3:26 PM Subject: [Virtuoso-users] select into file Hi all, ho

Re: [Virtuoso-users] Generating a unique ID via SPARQL HTTP

2010-11-22 Thread Rumi Tsekova
Hi Aldo, Here are some links of calling (bif) functions in SPARQL queries: 1. http://virtuoso.openlinksw.com/presentations/SPARQL_Tutorials/SPARQL_Tutorials_Part_2/SPARQL_Tutorials_Part_2.html 2. http://docs.openlinksw.com/virtuoso/rdfsparql.html#rdfsqlfromsparql Best Regards, Rumi Thanks

Re: [Virtuoso-users] Cannot do pulk upload 2nd time - it crashes

2010-11-18 Thread Rumi Tsekova
Hi Jamshaid, This error means Virtuoso Server is down. Please ensure it is started. If the error appears again, you might see on Virtuoso Server Console what other errors are printed out. ( i.e. ensure initially you have started the server in debug console). Best Regards, Rumi - Original

Re: [Virtuoso-users] Where to change the DBA password?

2010-08-09 Thread Rumi Tsekova
the shown list user "dba" and click "Edit" from the very right column. 5. Change the pwd as desired. Best Regards, Rumi - Original Message - From: Matthew Tedder To: virtuoso-users@lists.sourceforge.net Sent: Monday, August 09, 2010 7:53 PM Subject: [Virtuoso

Re: [Virtuoso-users] ISQL query to completely empty a Virtuoso server

2010-07-28 Thread Rumi Tsekova
for each of them execute: sparql clear graph Best Regards, Rumi Hi, Is there a Virtuoso query to remove all triples from a Virtuoso Server? Those triples are in multiple graphs. I know I can delete a graph with the sparql query "delete from graph ..." but when faced with thousan

Re: [Virtuoso-users] how to modify sparql endpoint page

2010-07-13 Thread Rumi Tsekova
/dataspace/owiki/wiki/OATWikiWeb/InteractiveSparqlQueryBuilder 2. iSPARQL tutorials: http://wikis.openlinksw.com/dataspace/owiki/wiki/OATWikiWeb/InteractiveSparqlQueryBuilderTutorials Best Regards, Rumi Hi, I wanna add some sparql cases into the SPARQL endpoint page, once the user click the case

Re: [Virtuoso-users] LDAP Server configuration

2010-07-09 Thread Rumi Tsekova
ul, you should click "Add". The next steps is LDAP Import where you can import various data from your LDAP server. Please let us know if the steps from above worked for you. Best Regards, Rumi With Regards Bart van Leeuwen

Re: [Virtuoso-users] sparql aggregate with condition on the aggr result

2010-07-02 Thread Rumi Tsekova
Hi Silvia, Can you send us the whole script (insert and then select etc.) and the version of Virtuoso Server you are using? Best Regards, Rumi Hi Rumi, Yes, I have a very similar set of triples. Suppose you have the following: sparql clear graph <http://mygraph.person>; SPARQL

Re: [Virtuoso-users] sparql aggregate with condition on the aggr result

2010-07-02 Thread Rumi Tsekova
l FROM <http://mygraph.person> WHERE { ?s <http://mygraph/person/books> ?books . } HAVING (SUM(?books) > 2); s total VARCHAR VARCHAR ___ http://mygraph/person/book3 4 http://mygraph/perso

Re: [Virtuoso-users] creating user account

2010-07-02 Thread Rumi Tsekova
Hi Mario, To create new account using Conductor: 1. Go to System Admin->User Accounts 2. In the shown list at the very right column (where Edit/Delete for users are shown) as heading there is a link "Create New Account" Best Regards, Rumi Hello, in a blog i read the fol

Re: [Virtuoso-users] Magic Predicates in Virtuoso?

2010-06-17 Thread Rumi Tsekova
Hi Aldo, Please take a look at http://docs.openlinksw.com/virtuoso/rdfsparql.html#rdfsqlfromsparql and the examples given in this doc section. Best Regards, Rumi - Original Message - From: "Aldo Bucchi" To: "Virtuoso Users" Sent: Thursday, June 17, 2

Re: [Virtuoso-users] Querying on all the data in the triple store

2010-03-23 Thread Rumi Tsekova
Hi Sashikiran, You can take a look at these docs: http://virtuoso.openlinksw.com/dataspace/dav/wiki/Main/VirtuosoRDFSinkFolder http://ods.openlinksw.com/dataspace/dav/wiki/ODS/ODSRDFSinkFolder Best Regards, Rumi - Original Message - From: Rameswara Sashi Kiran Challa To

Re: [Virtuoso-users] NOT EXISTS keyword support in virtuoso SPARQL endpoints?

2010-03-22 Thread Rumi Tsekova
Kingsley, The typo in http://docs.openlinksw.com/virtuoso/rdfsparqlrule.html#rdfsparqlruleexamples6 is corrected. Best Regards, Rumi - Original Message - From: Kingsley Idehen To: Rumi Tsekova Cc: Christian Fuerber ; virtuoso-users@lists.sourceforge.net Sent: Monday

Re: [Virtuoso-users] NOT EXISTS keyword support in virtuoso SPARQL endpoints?

2010-03-22 Thread Rumi Tsekova
Hi Christian, Additionally to the example Kingsley pointed to, here is another one: http://docs.openlinksw.com/virtuoso/rdfsparqlrule.html#rdfsparqlruleexamples6 Best Regards, Rumi - Original Message - From: Kingsley Idehen To: Christian Fuerber Cc: virtuoso-users

Re: [Virtuoso-users] Free text index update

2010-03-02 Thread Rumi Tsekova
( http://docs.openlinksw.com/virtuoso/rdfsparqlrulefulltext.html ) it was fixed so to show the correct content. Best Regards, Rumi - Original Message - From: Alexander Sidorov To: Virtuoso Users Sent: Friday, February 26, 2010 6:32 AM Subject: [Virtuoso-users] Free text index

Re: [Virtuoso-users] vsp sparql variable offset and limit?

2009-12-18 Thread Rumi Tsekova
you can set limit and offset as variables. See here: http://docs.openlinksw.com/virtuoso/fn_exec.html Best Regards, Rumi - Original Message - From: Lourens van der Meij To: virtuoso-users@lists.sourceforge.net Sent: Thursday, December 10, 2009 10:17 PM Subject: [Virtuoso

Re: [Virtuoso-users] WordPress SIOC queries

2009-12-04 Thread Rumi Tsekova
Hi Bob, Just to clarify the correct link is http://virtuoso.openlinksw.com/dataspace/dav/wiki/Main/WordPressSIOCRef Best Regards, Rumi - Original Message - From: Rumi Tsekova To: Bob Ferris ; virtuoso-users@lists.sourceforge.net Sent: Friday, December 04, 2009 1:59 PM

Re: [Virtuoso-users] WordPress SIOC queries

2009-12-04 Thread Rumi Tsekova
continue to return empty result. Best Regards, Rumi - Original Message - From: Bob Ferris To: virtuoso-users@lists.sourceforge.net Sent: Friday, December 04, 2009 12:15 AM Subject: [Virtuoso-users] WordPress SIOC queries Hi, after all I deployed WordPress on an ubuntu

Re: [Virtuoso-users] Correct way to shut down the Virtuoso- Server

2009-11-28 Thread Rumi Tsekova
WebDAV, where you can specifiy the graph URI. See example at http://virtuoso.openlinksw.com/dataspace/dav/wiki/Main/VirtRDFInsert#ExampleUsingWebDAV 3. See the full colelction of ways to upload triples at: http://virtuoso.openlinksw.com/dataspace/dav/wiki/Main/VirtRDFInsert Best Regards, Rumi

Re: [Virtuoso-users] owl sameAs reasoning

2009-11-18 Thread Rumi Tsekova
w.com/fct . > >Links: > >1. >http://lod.openlinksw.com/fct/rdfdesc/usage.vsp?g=http%3A%2F%2Fdbpedia.org%2Fresource%2FMichael%5FJackson&tp=3 >2. >http://www.semanticoverflow.com/questions/217/how-is-inference-used-in-practice Additionally you can take a look at ht

Re: [Virtuoso-users] Web Robot/Copy

2009-11-13 Thread Rumi Tsekova
/virtuososponger.html#virtuosospongercartridgesextractor 4. http://docs.openlinksw.com/virtuoso/rdfsparqlintegrationmiddleware.html#virtuosospongerintro Best Regards, Rumi - Original Message - From: Aldo Bucchi To: Virtuoso Users Sent: Friday, November 13, 2009 10:57 AM Subject

Re: [Virtuoso-users] Changing DAV permissions programatically

2009-10-27 Thread Rumi Tsekova
As result the uploaded file should be shown in the list 6. Click the Properties icon from most-right column. 7. Set "Permissions" by your choice and update. Best Regards, Rumi Some solutions: * Use Briefcase API via REST or SQL briefcase.copy ( from_path varchar, to_path varch

Re: [Virtuoso-users] SPARQL Query doesn't return uploaded triples

2009-10-15 Thread Rumi Tsekova
highly recommend for faster loading to use the RDF_LOAD_RDFXML_MT () function ( see for reference: http://docs.openlinksw.com/virtuoso/fn_rdf_load_rdfxml_mt.html ) Best Regards, Rumi Regards, Taalai Djumabaev taa...@ebi.ac.uk

Re: [Virtuoso-users] Doc Typos

2009-10-12 Thread Rumi Tsekova
the query relationshops Thanks for reporting the typo. It was fixed and shortly the doc site will be updated. Best Regards, Rumi Regards, A -- Aldo Bucchi skype:aldo.bucchi http://www.univrz.com/ http://aldobucchi.com/ PRIVILEGED AND CONFIDENTIAL INFORMATION This message is only for the

Re: [Virtuoso-users] virtuoso and bio2rdf

2009-09-14 Thread Rumi Tsekova
.com/virtuoso/rdfperformancetuning.html#rdfperfloadingbio2rdf 4. http://docs.openlinksw.com/virtuoso/sparqlbi.html#rdfsparqlbackq 5. http://www.openlinksw.com/weblog/oerling/?id=1358 Also might be an idea to refer to the bio2rdf group too. Best Regards, Rumi Thanks in advance for your help, Best reg

Re: [Virtuoso-users] VirtModel default graph

2009-09-04 Thread Rumi Tsekova
Hi, You should use the second method instead, i.e. createDatabaseModel. Please find more details at http://docs.openlinksw.com/jena/virtuoso/jena/driver/VirtModel.html Best Regards, Rumi - Original Message - From: Ruben Martin To: virtuoso-users@lists.sourceforge.net Sent

Re: [Virtuoso-users] UTF-16 rdf/xml

2009-08-31 Thread Rumi Tsekova
Hi Michel, In order to load the file, you need to convert it to UTF-8 and then to load it. You can use this function for the purpose: http://docs.openlinksw.com/virtuoso/fn_charset_recode.html Best Regards, Rumi - Original Message - From: Michel Dumontier To: virtuoso-users

Re: [Virtuoso-users] Help needed regarding Virtuoso Facets Web Service

2009-07-10 Thread Rumi Tsekova
Hi, Could you dump the rdf data for ex. using describe or to make construct in order we to investigate the problem? For ex. to see what is the data for the property http://3ba.se/conferences/start, to check the timezone etc. Best Regards, Rumi - Original Message - From: Jinesh

Re: [Virtuoso-users] sparul policies based on named graphs

2009-05-26 Thread Rumi Tsekova
rete named graphs. Is that possible? Detailed information about Graph based Security you can find at http://docs.openlinksw.com/virtuoso/rdfgraphsecurity.html Best Regards, Rumi Best, -- Sergio Fernández - sergio.fernan...@fundacionctic.org R&D Deparment CTIC Foundation - www.fundacion

Re: [Virtuoso-users] using the vad wiki package

2009-03-16 Thread Rumi Tsekova
Main/Ods 3. http://virtuoso.openlinksw.com/dataspace/dav/wiki/Main/OdsWiki 4. http://virtuoso.openlinksw.com/dataspace/dav/wiki/Main/OdsWikiGettingStarted Best Regards, Rumi Hi List, Seems this should be easy - maybe i've mucked something up. Using conductor web interface, i install

  1   2   >