RDF_VIEW_SYNC_TO_PHYSICAL
Performs two actions: do triggers on a liked data view and optionally fill
the physical graph.
RDF_VIEW_SYNC_TO_PHYSICAL
(in vgraph varchar,
in load_data int := 0,
in pgraph varchar := null,
in log_mode int := 1,
in load_atomic int := 1);
Description
This function does triggers on a liked data view and optionally fills the
physical graph. Note: applicable for Virtuoso 6.0 and higher.
Parameters
vgraph –
The graph which linked data view defines.
load_data –
1/0 flag to load the triples in the physical store initially.
pgraph –
The destination's physical graph.
log_mode –
This parameter takes integer values: 0,1,2,3. It is used to call log_enable ()
with the same flags.
load_atomic –
This parameter should be set in order to run loading the data in atomic mode. Will
do a checkpoint when done. This mode is default to handle large tables.
Examples
SQL>RDF_VIEW_SYNC_TO_PHYSICAL ('http://www.openlinksw.com/schemas/oplweb#', 0, 'http://mygraph.com', 1, 1);
Done. -- 0 msec.