1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849
|
-- Define RDF view of demo database
use DB;
DB.DBA.exec_no_error('UPDATE WS.WS.SYS_DAV_RES set RES_TYPE=\'image/jpeg\' where RES_FULL_PATH like \'/DAV/VAD/demo/sql/CAT%\'');
DB.DBA.exec_no_error('UPDATE WS.WS.SYS_DAV_RES set RES_TYPE=\'image/jpeg\' where RES_FULL_PATH like \'/DAV/VAD/demo/sql/EMP%\'');
GRANT SELECT ON "Demo"."demo"."Products" TO "SPARQL";
GRANT SELECT ON "Demo"."demo"."Suppliers" TO "SPARQL";
GRANT SELECT ON "Demo"."demo"."Shippers" TO "SPARQL";
GRANT SELECT ON "Demo"."demo"."Categories" TO "SPARQL";
GRANT SELECT ON "Demo"."demo"."Customers" TO "SPARQL";
GRANT SELECT ON "Demo"."demo"."Employees" TO "SPARQL";
GRANT SELECT ON "Demo"."demo"."Orders" TO "SPARQL";
GRANT SELECT ON "Demo"."demo"."Order_Details" TO "SPARQL";
GRANT SELECT ON "Demo"."demo"."Countries" TO "SPARQL";
GRANT SELECT ON "Demo"."demo"."Provinces" TO "SPARQL";
SPARQL
drop quad map graph iri("http://^{URIQADefaultHost}^/tutorial/Northwind") .
drop quad map virtrdf:TutorialNorthwindDemo .
;
create function DB.DBA.TUT_NORTHWIND_ID_TO_IRI(in _prefix varchar,in _id varchar)
{
declare iri, uriqa_host any;
uriqa_host := cfg_item_value(virtuoso_ini_path(), 'URIQA','DefaultHost');
iri := 'http://' || uriqa_host || '/tutorial/Northwind/resource/' || _prefix || '/' || _id;
return sprintf ('http://%s/DAV/VAD/tutorial/rdfview/rd_v_1/RDFData/All/iid%%20(%d).rdf', uriqa_host, iri_id_num (iri_to_id (iri)));
}
;
create function DB.DBA.TUT_NORTHWIND_IRI_TO_ID(in _iri varchar)
{
declare parts any;
parts := sprintf_inverse (_iri, 'http://%s/DAV/VAD/tutorial/rdfview/rd_v_1/RDFData/All/iid (%d).rdf', 1 );
if (parts is not null)
{
declare uriqa_host, iri any;
uriqa_host := cfg_item_value(virtuoso_ini_path(), 'URIQA','DefaultHost');
if (parts[0] = uriqa_host)
{
iri := id_to_iri(iri_id_from_num(parts[1]));
parts := sprintf_inverse (iri, 'http://%s/tutorial/Northwind/resource/%s/%s', 1 );
if (parts[0] = uriqa_host)
{
return parts[2];
}
}
}
return NULL;
}
;
create function DB.DBA.TUT_CATEGORY_IRI (in _id integer) returns varchar
{
return TUT_NORTHWIND_ID_TO_IRI('Category', cast(_id as varchar));
}
;
create function DB.DBA.TUT_CATEGORY_IRI_INVERSE (in _iri varchar) returns integer
{
return atoi(DB.DBA.TUT_NORTHWIND_IRI_TO_ID(_iri));
};
create function DB.DBA.TUT_SHIPPER_IRI (in _id integer) returns varchar
{
return TUT_NORTHWIND_ID_TO_IRI('Shipper', cast(_id as varchar));
}
;
create function DB.DBA.TUT_SHIPPER_IRI_INVERSE (in _iri varchar) returns integer
{
return atoi(DB.DBA.TUT_NORTHWIND_IRI_TO_ID(_iri));
};
create function DB.DBA.TUT_SUPPLIER_IRI (in _id integer) returns varchar
{
return TUT_NORTHWIND_ID_TO_IRI('Supplier', cast(_id as varchar));
}
;
create function DB.DBA.TUT_SUPPLIER_IRI_INVERSE (in _iri varchar) returns integer
{
return atoi(DB.DBA.TUT_NORTHWIND_IRI_TO_ID(_iri));
};
create function DB.DBA.TUT_PRODUCT_IRI (in _id integer) returns varchar
{
return TUT_NORTHWIND_ID_TO_IRI('Product', cast(_id as varchar));
}
;
create function DB.DBA.TUT_PRODUCT_IRI_INVERSE (in _iri varchar) returns integer
{
return atoi(DB.DBA.TUT_NORTHWIND_IRI_TO_ID(_iri));
};
create function DB.DBA.TUT_CUSTOMER_IRI (in _id varchar) returns varchar
{
return TUT_NORTHWIND_ID_TO_IRI('Customer', _id);
}
;
create function DB.DBA.TUT_CUSTOMER_IRI_INVERSE (in _iri varchar) returns varchar
{
return DB.DBA.TUT_NORTHWIND_IRI_TO_ID(_iri);
};
create function DB.DBA.TUT_EMPLOYEE_IRI (in _id integer) returns varchar
{
return TUT_NORTHWIND_ID_TO_IRI('Employee', cast(_id as varchar));
}
;
create function DB.DBA.TUT_EMPLOYEE_IRI_INVERSE (in _iri varchar) returns integer
{
return atoi(DB.DBA.TUT_NORTHWIND_IRI_TO_ID(_iri));
};
create function DB.DBA.TUT_ORDER_IRI (in _id integer) returns varchar
{
return TUT_NORTHWIND_ID_TO_IRI('Order', cast(_id as varchar));
}
;
create function DB.DBA.TUT_ORDER_IRI_INVERSE (in _iri varchar) returns integer
{
return atoi(DB.DBA.TUT_NORTHWIND_IRI_TO_ID(_iri));
};
create function DB.DBA.TUT_CUSTOMERCONTACT_IRI (in _id integer) returns varchar
{
return TUT_NORTHWIND_ID_TO_IRI('CustomerContact', cast(_id as varchar));
}
;
create function DB.DBA.TUT_CUSTOMERCONTACT_IRI_INVERSE (in _iri varchar) returns integer
{
return atoi(DB.DBA.TUT_NORTHWIND_IRI_TO_ID(_iri));
};
create function DB.DBA.TUT_ORDERLINE_IRI (in _id1 integer, in _id2 integer) returns varchar
{
return TUT_NORTHWIND_ID_TO_IRI('OrderLine', sprintf('%d/%d', _id1, _id2));
}
;
create function DB.DBA.TUT_ORDERLINE_IRI_INV_1 (in _iri varchar) returns integer
{
return atoi(DB.DBA.TUT_NORTHWIND_IRI_TO_ID(_iri));
};
create function DB.DBA.TUT_ORDERLINE_IRI_INV_2 (in _iri varchar) returns integer
{
return atoi(DB.DBA.TUT_NORTHWIND_IRI_TO_ID(_iri));
};
create function DB.DBA.TUT_PROVINCE_IRI (in _id1 varchar, in _id2 varchar) returns varchar
{
return TUT_NORTHWIND_ID_TO_IRI('Province', sprintf('%s/%s', _id1, _id2));
}
;
create function DB.DBA.TUT_PROVINCE_IRI_INV_1 (in _iri varchar) returns varchar
{
return DB.DBA.TUT_NORTHWIND_IRI_TO_ID(_iri);
};
create function DB.DBA.TUT_PROVINCE_IRI_INV_2 (in _iri varchar) returns varchar
{
return DB.DBA.TUT_NORTHWIND_IRI_TO_ID(_iri);
};
create function DB.DBA.TUT_COUNTRY_IRI (in _id varchar) returns varchar
{
return TUT_NORTHWIND_ID_TO_IRI('Country', _id);
}
;
create function DB.DBA.TUT_COUNTRY_IRI_INVERSE (in _iri varchar) returns varchar
{
return DB.DBA.TUT_NORTHWIND_IRI_TO_ID(_iri);
};
create function DB.DBA.TUT_FLAG_IRI (in _id varchar) returns varchar
{
return TUT_NORTHWIND_ID_TO_IRI('Flag', _id);
}
;
create function DB.DBA.TUT_FLAG_IRI_INVERSE (in _iri varchar) returns varchar
{
return DB.DBA.TUT_NORTHWIND_IRI_TO_ID(_iri);
};
create function DB.DBA.TUT_EMPLOYEEPHOTO_IRI (in _id integer) returns varchar
{
return TUT_NORTHWIND_ID_TO_IRI('EmployeePhoto', cast(_id as varchar));
}
;
create function DB.DBA.TUT_EMPLOYEEPHOTO_IRI_INVERSE (in _iri varchar) returns integer
{
return atoi(DB.DBA.TUT_NORTHWIND_IRI_TO_ID(_iri));
};
create function DB.DBA.TUT_CATEGORYPHOTO_IRI (in _id integer) returns varchar
{
return TUT_NORTHWIND_ID_TO_IRI('CategoryPhoto', cast(_id as varchar));
}
;
create function DB.DBA.TUT_CATEGORYPHOTO_IRI_INVERSE (in _iri varchar) returns integer
{
return atoi(DB.DBA.TUT_NORTHWIND_IRI_TO_ID(_iri));
};
grant execute on DB.DBA.TUT_CATEGORY_IRI to "SPARQL";
grant execute on DB.DBA.TUT_CATEGORY_IRI_INVERSE to "SPARQL";
grant execute on DB.DBA.TUT_SHIPPER_IRI to "SPARQL";
grant execute on DB.DBA.TUT_SHIPPER_IRI_INVERSE to "SPARQL";
grant execute on DB.DBA.TUT_SUPPLIER_IRI to "SPARQL";
grant execute on DB.DBA.TUT_SUPPLIER_IRI_INVERSE to "SPARQL";
grant execute on DB.DBA.TUT_PRODUCT_IRI to "SPARQL";
grant execute on DB.DBA.TUT_PRODUCT_IRI_INVERSE to "SPARQL";
grant execute on DB.DBA.TUT_CUSTOMER_IRI to "SPARQL";
grant execute on DB.DBA.TUT_CUSTOMER_IRI_INVERSE to "SPARQL";
grant execute on DB.DBA.TUT_EMPLOYEE_IRI to "SPARQL";
grant execute on DB.DBA.TUT_EMPLOYEE_IRI_INVERSE to "SPARQL";
grant execute on DB.DBA.TUT_ORDER_IRI to "SPARQL";
grant execute on DB.DBA.TUT_ORDER_IRI_INVERSE to "SPARQL";
grant execute on DB.DBA.TUT_CUSTOMERCONTACT_IRI to "SPARQL";
grant execute on DB.DBA.TUT_CUSTOMERCONTACT_IRI_INVERSE to "SPARQL";
grant execute on DB.DBA.TUT_ORDERLINE_IRI to "SPARQL";
grant execute on DB.DBA.TUT_ORDERLINE_IRI_INV_1 to "SPARQL";
grant execute on DB.DBA.TUT_ORDERLINE_IRI_INV_2 to "SPARQL";
grant execute on DB.DBA.TUT_PROVINCE_IRI to "SPARQL";
grant execute on DB.DBA.TUT_PROVINCE_IRI_INV_1 to "SPARQL";
grant execute on DB.DBA.TUT_PROVINCE_IRI_INV_2 to "SPARQL";
grant execute on DB.DBA.TUT_COUNTRY_IRI to "SPARQL";
grant execute on DB.DBA.TUT_COUNTRY_IRI_INVERSE to "SPARQL";
grant execute on DB.DBA.TUT_FLAG_IRI to "SPARQL";
grant execute on DB.DBA.TUT_FLAG_IRI_INVERSE to "SPARQL";
grant execute on DB.DBA.TUT_EMPLOYEEPHOTO_IRI to "SPARQL";
grant execute on DB.DBA.TUT_EMPLOYEEPHOTO_IRI_INVERSE to "SPARQL";
grant execute on DB.DBA.TUT_CATEGORYPHOTO_IRI to "SPARQL";
grant execute on DB.DBA.TUT_CATEGORYPHOTO_IRI_INVERSE to "SPARQL";
SPARQL
prefix tut_northwind: <http://URIQA2_MACRO/tutorial/Northwind/ontology/>
create iri class tut_northwind:Category "http://^{URIQADefaultHost}^/tutorial/Northwind/resource/Category/%d" (in category_id integer not null) .
create iri class tut_northwind:Shipper "http://^{URIQADefaultHost}^/tutorial/Northwind/resource/Shipper/%d" (in shipper_id integer not null) .
create iri class tut_northwind:Supplier "http://^{URIQADefaultHost}^/tutorial/Northwind/resource/Supplier/%d" (in supplier_id integer not null) .
create iri class tut_northwind:Product "http://^{URIQADefaultHost}^/tutorial/Northwind/resource/Product/%d" (in product_id integer not null) .
create iri class tut_northwind:Customer "http://^{URIQADefaultHost}^/tutorial/Northwind/resource/Customer/%U" (in customer_id varchar not null) .
create iri class tut_northwind:Employee "http://^{URIQADefaultHost}^/tutorial/Northwind/resource/Employee/%U/%U/%d" (in employee_firstname varchar not null, in employee_lastname varchar not null, in employee_id integer not null) .
create iri class tut_northwind:Order "http://^{URIQADefaultHost}^/tutorial/Northwind/resource/Order/%d" (in order_id integer not null) .
create iri class tut_northwind:CustomerContact "http://^{URIQADefaultHost}^/tutorial/Northwind/resource/CustomerContact/%U" (in customer_id varchar not null) .
create iri class tut_northwind:OrderLine "http://^{URIQADefaultHost}^/tutorial/Northwind/resource/OrderLine/%d/%d" (in order_id integer not null, in product_id integer not null) .
create iri class tut_northwind:Province "http://^{URIQADefaultHost}^/tutorial/Northwind/resource/Province/%U/%U" (in country_name varchar not null, in province_name varchar not null) .
create iri class tut_northwind:Country "http://^{URIQADefaultHost}^/tutorial/Northwind/resource/Country/%U" (in country_name varchar not null) .
create iri class tut_northwind:Flag "http://^{URIQADefaultHost}^%U" (in flag_path varchar not null) .
create iri class tut_northwind:dbpedia_iri "http://dbpedia.org/resource/%U" (in uname varchar not null) .
create iri class tut_northwind:EmployeePhoto "http://^{URIQADefaultHost}^/DAV/VAD/demo/sql/EMP%d" (in emp_id varchar not null) .
create iri class tut_northwind:CategoryPhoto "http://^{URIQADefaultHost}^/DAV/VAD/demo/sql/CAT%d" (in category_id varchar not null) .
;
SPARQL
prefix tut_northwind: <http://URIQA2_MACRO/tutorial/Northwind/ontology/>
create iri class tut_northwind:customercontact_iri using
function DB.DBA.TUT_CUSTOMERCONTACT_IRI (in customer_id varchar) returns varchar,
function DB.DBA.TUT_CUSTOMERCONTACT_IRI_INVERSE (in customer_iri varchar) returns varchar.
create iri class tut_northwind:category_iri using
function DB.DBA.TUT_CATEGORY_IRI (in customer_id integer) returns varchar,
function DB.DBA.TUT_CATEGORY_IRI_INVERSE (in customer_iri varchar) returns integer.
create iri class tut_northwind:shipper_iri using
function DB.DBA.TUT_SHIPPER_IRI (in customer_id integer) returns varchar,
function DB.DBA.TUT_SHIPPER_IRI_INVERSE (in customer_iri varchar) returns integer.
create iri class tut_northwind:supplier_iri using
function DB.DBA.TUT_SUPPLIER_IRI (in customer_id varchar) returns varchar,
function DB.DBA.TUT_SUPPLIER_IRI_INVERSE (in customer_iri varchar) returns varchar.
create iri class tut_northwind:product_iri using
function DB.DBA.TUT_PRODUCT_IRI (in customer_id integer) returns varchar,
function DB.DBA.TUT_PRODUCT_IRI_INVERSE (in customer_iri varchar) returns integer.
create iri class tut_northwind:customer_iri using
function DB.DBA.TUT_CUSTOMER_IRI (in customer_id varchar) returns varchar,
function DB.DBA.TUT_CUSTOMER_IRI_INVERSE (in customer_iri varchar) returns varchar.
create iri class tut_northwind:employee_iri using
function DB.DBA.TUT_EMPLOYEE_IRI (in customer_id integer) returns varchar,
function DB.DBA.TUT_EMPLOYEE_IRI_INVERSE (in customer_iri varchar) returns integer.
create iri class tut_northwind:order_iri using
function DB.DBA.TUT_ORDER_IRI (in customer_id integer) returns varchar,
function DB.DBA.TUT_ORDER_IRI_INVERSE (in customer_iri varchar) returns integer.
create iri class tut_northwind:orderline_iri using
function DB.DBA.TUT_ORDERLINE_IRI (in customer_id integer, in customer_id2 integer) returns varchar,
function DB.DBA.TUT_ORDERLINE_IRI_INV_1 (in customer_iri varchar) returns integer,
function DB.DBA.TUT_ORDERLINE_IRI_INV_2 (in customer_iri varchar) returns integer.
create iri class tut_northwind:province_iri using
function DB.DBA.TUT_PROVINCE_IRI (in customer_id varchar, in customer_id2 varchar) returns varchar,
function DB.DBA.TUT_PROVINCE_IRI_INV_1 (in customer_iri varchar) returns varchar,
function DB.DBA.TUT_PROVINCE_IRI_INV_2 (in customer_iri varchar) returns varchar.
create iri class tut_northwind:country_iri using
function DB.DBA.TUT_COUNTRY_IRI (in customer_id varchar) returns varchar,
function DB.DBA.TUT_COUNTRY_IRI_INVERSE (in customer_iri varchar) returns varchar.
create iri class tut_northwind:employeephoto_iri using
function DB.DBA.TUT_EMPLOYEEPHOTO_IRI (in customer_id integer) returns varchar,
function DB.DBA.TUT_EMPLOYEEPHOTO_IRI_INVERSE (in customer_iri varchar) returns integer.
create iri class tut_northwind:categoryphoto_iri using
function DB.DBA.TUT_CATEGORYPHOTO_IRI (in customer_id integer) returns varchar,
function DB.DBA.TUT_CATEGORYPHOTO_IRI_INVERSE (in customer_iri varchar) returns integer.
create iri class tut_northwind:flag_iri using
function DB.DBA.TUT_FLAG_IRI (in customer_id varchar) returns varchar,
function DB.DBA.TUT_FLAG_IRI_INVERSE (in customer_iri varchar) returns varchar.
;
SPARQL
prefix tut_northwind: <http://URIQA2_MACRO/tutorial/Northwind/ontology/>
prefix oplsioc: <http://www.openlinksw.com/schemas/oplsioc#>
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
prefix sioc: <http://rdfs.org/sioc/ns#>
prefix foaf: <http://xmlns.com/foaf/0.1/>
prefix owl: <http://www.w3.org/2002/07/owl#>
prefix wgs: <http://www.w3.org/2003/01/geo/wgs84_pos#>
alter quad storage virtrdf:DefaultQuadStorage
from Demo.demo.Products as products
from Demo.demo.Suppliers as suppliers
from Demo.demo.Shippers as shippers
from Demo.demo.Categories as categories
from Demo.demo.Customers as customers
from Demo.demo.Employees as employees
from Demo.demo.Orders as orders
from Demo.demo.Order_Details as order_lines
from Demo.demo.Countries as countries
from Demo.demo.Provinces as provinces
where (^{suppliers.}^.Country = ^{countries.}^.Name)
where (^{customers.}^.Country = ^{countries.}^.Name)
where (^{employees.}^.Country = ^{countries.}^.Name)
where (^{orders.}^.ShipCountry = ^{countries.}^.Name)
{
create virtrdf:TutorialNorthwindDemo as graph iri ("http://^{URIQADefaultHost}^/tutorial/Northwind") option (exclusive)
{
tut_northwind:CustomerContact (customers.CustomerID)
a foaf:Person
as virtrdf:tutCustomerContact-foaf_Person .
tut_northwind:CustomerContact (customers.CustomerID)
a tut_northwind:CustomerContact
as virtrdf:tutCustomerContact-CustomerContact;
foaf:name customers.ContactName
as virtrdf:tutCustomerContact-contact_name ;
foaf:phone customers.Phone
as virtrdf:tutCustomerContact-foaf_phone ;
tut_northwind:is_contact_at tut_northwind:Customer (customers.CustomerID)
as virtrdf:tutCustomerContact-is_contact_at ;
tut_northwind:country tut_northwind:Country (customers.Country)
as virtrdf:tutCustomerContact-country ;
rdfs:isDefinedBy tut_northwind:customercontact_iri (customers.CustomerID) ;
rdfs:isDefinedBy tut_northwind:CustomerContact (customers.CustomerID) .
tut_northwind:Country (customers.Country)
tut_northwind:is_country_of
tut_northwind:CustomerContact (customers.CustomerID) as virtrdf:tutCustomerContact-is_country_of .
tut_northwind:Product (products.ProductID)
a tut_northwind:Product
as virtrdf:tutProduct-ProductID ;
tut_northwind:has_category tut_northwind:Category (products.CategoryID)
as virtrdf:tutProduct-product_has_category ;
tut_northwind:has_supplier tut_northwind:Supplier (products.SupplierID)
as virtrdf:tutProduct-product_has_supplier ;
tut_northwind:productName products.ProductName
as virtrdf:tutProduct-name_of_product ;
tut_northwind:quantityPerUnit products.QuantityPerUnit
as virtrdf:tutProduct-quantity_per_unit ;
tut_northwind:unitPrice products.UnitPrice
as virtrdf:tutProduct-unit_price ;
tut_northwind:unitsInStock products.UnitsInStock
as virtrdf:tutProduct-units_in_stock ;
tut_northwind:unitsOnOrder products.UnitsOnOrder
as virtrdf:tutProduct-units_on_order ;
tut_northwind:reorderLevel products.ReorderLevel
as virtrdf:tutProduct-reorder_level ;
tut_northwind:discontinued products.Discontinued
as virtrdf:tutProduct-discontinued ;
rdfs:isDefinedBy tut_northwind:product_iri (products.ProductID) ;
rdfs:isDefinedBy tut_northwind:Product (products.ProductID).
tut_northwind:Category (products.CategoryID)
tut_northwind:category_of tut_northwind:Product (products.ProductID) as virtrdf:tutProduct-category_of .
tut_northwind:Supplier (products.SupplierID)
tut_northwind:supplier_of tut_northwind:Product (products.ProductID) as virtrdf:tutProduct-supplier_of .
tut_northwind:Supplier (suppliers.SupplierID)
a tut_northwind:Supplier
as virtrdf:tutSupplier-SupplierID ;
tut_northwind:companyName suppliers.CompanyName
as virtrdf:tutSupplier-company_name ;
tut_northwind:contactName suppliers.ContactName
as virtrdf:tutSupplier-contact_name ;
tut_northwind:contactTitle suppliers.ContactTitle
as virtrdf:tutSupplier-contact_title ;
tut_northwind:address suppliers.Address
as virtrdf:tutSupplier-address ;
tut_northwind:city suppliers.City
as virtrdf:tutSupplier-city ;
tut_northwind:dbpedia_city tut_northwind:dbpedia_iri(suppliers.City)
as virtrdf:tutSupplier-dbpedia_city ;
tut_northwind:region suppliers.Region
as virtrdf:tutSupplier-region ;
tut_northwind:postalCode suppliers.PostalCode
as virtrdf:tutSupplier-postal_code ;
tut_northwind:country tut_northwind:Country(suppliers.Country)
as virtrdf:tutSupplier-country ;
tut_northwind:phone suppliers.Phone
as virtrdf:tutSupplier-phone ;
tut_northwind:fax suppliers.Fax
as virtrdf:tutSupplier-fax ;
tut_northwind:homePage suppliers.HomePage
as virtrdf:tutSupplier-home_page ;
rdfs:isDefinedBy tut_northwind:supplier_iri (suppliers.SupplierID) ;
rdfs:isDefinedBy tut_northwind:Supplier (suppliers.SupplierID).
tut_northwind:Country (suppliers.Country)
tut_northwind:is_country_of
tut_northwind:Supplier (suppliers.SupplierID) as virtrdf:tutSupplier-is_country_of .
tut_northwind:Category (categories.CategoryID)
a tut_northwind:Category
as virtrdf:tutCategory-CategoryID ;
tut_northwind:categoryName categories.CategoryName
as virtrdf:tutCategory-home_page ;
tut_northwind:description categories.Description
as virtrdf:tutCategory-description ;
foaf:img tut_northwind:CategoryPhoto(categories.CategoryID)
as virtrdf:tutCategory-categories.CategoryPhoto ;
rdfs:isDefinedBy tut_northwind:category_iri (categories.CategoryID) ;
rdfs:isDefinedBy tut_northwind:Category (categories.CategoryID).
tut_northwind:CategoryPhoto(categories.CategoryID)
a tut_northwind:CategoryPhoto
as virtrdf:tutCategory-categories.CategoryPhotoID ;
rdfs:isDefinedBy tut_northwind:categoryphoto_iri (categories.CategoryID) ;
rdfs:isDefinedBy tut_northwind:CategoryPhoto(categories.CategoryID).
tut_northwind:Shipper (shippers.ShipperID)
a tut_northwind:Shipper
as virtrdf:tutShipper-ShipperID ;
tut_northwind:companyName shippers.CompanyName
as virtrdf:tutShipper-company_name ;
tut_northwind:phone shippers.Phone
as virtrdf:tutShipper-phone ;
rdfs:isDefinedBy tut_northwind:shipper_iri (shippers.ShipperID) ;
rdfs:isDefinedBy tut_northwind:Shipper (shippers.ShipperID).
tut_northwind:Customer (customers.CustomerID)
a tut_northwind:Customer
as virtrdf:tutCustomer-CustomerID2 ;
a foaf:Organization
as virtrdf:tutCustomer-CustomerID ;
foaf:name customers.CompanyName
as virtrdf:tutCustomer-foaf_name ;
tut_northwind:companyName customers.CompanyName
as virtrdf:tutCustomer-company_name ;
tut_northwind:has_contact tut_northwind:CustomerContact (customers.CustomerID)
as virtrdf:tutCustomer-contact ;
tut_northwind:country tut_northwind:Country (customers.Country)
as virtrdf:tutCustomer-country ;
tut_northwind:contactName customers.ContactName
as virtrdf:tutCustomer-contact_name ;
tut_northwind:contactTitle customers.ContactTitle
as virtrdf:tutCustomer-contact_title ;
tut_northwind:address customers.Address
as virtrdf:tutCustomer-address ;
tut_northwind:city customers.City
as virtrdf:tutCustomer-city ;
tut_northwind:dbpedia_city tut_northwind:dbpedia_iri(customers.City)
as virtrdf:tutCustomer-dbpedia_city ;
tut_northwind:region customers.Region
as virtrdf:tutCustomer-region ;
tut_northwind:PostalCode customers.PostalCode
as virtrdf:tutCustomer-postal_code ;
foaf:phone customers.Phone
as virtrdf:tutCustomer-foaf_phone ;
tut_northwind:phone customers.Phone
as virtrdf:tutCustomer-phone ;
tut_northwind:fax customers.Fax
as virtrdf:tutCustomer-fax ;
rdfs:isDefinedBy tut_northwind:customer_iri (customers.CustomerID) ;
rdfs:isDefinedBy tut_northwind:Customer (customers.CustomerID).
tut_northwind:Country (customers.Country)
tut_northwind:is_country_of
tut_northwind:Customer (customers.CustomerID) as virtrdf:tutCustomer-is_country_of .
tut_northwind:Employee (employees.FirstName, employees.LastName, employees.EmployeeID)
a tut_northwind:Employee
as virtrdf:tutEmployee-EmployeeID2 ;
a foaf:Person
as virtrdf:tutEmployee-EmployeeID ;
foaf:surname employees.LastName
as virtrdf:tutEmployee-foaf_last_name ;
tut_northwind:lastName employees.LastName
as virtrdf:tutEmployee-last_name ;
foaf:firstName employees.FirstName
as virtrdf:tutEmployee-foaf_first_name ;
tut_northwind:firstName employees.FirstName
as virtrdf:tutEmployee-first_name ;
foaf:title employees.Title
as virtrdf:tutEmployee-title ;
tut_northwind:titleOfCourtesy employees.TitleOfCourtesy
as virtrdf:tutEmployee-title_of_courtesy ;
foaf:birthday employees.BirthDate
as virtrdf:tutEmployee-foaf_birth_date ;
tut_northwind:birthday employees.BirthDate
as virtrdf:tutEmployee-birth_date ;
tut_northwind:hireDate employees.HireDate
as virtrdf:tutEmployee-hire_date ;
tut_northwind:address employees.Address
as virtrdf:tutEmployee-address ;
tut_northwind:city employees.City
as virtrdf:tutEmployee-city ;
tut_northwind:dbpedia_city tut_northwind:dbpedia_iri(employees.City)
as virtrdf:tutEmployee-dbpedia_city ;
tut_northwind:region employees.Region
as virtrdf:tutEmployee-region ;
tut_northwind:postalCode employees.PostalCode
as virtrdf:tutEmployee-postal_code ;
tut_northwind:country tut_northwind:Country (employees.Country)
as virtrdf:tutEmployee-country ;
foaf:phone employees.HomePhone
as virtrdf:tutEmployee-home_phone ;
tut_northwind:extension employees.Extension
as virtrdf:tutEmployee-extension ;
tut_northwind:notes employees.Notes
as virtrdf:tutEmployee-notes ;
tut_northwind:reportsTo tut_northwind:Employee(employees.FirstName, employees.LastName, employees.ReportsTo) where (^{employees.}^.ReportsTo = ^{employees.}^.EmployeeID)
as virtrdf:tutEmployee-reports_to ;
foaf:img tut_northwind:EmployeePhoto(employees.EmployeeID)
as virtrdf:tutEmployee-employees.EmployeePhoto ;
rdfs:isDefinedBy tut_northwind:employee_iri (employees.EmployeeID) ;
rdfs:isDefinedBy tut_northwind:Employee (employees.FirstName, employees.LastName, employees.EmployeeID).
tut_northwind:EmployeePhoto(employees.EmployeeID)
a tut_northwind:EmployeePhoto
as virtrdf:tut_Employee-employees.EmployeePhotoId ;
rdfs:isDefinedBy tut_northwind:employeephoto_iri (employees.EmployeeID) ;
rdfs:isDefinedBy tut_northwind:EmployeePhoto (employees.EmployeeID).
tut_northwind:Employee (employees.FirstName, employees.LastName, orders.EmployeeID)
tut_northwind:is_salesrep_of
tut_northwind:Order (orders.OrderID) where (^{orders.}^.EmployeeID = ^{employees.}^.EmployeeID) as virtrdf:tutOrder-is_salesrep_of .
tut_northwind:Country (employees.Country)
tut_northwind:is_country_of
tut_northwind:Employee (employees.FirstName, employees.LastName, employees.EmployeeID) as virtrdf:tutEmployee-is_country_of .
tut_northwind:Order (orders.OrderID)
a tut_northwind:Order
as virtrdf:tutOrder-Order ;
tut_northwind:has_customer tut_northwind:Customer (orders.CustomerID)
as virtrdf:tutOrder-order_has_customer ;
tut_northwind:has_salesrep tut_northwind:Employee (employees.FirstName, employees.LastName, orders.EmployeeID) where (^{orders.}^.EmployeeID = ^{employees.}^.EmployeeID)
as virtrdf:tutCustomer-has_salesrep ;
tut_northwind:has_employee tut_northwind:Employee (employees.FirstName, employees.LastName, orders.EmployeeID) where (^{orders.}^.EmployeeID = ^{employees.}^.EmployeeID)
as virtrdf:tutOrder-order_has_employee ;
tut_northwind:orderDate orders.OrderDate
as virtrdf:tutOrder-order_date ;
tut_northwind:requiredDate orders.RequiredDate
as virtrdf:tutOrder-required_date ;
tut_northwind:shippedDate orders.ShippedDate
as virtrdf:tutOrder-shipped_date ;
tut_northwind:order_ship_via tut_northwind:Shipper (orders.ShipVia)
as virtrdf:tutOrder-order_ship_via ;
tut_northwind:freight orders.Freight
as virtrdf:tutOrder-freight ;
tut_northwind:shipName orders.ShipName
as virtrdf:tutOrder-ship_name ;
tut_northwind:shipAddress orders.ShipAddress
as virtrdf:tutOrder-ship_address ;
tut_northwind:shipCity orders.ShipCity
as virtrdf:tutOrder-ship_city ;
tut_northwind:dbpedia_shipCity tut_northwind:dbpedia_iri(orders.ShipCity)
as virtrdf:tutOrder-ship_dbpedia_city ;
tut_northwind:shipRegion orders.ShipRegion
as virtrdf:tutOrder-ship_region ;
tut_northwind:shipPostal_code orders.ShipPostalCode
as virtrdf:tutOrder-ship_postal_code ;
tut_northwind:shipCountry tut_northwind:Country(orders.ShipCountry)
as virtrdf:tutship_country ;
rdfs:isDefinedBy tut_northwind:order_iri (orders.OrderID) ;
rdfs:isDefinedBy tut_northwind:Order (orders.OrderID).
tut_northwind:Country (orders.ShipCountry)
tut_northwind:is_ship_country_of
tut_northwind:Order (orders.OrderID) as virtrdf:tutOrder-is_country_of .
tut_northwind:Customer (orders.CustomerID)
tut_northwind:has_order tut_northwind:Order (orders.OrderID) as virtrdf:tutOrder-has_order .
tut_northwind:Shipper (orders.ShipVia)
tut_northwind:ship_order tut_northwind:Order (orders.OrderID) as virtrdf:tutOrder-ship_order .
tut_northwind:OrderLine (order_lines.OrderID, order_lines.ProductID)
a tut_northwind:OrderLine
as virtrdf:tutOrderLine-OrderLines ;
tut_northwind:has_order_id tut_northwind:Order (order_lines.OrderID)
as virtrdf:tutorder_lines_has_order_id ;
tut_northwind:has_product_id tut_northwind:Product (order_lines.ProductID)
as virtrdf:tutorder_lines_has_product_id ;
tut_northwind:unitPrice order_lines.UnitPrice
as virtrdf:tutOrderLine-unit_price ;
tut_northwind:quantity order_lines.Quantity
as virtrdf:tutOrderLine-quantity ;
tut_northwind:discount order_lines.Discount
as virtrdf:tutOrderLine-discount ;
rdfs:isDefinedBy tut_northwind:orderline_iri (order_lines.OrderID, order_lines.ProductID) ;
rdfs:isDefinedBy tut_northwind:OrderLine (order_lines.OrderID, order_lines.ProductID).
tut_northwind:Order (orders.OrderID)
tut_northwind:is_order_of
tut_northwind:OrderLine (order_lines.OrderID, order_lines.ProductID) where (^{orders.}^.OrderID = ^{order_lines.}^.OrderID) as virtrdf:tutOrder-is_order_of .
tut_northwind:Product (products.ProductID)
tut_northwind:is_product_of
tut_northwind:OrderLine (order_lines.OrderID, order_lines.ProductID) where (^{products.}^.ProductID = ^{order_lines.}^.ProductID) as virtrdf:tutProduct-is_product_of .
tut_northwind:Country (countries.Name)
a tut_northwind:Country
as virtrdf:tutCountry-Type2 ;
a wgs:SpatialThing
as virtrdf:tutCountry-Type ;
owl:sameAs tut_northwind:dbpedia_iri (countries.Name) ;
tut_northwind:name countries.Name
as virtrdf:tutCountry-Name ;
tut_northwind:code countries.Code
as virtrdf:tutCountry-Code ;
tut_northwind:smallFlagDAVResourceName countries.SmallFlagDAVResourceName
as virtrdf:tutCountry-SmallFlagDAVResourceName ;
tut_northwind:largeFlagDAVResourceName countries.LargeFlagDAVResourceName
as virtrdf:tutCountry-LargeFlagDAVResourceName ;
tut_northwind:smallFlagDAVResourceURI tut_northwind:Flag(countries.SmallFlagDAVResourceURI)
as virtrdf:tutCountry-SmallFlagDAVResourceURI ;
tut_northwind:largeFlagDAVResourceURI tut_northwind:Flag(countries.LargeFlagDAVResourceURI)
as virtrdf:tutCountry-LargeFlagDAVResourceURI ;
wgs:lat countries.Lat
as virtrdf:tutCountry-Lat ;
wgs:long countries.Lng
as virtrdf:tutCountry-Lng ;
rdfs:isDefinedBy tut_northwind:country_iri (countries.Name) ;
rdfs:isDefinedBy tut_northwind:Country (countries.Name).
tut_northwind:Country (countries.Name)
tut_northwind:has_province
tut_northwind:Province (provinces.CountryCode, provinces.Province) where (^{provinces.}^.CountryCode = ^{countries.}^.Code) as virtrdf:tutCountry-has_province .
tut_northwind:Province (provinces.CountryCode, provinces.Province)
a tut_northwind:Province
as virtrdf:tutProvince-Provinces ;
tut_northwind:has_country_code provinces.CountryCode
as virtrdf:tuthas_country_code ;
tut_northwind:provinceName provinces.Province
as virtrdf:tutProvince-ProvinceName ;
rdfs:isDefinedBy tut_northwind:province_iri (provinces.CountryCode, provinces.Province) ;
rdfs:isDefinedBy tut_northwind:Province (provinces.CountryCode, provinces.Province).
tut_northwind:Province (provinces.CountryCode, provinces.Province)
tut_northwind:is_province_of
tut_northwind:Country (countries.Name) where (^{countries.}^.Code = ^{provinces.}^.CountryCode) as virtrdf:tutProvince-country_of .
} .
} .
;
-- Setup rewrite rules
delete from db.dba.url_rewrite_rule_list where urrl_list like 'tut_nw%';
delete from db.dba.url_rewrite_rule where urr_rule like 'tut_nw%';
DB.DBA.VHOST_REMOVE (lpath=>'/tutorial/Northwind/ontology');
DB.DBA.VHOST_REMOVE (lpath=>'/tutorial/Northwind/resource');
DB.DBA.VHOST_REMOVE (lpath=>'/tutorial/Northwind/data');
DB.DBA.VHOST_REMOVE (lpath=>'/tutorial/Northwind/page');
DB.DBA.VHOST_DEFINE (
lpath=>'/tutorial/Northwind/ontology',
ppath=>'/DAV/VAD/tutorial/rdfview/rd_v_1/',
is_dav=>1, is_brws=>1, vsp_user=>'dba',
opts=>vector ('url_rewrite', 'nwtut_rule_list_owl')
);
DB.DBA.VHOST_DEFINE (
lpath=>'/tutorial/Northwind/resource',
ppath=>'/DAV/VAD/tutorial/rdfview/rd_v_1/',
is_dav=>1, is_brws=>1, vsp_user=>'dba',
opts=>vector ('url_rewrite', 'nwtut_rule_list_1')
);
DB.DBA.VHOST_DEFINE (
lpath=>'/tutorial/Northwind/data',
ppath=>'/DAV/VAD/tutorial/rdfview/rd_v_1/',
is_dav=>1, is_brws=>1, vsp_user=>'dba',
opts=>vector ('url_rewrite', 'nwtut_rule_list_2')
);
DB.DBA.VHOST_DEFINE (
lpath=>'/tutorial/Northwind/page',
ppath=>'/DAV/VAD/tutorial/rdfview/rd_v_1/',
is_dav=>1, is_brws=>1, vsp_user=>'dba',
opts=>vector ('url_rewrite', 'nwtut_rule_list_3')
);
DB.DBA.URLREWRITE_CREATE_RULELIST ('nwtut_rule_list_owl', 1, vector ('owl_rule_1', 'owl_rule_2', 'owl_rule_3'));
DB.DBA.URLREWRITE_CREATE_RULELIST ('nwtut_rule_list_1', 1, vector ('resource_rule_1', 'resource_rule_2'));
DB.DBA.URLREWRITE_CREATE_RULELIST ('nwtut_rule_list_2', 1, vector ('data_rule_1', 'data_rule_2', 'data_rule_3'));
DB.DBA.URLREWRITE_CREATE_RULELIST ('nwtut_rule_list_3', 1, vector ('page_rule_1'));
DB.DBA.URLREWRITE_CREATE_REGEX_RULE ('owl_rule_1', 1, '/ontology/(.*)\x24', vector ('par_1'), 1,
'/sparql?query=DESCRIBE%%20%%3Chttp%%3A%%2F%%2F^{URIQADefaultHost}^%%2Ftutorial%%2FNorthwind%%2Fontology%%2F%U%%3E%%20%%0D%%0AFROM%%20%%3Chttp%%3A%%2F%%2F^{URIQADefaultHost}^%%2Ftutorial%%2FNorthwind%%2Fontology%%3E%%20&format=%U',
vector ('par_1', '*accept*'), NULL, '(text/rdf.n3)|(application/rdf.xml)', 2, 303, '');
DB.DBA.URLREWRITE_CREATE_REGEX_RULE ('owl_rule_2', 1, '/ontology/(.*)\x24', vector ('par_1'), 1,
'/sparql?query=DESCRIBE%%20%%3Chttp%%3A%%2F%%2F^{URIQADefaultHost}^%%2Ftutorial%%2FNorthwind%%2Fontology%%2F%U%%3E%%20%%0D%%0AFROM%%20%%3Chttp%%3A%%2F%%2F^{URIQADefaultHost}^%%2Ftutorial%%2FNorthwind%%2Fontology%%3E%%20&format=n3',
vector ('par_1'), NULL, 'application/x-turtle', 2, 303, '');
DB.DBA.URLREWRITE_CREATE_REGEX_RULE ('owl_rule_3', 1, '/ontology/(.*)\x24', vector ('par_1'), 1,
'/about/html/http/^{URIQADefaultHost}^/tutorial/Northwind/ontology/%s', vector ('par_1'), NULL, '(text/html)', 2, 303, '');
DB.DBA.URLREWRITE_CREATE_REGEX_RULE ('resource_rule_1', 1, '/resource/([^.]*)', vector ('par_1'), 1,
'/tutorial/Northwind/page/%s', vector ('par_1'), NULL, NULL, 2, 303, NULL);
DB.DBA.URLREWRITE_CREATE_REGEX_RULE ( 'resource_rule_2', 1, '/resource/(.*)\x24', vector ('par_1'), 1,
'/tutorial/Northwind/data/%s', vector ('par_1'), NULL, '(application/rdf.xml)|(text/rdf.n3)|(application/x-turtle)', 2, 303);
delete from DB.DBA.HTTP_VARIANT_MAP where VM_RULELIST = 'nwtut_rule_list_1';
DB.DBA.HTTP_VARIANT_ADD ('nwtut_rule_list_1', '(.*)', '\x241.xml', 'application/rdf+xml', 0.95, location_hook=>null);
DB.DBA.HTTP_VARIANT_ADD ('nwtut_rule_list_1', '(.*)', '\x241.n3', 'text/rdf+n3', 0.80, location_hook=>null);
DB.DBA.HTTP_VARIANT_ADD ('nwtut_rule_list_1', '(.*)', '\x241.ttl', 'application/x-turtle', 0.70, location_hook=>null);
DB.DBA.HTTP_VARIANT_ADD ('nwtut_rule_list_1', '(.*)', '\x241.html', 'text/html', 0.60, location_hook=>null);
DB.DBA.URLREWRITE_CREATE_REGEX_RULE ( 'data_rule_1', 1, '/data/(.*)\\.(xml)', vector ('par_1', 'f'), 1,
'/sparql?default-graph-uri=http%%3A//^{URIQADefaultHost}^/tutorial/Northwind&query=DESCRIBE+%%3Chttp%%3A//^{URIQADefaultHost}^/tutorial/Northwind%%2Fresource%%2F%U%%3E&format=rdf',
vector ('par_1'), NULL, NULL, 2, 303, '');
DB.DBA.URLREWRITE_CREATE_REGEX_RULE ( 'data_rule_2', 1, '/data/(.*)\\.(ttl)', vector ('par_1', 'f'), 1,
'/sparql?default-graph-uri=http%%3A//^{URIQADefaultHost}^/tutorial/Northwind&query=DESCRIBE+%%3Chttp%%3A//^{URIQADefaultHost}^/tutorial/Northwind%%2Fresource%%2F%U%%3E&format=n3',
vector ('par_1'), NULL, NULL, 2, 303, '');
DB.DBA.URLREWRITE_CREATE_REGEX_RULE ( 'data_rule_3', 1, '/data/(.*)\\.(n3|rdf)', vector ('par_1', 'f'), 1,
'/sparql?default-graph-uri=http%%3A//^{URIQADefaultHost}^/tutorial/Northwind&query=DESCRIBE+%%3Chttp%%3A//^{URIQADefaultHost}^/tutorial/Northwind%%2Fresource%%2F%U%%3E&format=%U',
vector ('par_1', 'f'), NULL, NULL, 2, 303, '');
DB.DBA.URLREWRITE_CREATE_REGEX_RULE ( 'page_rule_1', 1, '/page/([^.]*)', vector ('par_1'), 1,
'/about/html/http/^{URIQADefaultHost}^/tutorial/Northwind/resource/%s', vector ('par_1'), NULL, '(text/html)', 2, 303);
-- Load Northwind ontology into quad store
create procedure DB.DBA.LOAD_TUTNW_ONTOLOGY_FROM_DAV()
{
declare content, uriqa, urihost varchar;
whenever not found goto endpoint;
uriqa := registry_get('URIQADefaultHost');
select cast (RES_CONTENT as varchar) into content from WS.WS.SYS_DAV_RES where RES_FULL_PATH = '/DAV/VAD/tutorial/rdfview/rd_v_1/rd_v_1.owl';
if (content is null or content = '')
goto endpoint;
DB.DBA.RDF_LOAD_RDFXML (content,
concat('http://', uriqa, '/tutorial/Northwind/ontology/'),
concat('http://', uriqa, '/tutorial/Northwind/ontology'));
endpoint:
;
}
;
DB.DBA.LOAD_TUTNW_ONTOLOGY_FROM_DAV();
drop procedure DB.DBA.LOAD_TUTNW_ONTOLOGY_FROM_DAV;
-- Localize sample tutorial files
create procedure DB.DBA.install_run ()
{
declare file_text, uriqa varchar;
uriqa := registry_get('URIQADefaultHost');
file_text := (select blob_to_string (RES_CONTENT) from WS.WS.SYS_DAV_RES where RES_FULL_PATH='/DAV/VAD/tutorial/rdfview/rd_v_1/rd_v_1.isparql');
file_text := replace(file_text, 'URIQA_MACRO', concat('http://', uriqa, '/tutorial/Northwind'));
update WS.WS.SYS_DAV_RES set RES_CONTENT=file_text where RES_FULL_PATH='/DAV/VAD/tutorial/rdfview/rd_v_1/rd_v_1.isparql';
}
;
DB.DBA.install_run()
;
drop procedure DB.DBA.install_run
;
-- Create DET
create procedure DB.DBA.REMOVE_TUT_DEMO_RDF_DET()
{
declare colid int;
colid := DAV_SEARCH_ID('/DAV/VAD/tutorial/rdfview/rd_v_1/', 'C');
if (colid < 0)
return;
update WS.WS.SYS_DAV_COL set COL_DET=null where COL_ID = colid;
}
;
DB.DBA.REMOVE_TUT_DEMO_RDF_DET();
drop procedure DB.DBA.REMOVE_TUT_DEMO_RDF_DET;
create procedure DB.DBA.TUT_NORTHWIND_MAKE_RDF_DET()
{
declare uriqa_str varchar;
uriqa_str := cfg_item_value(virtuoso_ini_path(), 'URIQA','DefaultHost');
uriqa_str := 'http://' || uriqa_str || '/tutorial/Northwind';
DB.DBA."RDFData_MAKE_DET_COL" ('/DAV/VAD/tutorial/rdfview/rd_v_1/RDFData/', uriqa_str, NULL);
VHOST_REMOVE (lpath=>'/tutorial/Northwind/data/rdf');
DB.DBA.VHOST_DEFINE (lpath=>'/tutorial/Northwind/data/rdf', ppath=>'/DAV/VAD/tutorial/rdfview/rd_v_1/RDFData/All/', is_dav=>1, vsp_user=>'dba');
}
;
DB.DBA.TUT_NORTHWIND_MAKE_RDF_DET();
drop procedure DB.DBA.TUT_NORTHWIND_MAKE_RDF_DET;
--procedure to convert path to DET resource name - used by URL rewrite regex rule tut_nw_rdf
--create procedure DB.DBA.TUT_NORTHWIND_DET_REF (in par varchar, in fmt varchar, in val varchar)
--{
-- declare res, iri any;
-- declare uriqa_str varchar;
-- uriqa_str := cfg_item_value(virtuoso_ini_path(), 'URIQA','DefaultHost');
-- uriqa_str := 'http://' || uriqa_str || '/tutorial/Northwind';
-- iri := uriqa_str || val;
-- res := sprintf ('iid (%d).rdf', iri_id_num (iri_to_id (iri)));
-- return sprintf (fmt, res);
--}
--;
--DB.DBA.URLREWRITE_CREATE_REGEX_RULE ('tut_nw_rdf', 1,
-- '/tutorial/Northwind/(.*)', vector('path'), 1,
-- '/tutorial/Northwind/data/rdf/%U', vector('path'),
-- 'DB.DBA.TUT_NORTHWIND_DET_REF',
-- 'application/rdf.xml',
-- 2,
-- 303);
|