RDF Support in Oracle Oracle USA Inc.
|
|
|
- Kory Lynch
- 9 years ago
- Views:
Transcription
1 RDF Support in Oracle Oracle USA Inc. 1. Introduction Resource Description Framework (RDF) is a standard for representing information that can be identified using a Universal Resource Identifier (URI). In particular, it is intended for representing metadata about Web resources [1]. RDF is being used to represent data in numerous application areas, including Life Sciences, Digital Libraries, Geospatial Technologies, Intelligence, Electronic Commerce, and Personal Information Management. RDF provides the basic building blocks for supporting the Semantic Web [2]. The simplicity of its structure promotes interoperability across applications, and its machine-understandable format facilitates the automated processing of Web resources [3]. To represent data in RDF, each statement is broken into a <subject, predicate, object> triple. This triple is effectively modelled as a directed graph: The subject and object of the triple are modelled as nodes, and the predicate (or property) as a directed link that describes the relationship between the nodes. The direction of the link always points towards the object (Figure 1). Subject Predicate Object Figure 1: RDF Triple in Directed Graph Data Model In this paper we describe Oracle s approach to managing RDF data. We introduce a new Oracle object type for storing RDF data. The RDF data store is built on top of the Oracle Spatial Network Data Model (NDM). NDM is Oracle s solution for storing, managing, and analysing networks or graphs in the database. The RDF directed graph structure is therefore effectively modelled in NDM as a directed logical network. RDF data is stored in a central schema in Oracle: there is one universe for all RDF data in the database, and userlevel access functions and constructors are provided for query and update. RDF triples are parsed and stored in the system as entries in the RDF store. Nodes in the RDF network are uniquely stored and are reused when encountered in incoming triples. A user defined application table is required to store triples corresponding to an RDF model. In these user-defined application tables, only references are stored to point to the actual triple stored in the central RDF data store. This central storage of RDF data allows analysis to be readily performed across all RDF application tables (models) in the database or on selected applications tables (models). 2. Benefits of RDF in Oracle 10g Oracle Spatial10g release 2 introduces the industry s first open, scalable, secure and reliable data management platform for RDF-based applications. A new object types have been defined to manage RDF data in Oracle. Based on a graph data model, RDF triples are persisted, indexed and queried, similar to other object-relational data types. The Oracle10g RDF database ensures that application developers benefit from the scalability of the Oracle database to deploy scalable semantic-based enterprise applications. Moreover, applications developers benefit from a RDF data model that leverages all of the features from the Oracle10g database.
2 RDF Application Areas Web Metadata: providing information about Web resources and systems that use them (content rating, capabilities, privacy) Life Sciences applications: query knowledge bases that can vary from simple taxonomies to full fledged ontologies Social Network Applications: Friend of a Friend applications, social network tracking and navigation common in security and intelligence applications Semantic Information Integration: define shared, central business information model (ontology) to support information sharing across applications Semantic Web: Enable automated processing of Web information by software agents Portals and e-marketplace Applications: ability to query large amounts of metadata RDF Specific Functionality Full support for RDF statements and RDF schema Perform SQL search and retrieval of RDF models using graph patterns Supports all RDF data types (URIs, blank nodes, plain litterals, typed litterals, long litterals, collection types) Incorporates inferencing of RDF schema Search a RDF model containing origin of data (provenance) using graph pattern Search RDF model by including inferred triples Reification of assertions (statements) Alias based URIs in graph pattern Syntax for specifying user defined rules Data Access: SQL and Java API Subsumption: Support for subclassof and subpropertyof Framework for user defined inferencing rules Visualization tool for representing logical graph view of RDF data Related Oracle DBMS features Clustered database servers Partitioning: Oracle table partitioning in support of very large graphs Parallelism: Oracle parallelism to support load, index and query of very large graph models Data Loading: Import and export data in triple formats (e.g. N-triple) using Oracle s SQL Loader utility Spatial analysis of location-based information Temporal Analysis (time series, time stamping) Versioning Text Search Support for unstructured data types (e.g. XML, spatial, images, georaster imagery, audio, video, text) XML tools Middleware: Integrated with germane Oracle Application Server technology (BPEL, XSLT, UDDI, portal, 3. RDF Concepts A complete description of the RDF language, including its concepts, abstract syntax, and semantics, is available on the Website: In this section we briefly review the RDF concepts (triples, graphs, containers, and reification) addressed in this paper. Each RDF statement describing a resource is represented using a triple. And a set of triples is known as an RDF graph or model. The components of a triple are the subject, represented by a URI or a blank node; the predicate or property, represented by a URI; and the object, represented by a URI, a blank node, or a literal:
3 A URI (e.g. is a more general form of Uniform Resource Locator (URL). It allows information about a resource to be recorded without the use of a specific network address. A blank node is used when a subject or object node is unknown. It is also used when the relationship between a subject and an object node is n-ary (as is the case with RDF containers). A blank node is prefixed with the identifier _: and has the form _:anyname001. A literal is basically a string with an optional language tag. It is used to represent values like names, dates, and numbers. A typed literal (e.g. 25 ^^ is a string combined with a datatype. The datatype is always a URI. To describe groups of things in RDF (for example, to illustrate that a class has several students), a resource called a container is used. The participants of a container are called members. To represent a container and its members, a blank node is typically generated for the container, and each member is attached to this node as the object of a triple. Reification is the description of a triple using the RDF vocabulary. The reification vocabulary consists of four statements, which make up the reification quad. For example, the triple <S,P,O> reified by a resource R is represented by the four triples: <R, rdf:type, rdf:statement> <R, rdf:subject, S> <R, rdf:property, P> <R, rdf:object, O> Assertions can then be made about triple <S,P,O>, using R, for example, <N, ora:said, R>. Reification therefore allows triples to be attached as properties to other triples. 4. Data Storage in Oracle The RDF store in Oracle is built on top of the Oracle Spatial Network Data Model (NDM), in which a network or graph captures relationships between objects using connectivity. RDF graphs are modelled as a directed logical network in NDM. In this network, the subjects and objects of triples are mapped to nodes, and predicates (or properties) are mapped to links that have subject start-nodes and object end-nodes. A link, therefore, represents a complete RDF triple. A key feature of RDF storage in Oracle is that nodes are stored only once regardless of the number of times they participate in triples. But a new link is always created whenever a new triple is inserted. Figure 2 illustrates how an RDF graph of three RDF triples: <S1, P1, O1>; <S1, P2, O2>; <S2, P2, O2> is modelled. When a triple is deleted from the database, the corresponding link is removed. However, the nodes attached to this link are not removed if there are other links connected to them. S1 P1 O1 S2 P2 P2 O2 <S1, P1, O1> <S1, P2, O2> <S2, P2, O2> Figure 2: RDF Graph in Oracle In Oracle, RDF triples are parsed and stored in global tables under a central schema. All the triples for all the RDF graphs (or models) in the database are stored under this schema. Only references (IDs) to these triples are stored in the user-defined application tables that may contain other attributes related to the triples. And functions are provided to retrieve the actual triples when necessary. The required tables for RDF data storage are: RDF_MODEL$, RDF_VALUE$, RDF_NODE$, RDF_LINK$, and RDF_BLANK_NODE$. The RDF_NODE$ and RDF_LINK$ tables.
4 4.1 Inserting Triples into the RDF data store When a user attempts to insert a triple, the RDF_MODEL$ table is first checked to ensure that the RDF graph exists. The RDF_VALUE$ table is then checked to determine if the text values for each part of the triple (subject, predicate, object) already exist in the database. If they already exist, their VALUE_IDs are retrieved. The RDF_LINK$ table is then checked to determine if the triple already exists in the specified graph. If the triple already exists in the specified graph, the IDs for the previously inserted triple are returned and no new inserts are made into the data store. If the text values for the triple are not found in the RDF_VALUE$ table, they are inserted into the table and assigned new VALUE_IDs. The VALUE_IDs corresponding to the subject and the object of the triple are inserted into the RDF_NODE$ table. In the RDF_LINK$ table, a new LINK_ID is then generated for the triple. The VALUE_ID for the predicate of the triple becomes the P_VALUE_ID in the RDF_LINK$ table, and the VALUE_IDs for the subject and object of the triple become the START_NODE_ID and END_NODE_ID, respectively. A new record is inserted into the RDF_LINK$ table whenever a new triple is entered into a graph. Inserted triples may contain blank nodes as their subject or object. When encountered, blank nodes are automatically renamed to globally unique, Oracle system-generated blank nodes of the form _:ORABNuniqueID. By default, blank nodes are not reused by the system. However, a user has the option to specify whether a particular blank node is to be reused by incoming triples. In such a case, the blank node s original name, along with the Oracle system-generated name and VALUE_ID are stored in the RDF_BLANK_NODE$ table. Future incoming blank nodes with the same original name and belonging to the same RDF graph will cause the existing blank node in the database to be reused. To load containers, blank nodes must be reused. Entries in the RDF_BLANK_NODE$ table can be safely deleted when their reuse is no longer required. 4.2 RDF Object Types Two new object types have been defined to manage RDF data in Oracle: SDO_RDF_TRIPLE and SDO_RDF- _TRIPLE_S. The SDO_RDF_TRIPLE object is defined to serve as the triple representation of RDF data <subject, predicate, object>. The SDO_RDF_TRIPLE_S (RDF triple storage) object is defined to store persistent RDF data in the database. The RDF triple storage object contains only IDs that point to the triple maintained in the central schema. Several constructors and member functions are provided with the storage object. The SDO_RDF_TRIPLE type provides a triple view of the data, and the SDO_RDF_TRIPLE_S types stores the IDs for the triple. The IDs stored are: RDF_T_ID: the unique triple ID, which is the LINK_ID in the RDF_LINK$ table. RDF_M_ID: the MODEL_ID for the graph, which is the MODEL_ID in the RDF_LINK$ table. RDF_S_ID: the VALUE_ID for the subject, which is the START_NODE_ID in the RDF_LINK$ table. RDF_P_ID: the VALUE_ID for the predicate, which is the P_VALUE_ID in the RDF_LINK$ table. RDF_O_ID: the VALUE_ID for the object, which is the END_NODE_ID in the RDF_LINK$ table. The member function GET_TRIPLE() returns the SDO_RDF_TRIPLE type with the subject, predicate, and object of the triple. The member functions GET_SUBJECT(), GET_PROPERTY() and GET_OBJECT() return the subject, predicate, and object, respectively. The GET_OBJECT() function returns a CLOB type, since the returned object may be a long literal. 5. Examples of Using RDF These following steps are required to work with RDF data in an Oracle database. Since RDF data store tends to be very large, a separate tablespace for all RDF tables is recommended. Users must be connected as a user with appropriate privileges to create the tablespace. The following example creates a tablespace named RDF_TBLSPACE: CREATE TABLESPACE rdf_tblspace DATAFILE '/oradata/orcl/rdf_tblspace.dat' SIZE 1024M REUSE AUTOEXTEND ON NEXT 256M MAXSIZE UNLIMITED SEGMENT SPACE MANAGEMENT AUTO;
5 1. Create an RDF network: Creating an RDF network enables RDF store in the Oracle database. Only users with DBA privilege can create an RDF network. Create the network only once for an Oracle database instance. The following example creates an RDF network using a tablespace named RDF_TBLSPACE (which must already exist): EXECUTE SDO_RDF.CREATE_RDF_NETWORK('rdf_tblspace'); If database user SCOTT will now be used to create the RDF application tables and create RDF models, user SCOTT needs this privilege. So grant this privilege while connected as a DBA user. GRANT EXECUTE ON MDSYS.RDF_APIS_INTERNAL TO SCOTT; 2. Create a table to store references to the RDF data: Users do not need the DBA privilege for this step. This table must contain a column of type SDO_RDF_TRIPLE_S, which will contain references to all data associated with a single RDF model. It is recommended that this table include a column named ID of type NUMBER and a column named TRIPLE of type SDO_RDF_TRIPLE_S (the default loaders provided by Oracle assume these columns). The following example creates a table named FAMILY_RDF_DATA: CREATE TABLE FAMILY_RDF_DATA (id NUMBER, triple SDO_RDF_TRIPLE_S); 3. Create an RDF model: An RDF model is created by specifying a model name, the table name to hold references to RDF data for the model, and the column of type SDO_RDF_TRIPLE_S in that table. The following command creates a model named FAMILY, which will use the table created in the preceding step. EXECUTE SDO_RDF.CREATE_RDF_MODEL('FAMILY', 'FAMILY_RDF_DATA', 'TRIPLE'); 5.1 Example: Family Tree in RDF This section presents a simple example of an RDF model for statements about a family tree (genealogy). The family relationships in this example reflect the tree shown in Figure 4. This figure also shows some of the information directly stated in the example: Cathy is the sister of Jack, both Jack and Tom are male, and Cindy is female. Figure 3: Family Tree The rows inserted into the FAMILY_RDF_DATA table (shown in Appendinx A 1) express the following information: John and Janice have two children, Suzie and Matt. Matt married Martha, and they have two children: Tom (male, height 5.75) and Cindy (female, height 06.00). Suzie married Sammy, and they have two children: Cathy (height 5.8) and Jack (male, height 6). After the data is inserted into the FAMILY_RDF_DATA table, inferencing queries can be executed on this data as shown in the following examples.
6 -- Select all males from the family model SELECT m MALES FROM TABLE(SDO_RDF_MATCH( '(?m rdf:type :Male)', SDO_RDF_Models('family'), null, SDO_RDF_Aliases(SDO_RDF_Alias('',' null)); MALES Select all grandfathers and their grandchildren from the family model, -- No rows will be returned as grandparentof relationship is not explicitly -- defined in the data SELECT x grandparent, y grandchild FROM TABLE(SDO_RDF_MATCH( '(?x :grandparentof?y) (?x rdf:type :Male)', SDO_RDF_Models('family'), null, SDO_RDF_Aliases(SDO_RDF_Alias('',' null)); no rows selected Oracle s RDF data store allows for the storage of multiple representations of literal values. For example, in the SQL insert statements in Appendix A1, the last three statements make assertions about height of Jack, Tom and Cindy. Jack and Cindy are both 6ft tall, but the values are entered differently so that lexically they look different. When this value is stored in the RDF store, a generic representation is used to treat them both as equivalent values, but at the same time, the original value is also preserved. The following query shows how to get both Jack and Cindy with a single query that asks about height. This example also shows how to use literal constants in the RDF query. SELECT p Person, h Height FROM TABLE(SDO_RDF_MATCH( '(?p :height "06.00"^^xsd:decimal) (?p :height?h)', SDO_RDF_Models('family'), null, SDO_RDF_Aliases(SDO_RDF_Alias('',' null)); PERSON HEIGHT
7 5.2 RDF Schema RDF does not make assumptions about any particular application domain, nor does it define the semantics of any domain. For example, in this family model, there is no domain specific constraint that only males can be the objects of fatherof relationship. RDF Schema lets users define the domain for an application. This information is represented using the concepts of classes, properties, and attributes. In the family example, Person is a class that has two subslasses: Male and Female. And parentof is a property that has two subproperties: fatherof and motherof. And siblingof is a property that has two subproperties: brotherof and sisterof. The properties fatherof and brotherof have the attribute Male, and motherof and sisterof have the attribute Female. Appendix A2 shows triples which are inserted into the FAMILY RDF model to take advantage of the RDFS rules. Creating Rule Indexes RDFS inferencing rules can be used in answering RDF queries by enabling the RDFS rules for a given set of RDF models. A rule index is created for a set of RDF models and at the query time, users can optionally specify the use of RDFS rules in answering RDF queries. The rules index will pre-generate (forward chain) all the triples which can be inferred using the RDFS rules. This pre-generation process is done by creating a rules index as shown in this example: -- RDFS inferencing in the family model BEGIN SDO_RDF_INFERENCE.CREATE_RULES_INDEX( 'rdfs_rix_family', SDO_RDF_Models('family'), SDO_RDF_Rulebases('RDFS')); END; / Once this rules index is created, the inference query to find all the males from the family model can be executed with the option of using the RDFS inferencing in answering the query: -- Select all males from the family model, with RDFS inferencing. SELECT m MALES FROM TABLE(SDO_RDF_MATCH( '(?m rdf:type :Male)', SDO_RDF_Models('family'), SDO_RDF_Rulebases('RDFS'), SDO_RDF_Aliases(SDO_RDF_Alias('',' null)); MALES Creating Rule Bases In addition to the base RDFS rules, users can create their own set of rule bases and use them in inferencing queries. For example, for the family RDF model, users can define a grandparentof rule to define the grand parent property. A rules index is then created to enable this rule for use in inferencing queries. The following example shows how to define a user defined rule and corresponding rules index. This time the RULES INDEX is created for RDFS and FAMILY_RB together.
8 EXECUTE SDO_RDF_INFERENCE.CREATE_RULEBASE('family_rb'); INSERT INTO mdsys.rdfr_family_rb VALUES( 'grandparent_rule', '(?x :parentof?y) (?y :parentof?z)', NULL, '(?x :grandparentof?z)', SDO_RDF_Aliases(SDO_RDF_Alias('',' EXECUTE SDO_RDF_INFERENCE.DROP_RULES_INDEX ('rdfs_rix_family'); BEGIN SDO_RDF_INFERENCE.CREATE_RULES_INDEX( 'rdfs_rix_family', SDO_RDF_Models('family'), SDO_RDF_Rulebases('RDFS', 'family_rb')); END; / -- Select all grandfathers and their grandchildren from the family model. -- Use inferencing from both the RDFS and family_rb rulebases. SELECT x grandparent, y grandchild FROM TABLE(SDO_RDF_MATCH( '(?x :grandparentof?y) (?x rdf:type :Male)', SDO_RDF_Models('family'), SDO_RDF_Rulebases('RDFS','family_rb'), SDO_RDF_Aliases(SDO_RDF_Alias('',' null)); GRANDPARENT GRANDCHILD One can also create rule bases with a filter condition. For example, the above GRANDPARENT_RULE can be modified to find only those grand parents who are grand parents of children above 6ft tall. The following example shows the SQL for this case.
9 UPDATE mdsys.rdfr_family_rb SET antecedents = '(?x :parentof?y) (?y :parentof?z) (?z :height?h)', filter = 'h >= 6', aliases = SDO_RDF_Aliases(SDO_RDF_Alias('',' WHERE rule_name = 'GRANDPARENT_RULE'; -- See the result of the update. SELECT index_name, status FROM MDSYS.RDF_RULES_INDEX_INFO; INDEX_NAME STATUS RDFS_RIX_FAMILY INVALID -- Because the rulebase has been updated, drop the preceding rules index, -- and then re-create it. EXECUTE SDO_RDF_INFERENCE.DROP_RULES_INDEX ('rdfs_rix_family'); -- Re-create the rules index. BEGIN SDO_RDF_INFERENCE.CREATE_RULES_INDEX( 'rdfs_rix_family', SDO_RDF_Models('family'), SDO_RDF_Rulebases('RDFS','family_rb')); END; / -- Find the rules index that was just created (that is, the -- one based on the specified model and rulebases). SELECT SDO_RDF_INFERENCE.LOOKUP_RULES_INDEX(SDO_RDF_MODELS('family'), SDO_RDF_RULEBASES('RDFS','family_rb')) AS lookup_rules_index FROM DUAL; LOOKUP_RULES_INDEX RDFS_RIX_FAMILY -- Select grandfathers of tall (>= 6) grandchildren, and their -- tall grandchildren. SELECT x grandparent, y TallGrandChild FROM TABLE(SDO_RDF_MATCH( '(?x :grandparentof?y) (?x rdf:type :Male)', SDO_RDF_Models('family'), SDO_RDF_RuleBases('RDFS','family_rb'), SDO_RDF_Aliases(SDO_RDF_Alias('',' null)); GRANDPARENT TALLGRANDCHILD
10 Appendix A 1 -- John is the father of Suzie. INSERT INTO family_rdf_data VALUES (1, SDO_RDF_TRIPLE_S('family', '', ' -- John is the father of Matt. INSERT INTO family_rdf_data VALUES (2, SDO_RDF_TRIPLE_S('family', '', ' ' -- Janice is the mother of Suzie. INSERT INTO family_rdf_data VALUES (3, SDO_RDF_TRIPLE_S('family', ' ' -- Janice is the mother of Matt. INSERT INTO family_rdf_data VALUES (4, SDO_RDF_TRIPLE_S('family', ' ' -- Sammy is the father of Cathy. INSERT INTO family_rdf_data VALUES (5, SDO_RDF_TRIPLE_S('family', ' ' ' -- Sammy is the father of Jack. INSERT INTO family_rdf_data VALUES (6, SDO_RDF_TRIPLE_S('family', ' ' ' -- Suzie is the mother of Cathy. INSERT INTO family_rdf_data VALUES (7, SDO_RDF_TRIPLE_S('family', ' ' -- Suzie is the mother of Jack. INSERT INTO family_rdf_data VALUES (8, SDO_RDF_TRIPLE_S('family', ' ' ' -- Matt is the father of Tom. INSERT INTO family_rdf_data VALUES (9, SDO_RDF_TRIPLE_S('family', ' ' ' -- Matt is the father of Cindy INSERT INTO family_rdf_data VALUES (10, SDO_RDF_TRIPLE_S('family', ' ' -- Martha is the mother of Tom. INSERT INTO family_rdf_data VALUES (11, SDO_RDF_TRIPLE_S('family', ' ' ' -- Martha is the mother of Cindy. INSERT INTO family_rdf_data VALUES (12, SDO_RDF_TRIPLE_S('family', ' ' -- Cathy is the sister of Jack.
11 INSERT INTO family_rdf_data VALUES (13, SDO_RDF_TRIPLE_S('family', ' ' ' -- Jack is male. INSERT INTO family_rdf_data VALUES (14, SDO_RDF_TRIPLE_S('family', ' ' ' -- Tom is male. INSERT INTO family_rdf_data VALUES (15, SDO_RDF_TRIPLE_S('family', ' ' ' -- Cindy is female. INSERT INTO family_rdf_data VALUES (16, SDO_RDF_TRIPLE_S('family', ' ' ' -- Use SET ESCAPE OFF to prevent the caret (^) from being -- interpreted as an escape character. Two carets (^^) are -- used to represent typed literals. SET ESCAPE OFF; -- Cathy's height is 5.8 (decimal). INSERT INTO family_rdf_data VALUES (30, SDO_RDF_TRIPLE_S('family', ' ' '"5.8"^^xsd:decimal')); -- Jack's height is 6 (integer). INSERT INTO family_rdf_data VALUES (31, SDO_RDF_TRIPLE_S('family', ' ' '"6"^^xsd:integer')); -- Tom's height is (decimal). INSERT INTO family_rdf_data VALUES (32, SDO_RDF_TRIPLE_S('family', ' ' '"05.75"^^xsd:decimal')); -- Cindy's height is (decimal). INSERT INTO family_rdf_data VALUES (33, SDO_RDF_TRIPLE_S('family', ' ' '"06.00"^^xsd:decimal')); Appendix A 2 -- Person is a class. INSERT INTO family_rdf_data VALUES (17, SDO_RDF_TRIPLE_S('family', ' ' ' -- Male is a subclass of Person. INSERT INTO family_rdf_data VALUES (18, SDO_RDF_TRIPLE_S('family', '
12 ' ' -- Female is a subclass of Person. INSERT INTO family_rdf_data VALUES (19, SDO_RDF_TRIPLE_S('family', ' ' ' -- siblingof is a property. INSERT INTO family_rdf_data VALUES (20, SDO_RDF_TRIPLE_S('family', ' ' ' -- parentof is a property. INSERT INTO family_rdf_data VALUES (21, SDO_RDF_TRIPLE_S('family', ' ' ' -- brotherof is a subproperty of siblingof. INSERT INTO family_rdf_data VALUES (22, SDO_RDF_TRIPLE_S('family', ' ' ' -- sisterof is a subproperty of siblingof. INSERT INTO family_rdf_data VALUES (23, SDO_RDF_TRIPLE_S('family', ' ' ' -- A brother is male. INSERT INTO family_rdf_data VALUES (24, SDO_RDF_TRIPLE_S('family', ' ' ' -- A sister is female. INSERT INTO family_rdf_data VALUES (25, SDO_RDF_TRIPLE_S('family', ' ' ' -- fatherof is a subproperty of parentof. INSERT INTO family_rdf_data VALUES (26, SDO_RDF_TRIPLE_S('family', ' ' ' -- motherof is a subproperty of parentof. INSERT INTO family_rdf_data VALUES (27, SDO_RDF_TRIPLE_S('family', ' ' ' -- A father is male. INSERT INTO family_rdf_data VALUES (28, SDO_RDF_TRIPLE_S('family', ' ' ' -- A mother is female.
13 INSERT INTO family_rdf_data VALUES (29, SDO_RDF_TRIPLE_S('family', ' ' ' References [1] W3C, RDF Primer, (as of 02/24/2005). [2] W3C, Semantic Web, (as of 02/24/2005). [3] W3C, Frequently Asked Questions about RDF, (as of 02/24/2005). [4] Kowari, (as of 02/24/2005). [5] Sesame, (as of 02/24/2005). [6] N. Alexander, X. Lopez, S. Ravada, S. Stephens, and J. Wang. RDF Data Model in Oracle. in W3C Workshop on Semantic Web for Life Sciences Cambridge, Massachusetts, USA. [7] Oracle Corporation, Application Developer's Guide Object-Relational Features. 10g Release 1 (10.1) ed [8] Oracle Corporation, Topology and Network Data Models. 10g Release 1 (10.1) ed [9] S. Powers, Practical RDF. First ed. 2003: O'Reilly & Associates, Inc [10] J. Carroll, I. Dickinson, C. Dollin, D. Reynolds, A. Seaborne, and K. Wilkinson. Jena: Implementing the Semantic Web Recommendations. in World Wide Web Conference New York, New York, USA. [11] Oracle Corporation, Oracle XML DB Developer's Guide, 10g Release 1 (10.1) ed
Semantic Stored Procedures Programming Environment and performance analysis
Semantic Stored Procedures Programming Environment and performance analysis Marjan Efremov 1, Vladimir Zdraveski 2, Petar Ristoski 2, Dimitar Trajanov 2 1 Open Mind Solutions Skopje, bul. Kliment Ohridski
Logic and Reasoning in the Semantic Web (part I RDF/RDFS)
Logic and Reasoning in the Semantic Web (part I RDF/RDFS) Fulvio Corno, Laura Farinetti Politecnico di Torino Dipartimento di Automatica e Informatica e-lite Research Group http://elite.polito.it Outline
Graph Database Performance: An Oracle Perspective
Graph Database Performance: An Oracle Perspective Xavier Lopez, Ph.D. Senior Director, Product Management 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. Program Agenda Broad Perspective
The Semantic Web for Application Developers. Oracle New England Development Center Zhe Wu, Ph.D. [email protected] 1
The Semantic Web for Application Developers Oracle New England Development Center Zhe Wu, Ph.D. [email protected] 1 Agenda Background 10gR2 RDF 11g RDF/OWL New 11g features Bulk loader Semantic operators
Semantic Modeling with RDF. DBTech ExtWorkshop on Database Modeling and Semantic Modeling Lili Aunimo
DBTech ExtWorkshop on Database Modeling and Semantic Modeling Lili Aunimo Expected Outcomes You will learn: Basic concepts related to ontologies Semantic model Semantic web Basic features of RDF and RDF
RDF Resource Description Framework
RDF Resource Description Framework Fulvio Corno, Laura Farinetti Politecnico di Torino Dipartimento di Automatica e Informatica e-lite Research Group http://elite.polito.it Outline RDF Design objectives
Geodatabase Programming with SQL
DevSummit DC February 11, 2015 Washington, DC Geodatabase Programming with SQL Craig Gillgrass Assumptions Basic knowledge of SQL and relational databases Basic knowledge of the Geodatabase We ll hold
How To Write A Rdf Database In A Relational Database With A Statement Table
Efficient RDF Storage and Retrieval in Jena2 Kevin Wilkinson 1, Craig Sayers 1, Harumi Kuno 1, Dave Reynolds 2 HP Laboratories 1 1501 Page Mill Road Palo Alto, CA, 94304 USA 2 Filton Road, Stoke Gifford
Network Graph Databases, RDF, SPARQL, and SNA
Network Graph Databases, RDF, SPARQL, and SNA NoCOUG Summer Conference August 16 2012 at Chevron in San Ramon, CA David Abercrombie Data Analytics Engineer, Tapjoy [email protected] About me
Data Store Interface Design and Implementation
WDS'07 Proceedings of Contributed Papers, Part I, 110 115, 2007. ISBN 978-80-7378-023-4 MATFYZPRESS Web Storage Interface J. Tykal Charles University, Faculty of Mathematics and Physics, Prague, Czech
13 RDFS and SPARQL. Internet Technology. MSc in Communication Sciences 2011-12 Program in Technologies for Human Communication.
MSc in Communication Sciences 2011-12 Program in Technologies for Human Communication Davide Eynard nternet Technology 13 RDFS and SPARQL 2 RDF - Summary Main characteristics of RDF: Abstract syntax based
1 File Processing Systems
COMP 378 Database Systems Notes for Chapter 1 of Database System Concepts Introduction A database management system (DBMS) is a collection of data and an integrated set of programs that access that data.
ABSTRACT 1. INTRODUCTION. Kamil Bajda-Pawlikowski [email protected]
Kamil Bajda-Pawlikowski [email protected] Querying RDF data stored in DBMS: SPARQL to SQL Conversion Yale University technical report #1409 ABSTRACT This paper discusses the design and implementation
Oracle Database 10g: Introduction to SQL
Oracle University Contact Us: 1.800.529.0165 Oracle Database 10g: Introduction to SQL Duration: 5 Days What you will learn This course offers students an introduction to Oracle Database 10g database technology.
Grids, Logs, and the Resource Description Framework
Grids, Logs, and the Resource Description Framework Mark A. Holliday Department of Mathematics and Computer Science Western Carolina University Cullowhee, NC 28723, USA [email protected] Mark A. Baker,
BUSINESS VALUE OF SEMANTIC TECHNOLOGY
BUSINESS VALUE OF SEMANTIC TECHNOLOGY Preliminary Findings Industry Advisory Council Emerging Technology (ET) SIG Information Sharing & Collaboration Committee July 15, 2005 Mills Davis Managing Director
Secure Semantic Web Service Using SAML
Secure Semantic Web Service Using SAML JOO-YOUNG LEE and KI-YOUNG MOON Information Security Department Electronics and Telecommunications Research Institute 161 Gajeong-dong, Yuseong-gu, Daejeon KOREA
DISCOVERING RESUME INFORMATION USING LINKED DATA
DISCOVERING RESUME INFORMATION USING LINKED DATA Ujjal Marjit 1, Kumar Sharma 2 and Utpal Biswas 3 1 C.I.R.M, University Kalyani, Kalyani (West Bengal) India [email protected] 2 Department of Computer
Performance Analysis, Data Sharing, Tools Integration: New Approach based on Ontology
Performance Analysis, Data Sharing, Tools Integration: New Approach based on Ontology Hong-Linh Truong Institute for Software Science, University of Vienna, Austria [email protected] Thomas Fahringer
Geospatial Platforms For Enabling Workflows
Geospatial Platforms For Enabling Workflows Steven Hagan Vice President Oracle Database Server Technologies November, 2015 Evolution of Enabling Workflows HENRY FORD 100 YEARS AGO Industrialized the Manufacturing
MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC
MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL
Oracle Spatial and Graph. Jayant Sharma Director, Product Management
Oracle Spatial and Graph Jayant Sharma Director, Product Management Agenda Oracle Spatial and Graph Graph Capabilities Q&A 2 Oracle Spatial and Graph Complete Open Integrated Most Widely Used 3 Open and
FIFTH EDITION. Oracle Essentials. Rick Greenwald, Robert Stackowiak, and. Jonathan Stern O'REILLY" Tokyo. Koln Sebastopol. Cambridge Farnham.
FIFTH EDITION Oracle Essentials Rick Greenwald, Robert Stackowiak, and Jonathan Stern O'REILLY" Beijing Cambridge Farnham Koln Sebastopol Tokyo _ Table of Contents Preface xiii 1. Introducing Oracle 1
Big Data, Cloud Computing, Spatial Databases Steven Hagan Vice President Server Technologies
Big Data, Cloud Computing, Spatial Databases Steven Hagan Vice President Server Technologies Big Data: Global Digital Data Growth Growing leaps and bounds by 40+% Year over Year! 2009 =.8 Zetabytes =.08
Put SPARQL in Your Code: Building Applications with Oracle Semantic Technologies. Xavier Lopez, Ph.D. Zhe Wu, Ph.D. Souripriya Das, Ph.D.
Put SPARQL in Your Code: Building Applications with Oracle Semantic Technologies Xavier Lopez, Ph.D. Zhe Wu, Ph.D. Souripriya Das, Ph.D. Semantics at OOW 2009 - Sessions Date/Time Title Location Sunday,
HP Quality Center. Upgrade Preparation Guide
HP Quality Center Upgrade Preparation Guide Document Release Date: November 2008 Software Release Date: November 2008 Legal Notices Warranty The only warranties for HP products and services are set forth
Integrating VoltDB with Hadoop
The NewSQL database you ll never outgrow Integrating with Hadoop Hadoop is an open source framework for managing and manipulating massive volumes of data. is an database for handling high velocity data.
An Oracle White Paper February 2009. Managing Unstructured Data with Oracle Database 11g
An Oracle White Paper February 2009 Managing Unstructured Data with Oracle Database 11g Introduction The vast majority of the information used by corporations, enterprises, and other organizations is referred
Introduction to Ontologies
Technological challenges Introduction to Ontologies Combining relational databases and ontologies Author : Marc Lieber Date : 21-Jan-2014 BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR.
A Comparison of Database Query Languages: SQL, SPARQL, CQL, DMX
ISSN: 2393-8528 Contents lists available at www.ijicse.in International Journal of Innovative Computer Science & Engineering Volume 3 Issue 2; March-April-2016; Page No. 09-13 A Comparison of Database
SPARQL: Un Lenguaje de Consulta para la Web
SPARQL: Un Lenguaje de Consulta para la Web Semántica Marcelo Arenas Pontificia Universidad Católica de Chile y Centro de Investigación de la Web M. Arenas SPARQL: Un Lenguaje de Consulta para la Web Semántica
The Relational Model. Why Study the Relational Model?
The Relational Model Chapter 3 Instructor: Vladimir Zadorozhny [email protected] Information Science Program School of Information Sciences, University of Pittsburgh 1 Why Study the Relational Model?
DBMS / Business Intelligence, SQL Server
DBMS / Business Intelligence, SQL Server Orsys, with 30 years of experience, is providing high quality, independant State of the Art seminars and hands-on courses corresponding to the needs of IT professionals.
K@ A collaborative platform for knowledge management
White Paper K@ A collaborative platform for knowledge management Quinary SpA www.quinary.com via Pietrasanta 14 20141 Milano Italia t +39 02 3090 1500 f +39 02 3090 1501 Copyright 2004 Quinary SpA Index
OSLC Primer Learning the concepts of OSLC
OSLC Primer Learning the concepts of OSLC It has become commonplace that specifications are precise in their details but difficult to read and understand unless you already know the basic concepts. A good
Deploying a Geospatial Cloud
Deploying a Geospatial Cloud Traditional Public Sector Computing Environment Traditional Computing Infrastructure Silos of dedicated hardware and software Single application per silo Expensive to size
Oracle Database 12c: Introduction to SQL Ed 1.1
Oracle University Contact Us: 1.800.529.0165 Oracle Database 12c: Introduction to SQL Ed 1.1 Duration: 5 Days What you will learn This Oracle Database: Introduction to SQL training helps you write subqueries,
A Framework for Collaborative Project Planning Using Semantic Web Technology
A Framework for Collaborative Project Planning Using Semantic Web Technology Lijun Shen 1 and David K.H. Chua 2 Abstract Semantic web technology has become an enabling technology for machines to automatically
Getting Started Guide
TopBraid Composer Getting Started Guide Version 2.0 July 21, 2007 TopBraid Composer, Copyright 2006 TopQuadrant, Inc. 1 of 58 Revision History Date Version Revision August 1, 2006 1.0 Initial version September
1Z0-117 Oracle Database 11g Release 2: SQL Tuning. Oracle
1Z0-117 Oracle Database 11g Release 2: SQL Tuning Oracle To purchase Full version of Practice exam click below; http://www.certshome.com/1z0-117-practice-test.html FOR Oracle 1Z0-117 Exam Candidates We
Oracle Architecture, Concepts & Facilities
COURSE CODE: COURSE TITLE: CURRENCY: AUDIENCE: ORAACF Oracle Architecture, Concepts & Facilities 10g & 11g Database administrators, system administrators and developers PREREQUISITES: At least 1 year of
Oracle Data Integrator: Administration and Development
Oracle Data Integrator: Administration and Development What you will learn: In this course you will get an overview of the Active Integration Platform Architecture, and a complete-walk through of the steps
Semantic Data Management. Xavier Lopez, Ph.D., Director, Spatial & Semantic Technologies
Semantic Data Management Xavier Lopez, Ph.D., Director, Spatial & Semantic Technologies 1 Enterprise Information Challenge Source: Oracle customer 2 Vision of Semantically Linked Data The Network of Collaborative
Application of OASIS Integrated Collaboration Object Model (ICOM) with Oracle Database 11g Semantic Technologies
Application of OASIS Integrated Collaboration Object Model (ICOM) with Oracle Database 11g Semantic Technologies Zhe Wu Ramesh Vasudevan Eric S. Chan Oracle Deirdre Lee, Laura Dragan DERI A Presentation
MOC 20461C: Querying Microsoft SQL Server. Course Overview
MOC 20461C: Querying Microsoft SQL Server Course Overview This course provides students with the knowledge and skills to query Microsoft SQL Server. Students will learn about T-SQL querying, SQL Server
Oracle Database 10g Express
Oracle Database 10g Express This tutorial prepares the Oracle Database 10g Express Edition Developer to perform common development and administrative tasks of Oracle Database 10g Express Edition. Objectives
SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24. Data Federation Administration Tool Guide
SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24 Data Federation Administration Tool Guide Content 1 What's new in the.... 5 2 Introduction to administration
news from Tom Bacon about Monday's lecture
ECRIC news from Tom Bacon about Monday's lecture I won't be at the lecture on Monday due to the work swamp. The plan is still to try and get into the data centre in two weeks time and do the next migration,
powl Features and Usage Overview
powl Features and Usage Overview Live demonstrations and further information is available from: http://powl.sourceforge.net/swc Sören Auer University of Leipzig [email protected] Norman Beck
Physical Design. Meeting the needs of the users is the gold standard against which we measure our success in creating a database.
Physical Design Physical Database Design (Defined): Process of producing a description of the implementation of the database on secondary storage; it describes the base relations, file organizations, and
How To Create A Table In Sql 2.5.2.2 (Ahem)
Database Systems Unit 5 Database Implementation: SQL Data Definition Language Learning Goals In this unit you will learn how to transfer a logical data model into a physical database, how to extend or
Semantic Interoperability
Ivan Herman Semantic Interoperability Olle Olsson Swedish W3C Office Swedish Institute of Computer Science (SICS) Stockholm Apr 27 2011 (2) Background Stockholm Apr 27, 2011 (2) Trends: from
DLDB: Extending Relational Databases to Support Semantic Web Queries
DLDB: Extending Relational Databases to Support Semantic Web Queries Zhengxiang Pan (Lehigh University, USA [email protected]) Jeff Heflin (Lehigh University, USA [email protected]) Abstract: We
MyOra 3.5. User Guide. SQL Tool for Oracle. Kris Murthy
MyOra 3.5 SQL Tool for Oracle User Guide Kris Murthy Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL Editor...
A generic approach for data integration using RDF, OWL and XML
A generic approach for data integration using RDF, OWL and XML Miguel A. Macias-Garcia, Victor J. Sosa-Sosa, and Ivan Lopez-Arevalo Laboratory of Information Technology (LTI) CINVESTAV-TAMAULIPAS Km 6
Creating an RDF Graph from a Relational Database Using SPARQL
Creating an RDF Graph from a Relational Database Using SPARQL Ayoub Oudani, Mohamed Bahaj*, Ilias Cherti Department of Mathematics and Informatics, University Hassan I, FSTS, Settat, Morocco. * Corresponding
The Relational Model. Why Study the Relational Model? Relational Database: Definitions
The Relational Model Database Management Systems, R. Ramakrishnan and J. Gehrke 1 Why Study the Relational Model? Most widely used model. Vendors: IBM, Microsoft, Oracle, Sybase, etc. Legacy systems in
OLH: Oracle Loader for Hadoop OSCH: Oracle SQL Connector for Hadoop Distributed File System (HDFS)
Use Data from a Hadoop Cluster with Oracle Database Hands-On Lab Lab Structure Acronyms: OLH: Oracle Loader for Hadoop OSCH: Oracle SQL Connector for Hadoop Distributed File System (HDFS) All files are
Design and Implementation of a Semantic Web Solution for Real-time Reservoir Management
Design and Implementation of a Semantic Web Solution for Real-time Reservoir Management Ram Soma 2, Amol Bakshi 1, Kanwal Gupta 3, Will Da Sie 2, Viktor Prasanna 1 1 University of Southern California,
Benchmarking the Performance of Storage Systems that expose SPARQL Endpoints
Benchmarking the Performance of Storage Systems that expose SPARQL Endpoints Christian Bizer 1 and Andreas Schultz 1 1 Freie Universität Berlin, Web-based Systems Group, Garystr. 21, 14195 Berlin, Germany
technische universiteit eindhoven WIS & Engineering Geert-Jan Houben
WIS & Engineering Geert-Jan Houben Contents Web Information System (WIS) Evolution in Web data WIS Engineering Languages for Web data XML (context only!) RDF XML Querying: XQuery (context only!) RDFS SPARQL
Chapter 5 More SQL: Complex Queries, Triggers, Views, and Schema Modification
Chapter 5 More SQL: Complex Queries, Triggers, Views, and Schema Modification Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 5 Outline More Complex SQL Retrieval Queries
A Review and Comparison of Rule Languages and Rule-based Inference Engines for the Semantic Web
A Review and Comparison of and -based Inference Engines for the Semantic Web Thanyalak Rattanasawad, Kanda Runapongsa Saikaew Department of Computer Engineering, Faculty of Engineering, Khon Kaen University,
E6895 Advanced Big Data Analytics Lecture 4:! Data Store
E6895 Advanced Big Data Analytics Lecture 4:! Data Store Ching-Yung Lin, Ph.D. Adjunct Professor, Dept. of Electrical Engineering and Computer Science Mgr., Dept. of Network Science and Big Data Analytics,
D61830GC30. MySQL for Developers. Summary. Introduction. Prerequisites. At Course completion After completing this course, students will be able to:
D61830GC30 for Developers Summary Duration Vendor Audience 5 Days Oracle Database Administrators, Developers, Web Administrators Level Technology Professional Oracle 5.6 Delivery Method Instructor-led
DISTRIBUTED RDF QUERY PROCESSING AND REASONING FOR BIG DATA / LINKED DATA. A THESIS IN Computer Science
DISTRIBUTED RDF QUERY PROCESSING AND REASONING FOR BIG DATA / LINKED DATA A THESIS IN Computer Science Presented to the Faculty of the University of Missouri-Kansas City in partial fulfillment of the requirements
ONTOLOGY-ORIENTED INFERENCE-BASED LEARNING CONTENT MANAGEMENT SYSTEM
ONTOLOGY-ORIENTED INFERENCE-BASED LEARNING CONTENT MANAGEMENT SYSTEM Mohamed Kholief, Nader Nada, Wedian Khedr College of Computing and Information Technology, Arab Academy for Science, Technology, and
Duration Vendor Audience 5 Days Oracle End Users, Developers, Technical Consultants and Support Staff
D80198GC10 Oracle Database 12c SQL and Fundamentals Summary Duration Vendor Audience 5 Days Oracle End Users, Developers, Technical Consultants and Support Staff Level Professional Delivery Method Instructor-led
A basic create statement for a simple student table would look like the following.
Creating Tables A basic create statement for a simple student table would look like the following. create table Student (SID varchar(10), FirstName varchar(30), LastName varchar(30), EmailAddress varchar(30));
Oracle Data Miner (Extension of SQL Developer 4.0)
An Oracle White Paper September 2013 Oracle Data Miner (Extension of SQL Developer 4.0) Integrate Oracle R Enterprise Mining Algorithms into a workflow using the SQL Query node Denny Wong Oracle Data Mining
Semantic Web Technologies and Data Management
Semantic Web Technologies and Data Management Li Ma, Jing Mei, Yue Pan Krishna Kulkarni Achille Fokoue, Anand Ranganathan IBM China Research Laboratory IBM Software Group IBM Watson Research Center Bei
Oracle EXAM - 1Z0-117. Oracle Database 11g Release 2: SQL Tuning. Buy Full Product. http://www.examskey.com/1z0-117.html
Oracle EXAM - 1Z0-117 Oracle Database 11g Release 2: SQL Tuning Buy Full Product http://www.examskey.com/1z0-117.html Examskey Oracle 1Z0-117 exam demo product is here for you to test the quality of the
Oracle Database 10g: Building GIS Applications Using the Oracle Spatial Network Data Model. An Oracle Technical White Paper May 2005
Oracle Database 10g: Building GIS Applications Using the Oracle Spatial Network Data Model An Oracle Technical White Paper May 2005 Building GIS Applications Using the Oracle Spatial Network Data Model
Ampersand and the Semantic Web
Ampersand and the Semantic Web The Ampersand Conference 2015 Lloyd Rutledge The Semantic Web Billions and billions of data units Triples (subject-predicate-object) of URI s Your data readily integrated
The use of Semantic Web Technologies in Spatial Decision Support Systems
The use of Semantic Web Technologies in Spatial Decision Support Systems Adam Iwaniak Jaromar Łukowicz Iwona Kaczmarek Marek Strzelecki The INSPIRE Conference 2013, 23-27 June Wroclaw University of Environmental
SQL Server An Overview
SQL Server An Overview SQL Server Microsoft SQL Server is designed to work effectively in a number of environments: As a two-tier or multi-tier client/server database system As a desktop database system
DBMS Questions. 3.) For which two constraints are indexes created when the constraint is added?
DBMS Questions 1.) Which type of file is part of the Oracle database? A.) B.) C.) D.) Control file Password file Parameter files Archived log files 2.) Which statements are use to UNLOCK the user? A.)
Discovering SQL. Wiley Publishing, Inc. A HANDS-ON GUIDE FOR BEGINNERS. Alex Kriegel WILEY
Discovering SQL A HANDS-ON GUIDE FOR BEGINNERS Alex Kriegel WILEY Wiley Publishing, Inc. INTRODUCTION xxv CHAPTER 1: DROWNING IN DATA, DYING OF THIRST FOR KNOWLEDGE 1 Data Deluge and Informational Overload
Database Programming with PL/SQL: Learning Objectives
Database Programming with PL/SQL: Learning Objectives This course covers PL/SQL, a procedural language extension to SQL. Through an innovative project-based approach, students learn procedural logic constructs
12 The Semantic Web and RDF
MSc in Communication Sciences 2011-12 Program in Technologies for Human Communication Davide Eynard nternet Technology 12 The Semantic Web and RDF 2 n the previous episodes... A (video) summary: Michael
Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access
Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix Jennifer Clegg, SAS Institute Inc., Cary, NC Eric Hill, SAS Institute Inc., Cary, NC ABSTRACT Release 2.1 of SAS
Semantics and Ontology of Logistic Cloud Services*
Semantics and Ontology of Logistic Cloud s* Dr. Sudhir Agarwal Karlsruhe Institute of Technology (KIT), Germany * Joint work with Julia Hoxha, Andreas Scheuermann, Jörg Leukel Usage Tasks Query Execution
Data Mining Extensions (DMX) Reference
Data Mining Extensions (DMX) Reference SQL Server 2012 Books Online Summary: Data Mining Extensions (DMX) is a language that you can use to create and work with data mining models in Microsoft SQL Server
The Relational Model. Ramakrishnan&Gehrke, Chapter 3 CS4320 1
The Relational Model Ramakrishnan&Gehrke, Chapter 3 CS4320 1 Why Study the Relational Model? Most widely used model. Vendors: IBM, Informix, Microsoft, Oracle, Sybase, etc. Legacy systems in older models
purexml Critical to Capitalizing on ACORD s Potential
purexml Critical to Capitalizing on ACORD s Potential An Insurance & Technology Editorial Perspectives TechWebCast Sponsored by IBM Tuesday, March 27, 2007 9AM PT / 12PM ET SOA, purexml and ACORD Optimization
Ching-Yung Lin, Ph.D. Adjunct Professor, Dept. of Electrical Engineering and Computer Science IBM Chief Scientist, Graph Computing. October 29th, 2015
E6893 Big Data Analytics Lecture 8: Spark Streams and Graph Computing (I) Ching-Yung Lin, Ph.D. Adjunct Professor, Dept. of Electrical Engineering and Computer Science IBM Chief Scientist, Graph Computing
Publishing Linked Data Requires More than Just Using a Tool
Publishing Linked Data Requires More than Just Using a Tool G. Atemezing 1, F. Gandon 2, G. Kepeklian 3, F. Scharffe 4, R. Troncy 1, B. Vatant 5, S. Villata 2 1 EURECOM, 2 Inria, 3 Atos Origin, 4 LIRMM,
Unstructured Data Management with Oracle Database 12c O R A C L E W H I T E P A P E R S E P T E M B E R 2 0 1 4
Unstructured Data Management with Oracle Database 12c O R A C L E W H I T E P A P E R S E P T E M B E R 2 0 1 4 Disclaimer The following is intended to outline our general product direction. It is intended
