[Virtuoso-users] Deleting triples with literals that have certain characters in them

2016-12-13 Thread Ian Harrison
I have a situation where I want to do a delete of a large number of triples, some of which have escape characters in a literal So my question is 2 fold. 1) Is there a bulk delete procedure, equivalent to the bulk upload? 2) If I delete, via isql, on a per triple basis, how can I do so with trip

Re: [Virtuoso-users] Deleting triples with literals that have certain characters in them

2016-12-13 Thread Hugh Williams
Hi Ian, You can escape with the “\” character both for insert/update and delete ie “EAME\\L300641” … Hughs-MBP-2:~ hwilliams$ isql Connected to OpenLink Virtuoso Driver: 07.20.3214 OpenLink Virtuoso ODBC Driver OpenLink Interactive SQL (Virtuoso), version 0.9849b. Type HELP; for help and EX

Re: [Virtuoso-users] Deleting triples with literals that have certain characters in them

2016-12-13 Thread Ian Harrison
Hugh Is there no automated escaping for \ --- or must one do it by hand? Also for the literal "10%w/w of solution" this goes in, but is stored as "10?w of solution" -- however, "10% w/w of solution" goes in correctly. How do you stop %w/ being interpreted as some format/escape command? Final