Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
CREATE TABLESPACE rdf_tblspace
 DATAFILE '/u01/app/oracle/product/11.1.0/db_1/rdf_tblspace.dat' SIZE 1024M REUSE
 AUTOEXTEND ON NEXT 256M MAXSIZE UNLIMITED
 SEGMENT SPACE MANAGEMENT AUTO;

Step 3: create a semantic network

A "semantic network" is an Oracle construct that is used to support the creation and use of "semantic models" in a tablespace. When an OracleContext is initialized, it will create a model using the semantic network. To create the semantic network, use the following form:

Code Block



EXECUTE SEM_APIS.CREATE_SEM_NETWORK('rdf_tblspace');

(the parameter is the name of the tablespace for which you want to create the network.)

...