Damian, Attached is the sample ontology file that I used. I changed the extension from "turtle" to txt. It seems like the mailing list does not like attachments with "turtle" extension. Hope it helps you to recreate this issue.
Thanks! Jay On Thu, Aug 16, 2012 at 10:16 AM, Damian Steer <[email protected]>wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On 16/08/12 14:39, Jayanath Amaranayake wrote: > > Thanks Damian. I tried both statements, with space around the > > semicolon and without. Both works fine in Oracle SQL Developer > > 3.1.07. My oracle version is : Oracle Database 11g Express Edition > > Release 11.2.0.2.0 - Production > > Curses. But you're on the same version as I am at work, so I ought to > be able to reproduce it. > > Will investigate... > > Damian > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.11 (GNU/Linux) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ > > iEYEARECAAYFAlAtALAACgkQAyLCB+mTtymaoACfZknrKvCikpnSP7ZgJPlV4fdQ > e9gAn11VCHWne1HZsWt1AnqDskU5mBYn > =kUFC > -----END PGP SIGNATURE----- > -- Thank you, Jayanath
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . @prefix veh: <http://monead.com/semantic/data/vehicle#> . @prefix pveh: <http://monead.com/semantic/data/vehicle/personal#> . veh:Vehicle a owl:Class. veh:Automobile a owl:Class. veh:Automobile rdfs:subClassOf veh:Vehicle. pveh:Car a owl:Class. pveh:Car rdfs:subClassOf veh:Automobile. veh:Manufacturer a owl:Class. veh:Model a owl:Class. veh:FuelPurchase a owl:Class. veh:GasStation a owl:Class. veh:Place a owl:Class. veh:year a owl:DatatypeProperty. veh:name a owl:DatatypeProperty. veh:manufacturer a owl:ObjectProperty; rdfs:domain veh:Vehicle; rdfs:range veh:Manufacturer. veh:model a owl:ObjectProperty; rdfs:domain veh:Vehicle; rdfs:range veh:Model. veh:stationName a owl:DatatypeProperty; rdfs:domain veh:GasStation. veh:location a owl:ObjectProperty; rdfs:domain veh:GasStation; rdfs:range veh:Place. veh:placeName a owl:DatatypeProperty; rdfs:domain veh:Place. veh:vehicle a owl:ObjectProperty; rdfs:domain veh:FuelPurchase; rdfs:range veh:Vehicle. veh:date a owl:DatatypeProperty. # rdfs:range xsd:date.(using YYYY-MM-DD values produces an error with Pellet 2.2.1) veh:gallons a owl:DatatypeProperty. veh:usDollarsPerGallon a owl:DatatypeProperty. veh:totalUsDollarsCharged a owl:DatatypeProperty. veh:totalUsDollarsOwed a owl:DatatypeProperty. veh:reportedMpg a owl:DatatypeProperty. veh:milesTraveled a owl:DatatypeProperty. veh:odometerReading a owl:DatatypeProperty. veh:actualMpg a owl:DatatypeProperty. veh:purchaseStation a owl:ObjectProperty; rdfs:domain veh:FuelPurchase; rdfs:range veh:GasStation. veh:comment a owl:DatatypeProperty. veh:fuelPurchase0001 a veh:FuelPurchase; veh:vehicle pveh:car1; veh:date "2003-01-16"; veh:gallons 11.549; veh:usDollarsPerGallon 1.519; veh:totalUsDollarsCharged 17.54; veh:totalUsDollarsOwed 17.54; veh:reportedMpg 45.7; veh:milesTraveled 496.1; veh:odometerMiles 7128.; veh:actualMpg 43.0; veh:purchaseStation veh:Sunoco1. veh:fuelPurchase0002 a veh:FuelPurchase; veh:vehicle pveh:car1; veh:date "2003-06-05"; veh:gallons 11.545; veh:usDollarsPerGallon 1.559; veh:totalUsDollarsCharged 18.00; veh:totalUsDollarsOwed 18.00; veh:reportedMpg 52.2; veh:milesTraveled 555.6; veh:odometerMiles 14795.; veh:actualMpg 48.1; veh:purchaseStation veh:Mobil1.
