Package | Description |
---|---|
oracle.pg.rdbms |
This package contains the logic specific to the property graph support on Oracle Database.
|
oracle.pg.rdbms.index.lucene |
This package contains the logic specific to the text indexing and text search using Apache Lucene for property graph support on Oracle Database 12c.
|
oracle.pg.rdbms.index.oratext |
This package contains the logic specific to the text indexing and text search using Oracle Text for property graph support on Oracle Database 12c.
|
oracle.pg.rdbms.index.solr |
This package contains the logic specific to the text indexing and text search using SolrCloud for property graph support on Oracle Database 12c.
|
Modifier and Type | Method and Description |
---|---|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(Oracle oracle,
String szGraphName)
Returns an instance of OraclePropertyGraph using the Oracle connection
and graph name provided.
|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(Oracle oracle,
String szGraphName,
int iHashPartitionsNum)
Returns an instance of OraclePropertyGraph using the Oracle connection
and graph name provided.
|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(Oracle oracle,
String szGraphName,
int iHashPartitionsNum,
int iDOP,
String szTBS,
String szOptions)
Returns an instance of OraclePropertyGraph using the Oracle connection
and graph name provided.
|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(Oracle oracle,
String szGraphOwner,
String szGraphName,
int iHashPartitionsNum,
int iDOP,
String szTBS,
String szOptions)
Returns an instance of OraclePropertyGraph using the Oracle connection
and graph name provided.
|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(oracle.pgx.config.PgRdbmsGraphConfig config)
Gets an OraclePropertyGraph instance from a PGX PgRdbmsGraphConfig object
|
OraclePropertyGraph |
OracleElement.getPropertyGraph()
Gets the property graph instance associated to this object.
|
OraclePropertyGraph |
OracleElementIteratorImpl.getPropertyGraph()
Get the associated property graph
|
Modifier and Type | Method and Description |
---|---|
void |
OraclePropertyGraphDataLoader.commit(OraclePropertyGraph opg)
Commit the changes to the database
|
static void |
OraclePropertyGraphUtils.exportFlatFiles(OraclePropertyGraph pg,
OutputStream osVertex,
OutputStream osEdge,
int dop,
boolean append)
This function exports a given property graph into two flat files: one
for vertices and the other for edges.
|
static void |
OraclePropertyGraphUtils.exportFlatFiles(OraclePropertyGraph pg,
String vertexFileName,
String edgeFileName,
boolean append)
This function exports a given property graph into two flat files: one
for vertices and the other for edges.
|
static void |
OraclePropertyGraphUtils.exportFlatFiles(OraclePropertyGraph pg,
String vertexFileName,
String edgeFileName,
int dop,
boolean append)
This function exports a given property graph into two flat files: one
for vertices and the other for edges.
|
static OracleEdge |
OracleEdge.getInstance(OraclePropertyGraph opg,
Long eid)
Returns an instance of OracleEdge.
|
static OracleVertex |
OracleVertex.getInstance(OraclePropertyGraph opg,
Long vid)
Returns an instance of OracleVertex from the underlying graph
|
static OracleEdge |
OracleEdge.getInstance(OraclePropertyGraph opg,
Long eid,
boolean bCreateIfAbsentFromCache)
Returns an instance of OracleEdge.
|
static OracleVertex |
OracleVertex.getInstance(OraclePropertyGraph opg,
Long vid,
boolean bCreateIfAbsentFromCache)
Returns an instance of OracleVertex.
|
static OracleEdge |
OracleEdge.getInstance(OraclePropertyGraph opg,
Long eid,
boolean bCreateIfAbsentFromCache,
boolean bSkipStoreToCache)
Returns an instance of OracleEdge.
|
static OracleVertex |
OracleVertex.getInstance(OraclePropertyGraph opg,
Long vid,
boolean bCreateIfAbsentFromCache,
boolean bSkipStoreToCache)
Returns an instance of OracleVertex.
|
static OracleEdge |
OracleEdge.getInstance(OraclePropertyGraph opg,
Long eid,
String label,
boolean bCreateIfAbsentFromCache,
boolean bSkipStoreToCache)
Returns an instance of OracleEdge.
|
static OracleEdge |
OracleEdge.getInstance(OraclePropertyGraph opg,
OracleVertexBase outVertex,
OracleVertexBase inVertex,
Long eid,
boolean bCreateIfAbsentFromCache,
boolean bSkipStoreToCache)
Returns an instance of OracleEdge.
|
static OracleEdge |
OracleEdge.getInstance(OraclePropertyGraph opg,
OracleVertexBase outVertex,
OracleVertexBase inVertex,
String edgeLabel,
Long eid)
Returns an instance of OracleEdge.
|
static OracleEdge |
OracleEdge.getInstance(OraclePropertyGraph opg,
OracleVertexBase outVertex,
OracleVertexBase inVertex,
String edgeLabel,
Long eid,
boolean bCreateIfAbsentFromCache)
Returns an instance of OracleEdge.
|
static OracleEdge |
OracleEdge.getInstance(OraclePropertyGraph opg,
OracleVertexBase outVertex,
OracleVertexBase inVertex,
String edgeLabel,
Long eid,
boolean bCreateIfAbsentFromCache,
boolean bSkipStoreToCache)
Returns an instance of OracleEdge.If there is no match in the
cache and bCreateIfAbsentFromCache is false, then a NULL value
will be returned.
|
String |
OraclePropertyGraphDataLoader.getNumToStrColConversion(OraclePropertyGraph opg,
String szColName,
String szTypeColumn)
Return a conversion expression that can convert a numeric column
into a String.
|
int |
OraclePropertyGraphDataLoader.getSessionID(OraclePropertyGraph opg)
get the session ID
|
String |
OraclePropertyGraphDataLoader.getTimeToStrColConversion(OraclePropertyGraph opg,
String szColName,
String szTypeColumn)
Return a conversion expression that can convert a timestamp column
into a String.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
int iBatchSize,
boolean bRebuildIndex,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using JDBC-based loading.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
int iSplitterFlag,
int iBatchSize,
boolean bRebuildIndex,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using JDBC-based loading.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
int iSplitterFlag,
int iBatchSize,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using JDBC-based loading.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
int iPartitions,
int iOffset,
int iBatchSize,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using JDBC-based loading.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
int iBatchSize,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using JDBC-based loading.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
int iSplitterFlag,
String szPrefix,
int iBatchSize,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using JDBC-based loading.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
long lVertexSrcOffsetlines,
long lEdgeSrcOffsetlines,
long lVertexSrcMaxlines,
long lEdgeSrcMaxlines,
long lVertexIDOffset,
long lEdgeIDOffset,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
int iBatchSize,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using JDBC-based loading.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
long lVertexSrcOffsetlines,
long lEdgeSrcOffsetlines,
long lVertexSrcMaxlines,
long lEdgeSrcMaxlines,
long lVertexIDOffset,
long lEdgeIDOffset,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
int iBatchSize,
boolean bRebuildIndex,
String szTbs,
String szOptions,
DataLoaderListener dll)
This method loads given graph data into an OraclePropertyGraph instance in parallel using JDBC-based loading.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
int iDop)
This method loads given graph data into an OraclePropertyGraph instance in parallel using JDBC-based loading
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
int iDop,
int iBatchSize,
boolean bRebuildIndex,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using JDBC-based loading
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
int iDop,
int iSplitterFlag,
int iBatchSize,
boolean bRebuildIndex,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using JDBC-based loading
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
int iDop,
int iSplitterFlag,
int iBatchSize,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using JDBC-based loading
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
int iDop,
int iPartitions,
int iOffset,
int iBatchSize,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using JDBC-based loading.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
int iBatchSize,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using JDBC-based loading.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
int iDop,
int iSplitterFlag,
String szPrefix,
int iBatchSize,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using JDBC-based loading.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
long lVertexSrcOffsetlines,
long lEdgeSrcOffsetlines,
long lVertexSrcMaxlines,
long lEdgeSrcMaxlines,
long lVertexIDOffset,
long lEdgeIDOffset,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
int iBatchSize,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using JDBC-based loading.
|
void |
OraclePropertyGraphDataLoader.loadDataWithExtTab(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
boolean bNamedPipe,
String szDir,
boolean bRebuildIndex,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using External table-based loading
|
void |
OraclePropertyGraphDataLoader.loadDataWithExtTab(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
boolean bNamedPipe,
String szPrefix,
String szDir,
boolean bRebuildIndex,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using External table-based loading
|
void |
OraclePropertyGraphDataLoader.loadDataWithExtTab(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
boolean bNamedPipe,
String szPrefix,
String szDir,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using External table-based loading
|
void |
OraclePropertyGraphDataLoader.loadDataWithExtTab(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
String szDir,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using External table-based loading.
|
void |
OraclePropertyGraphDataLoader.loadDataWithExtTab(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
int iSplitterFlag,
String szPrefix,
String szDir,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using External table-based loading.
|
void |
OraclePropertyGraphDataLoader.loadDataWithExtTab(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
long lVertexSrcOffsetlines,
long lEdgeSrcOffsetlines,
long lVertexSrcMaxlines,
long lEdgeSrcMaxlines,
long lVertexIDOffset,
long lEdgeIDOffset,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
String szDir,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using External table-based loading.
|
void |
OraclePropertyGraphDataLoader.loadDataWithExtTab(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
int iDop,
boolean bNamedPipe,
String szDir,
boolean bRebuildIndex,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using External table-based loading
|
void |
OraclePropertyGraphDataLoader.loadDataWithExtTab(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
int iDop,
boolean bNamedPipe,
String szPrefix,
String szDir,
boolean bRebuildIndex,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using External table-based loading
|
void |
OraclePropertyGraphDataLoader.loadDataWithExtTab(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
int iDop,
boolean bNamedPipe,
String szPrefix,
String szDir,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using External table-based loading
|
void |
OraclePropertyGraphDataLoader.loadDataWithExtTab(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
String szDir,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using External table-based loading.
|
void |
OraclePropertyGraphDataLoader.loadDataWithExtTab(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
int iDop,
int iSplitterFlag,
String szPrefix,
String szDir,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using External table-based loading.
|
void |
OraclePropertyGraphDataLoader.loadDataWithExtTab(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
long lVertexSrcOffsetlines,
long lEdgeSrcOffsetlines,
long lVertexSrcMaxlines,
long lEdgeSrcMaxlines,
long lVertexIDOffset,
long lEdgeIDOffset,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
String szDir,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using External table-based loading.
|
void |
OraclePropertyGraphDataLoader.loadDataWithExtTab(OraclePropertyGraph opg,
String[] saVertexFiles,
String[] saEdgeFiles,
int iDop,
String szDir,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using External table-based loading.
|
void |
OraclePropertyGraphDataLoader.loadDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
boolean bNamedPipe,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based loading.
|
void |
OraclePropertyGraphDataLoader.loadDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
boolean bNamedPipe,
String szPrefix,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based loading.
|
void |
OraclePropertyGraphDataLoader.loadDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
boolean bNamedPipe,
String szPrefix,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based loading.
|
void |
OraclePropertyGraphDataLoader.loadDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based loading.
|
void |
OraclePropertyGraphDataLoader.loadDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
int iSplitterFlag,
String szPrefix,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based loading.
|
void |
OraclePropertyGraphDataLoader.loadDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object[] oaVertexSources,
Object[] oaEdgeSources,
long lVertexSrcOffsetlines,
long lEdgeSrcOffsetlines,
long lVertexSrcMaxlines,
long lEdgeSrcMaxlines,
long lVertexIDOffset,
long lEdgeIDOffset,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based loading.
|
void |
OraclePropertyGraphDataLoader.loadDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object obVertexSource,
Object obEdgeSource,
int iDop,
boolean bNamedPipe,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based loading.
|
void |
OraclePropertyGraphDataLoader.loadDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object obVertexSource,
Object obEdgeSource,
int iDop,
boolean bNamedPipe,
String szPrefix,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based loading.
|
void |
OraclePropertyGraphDataLoader.loadDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object obVertexSource,
Object obEdgeSource,
int iDop,
boolean bNamedPipe,
String szPrefix,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based loading.
|
void |
OraclePropertyGraphDataLoader.loadDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object obVertexSource,
Object obEdgeSource,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based loading.
|
void |
OraclePropertyGraphDataLoader.loadDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object obVertexSource,
Object obEdgeSource,
int iDop,
int iSplitterFlag,
String szPrefix,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based loading.
|
void |
OraclePropertyGraphDataLoader.loadDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object obVertexSource,
Object obEdgeSource,
long lVertexSrcOffsetlines,
long lEdgeSrcOffsetlines,
long lVertexSrcMaxlines,
long lEdgeSrcMaxlines,
long lVertexIDOffset,
long lEdgeIDOffset,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method loads given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based loading.
|
void |
OraclePropertyGraphDataLoader.mergeData(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
int iBatchSize,
boolean bRebuildIndex,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using JDBC-based merging
|
void |
OraclePropertyGraphDataLoader.mergeData(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
int iSplitterFlag,
int iBatchSize,
boolean bRebuildIndex,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using JDBC-based merging
|
void |
OraclePropertyGraphDataLoader.mergeData(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
int iSplitterFlag,
int iBatchSize,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using JDBC-based merging
|
void |
OraclePropertyGraphDataLoader.mergeData(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
int iBatchSize,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using JDBC-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeData(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
int iSplitterFlag,
String szPrefix,
int iBatchSize,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using JDBC-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeData(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
long lVertexSrcOffsetlines,
long lEdgeSrcOffsetlines,
long lVertexSrcMaxlines,
long lEdgeSrcMaxlines,
long lVertexIDOffset,
long lEdgeIDOffset,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
int iBatchSize,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using JDBC-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeData(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
long lVertexSrcOffsetlines,
long lEdgeSrcOffsetlines,
long lVertexSrcMaxlines,
long lEdgeSrcMaxlines,
long lVertexIDOffset,
long lEdgeIDOffset,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
int iBatchSize,
boolean bRebuildIndex,
String szTbs,
String szOptions,
DataLoaderListener dll)
This method merges given graph data into an OraclePropertyGraph instance in parallel using JDBC-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeData(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
int iDop,
int iBatchSize,
boolean bRebuildIndex,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using JDBC-based merging
|
void |
OraclePropertyGraphDataLoader.mergeData(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
int iDop,
int iSplitterFlag,
int iBatchSize,
boolean bRebuildIndex,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using JDBC-based merging
|
void |
OraclePropertyGraphDataLoader.mergeData(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
int iDop,
int iSplitterFlag,
int iBatchSize,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using JDBC-based merging
|
void |
OraclePropertyGraphDataLoader.mergeData(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
int iBatchSize,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using JDBC-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeData(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
int iDop,
int iSplitterFlag,
String szPrefix,
int iBatchSize,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using JDBC-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeData(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
long lVertexSrcOffsetlines,
long lEdgeSrcOffsetlines,
long lVertexSrcMaxlines,
long lEdgeSrcMaxlines,
long lVertexIDOffset,
long lEdgeIDOffset,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
int iBatchSize,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using JDBC-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeDataWithExtTab(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
boolean bNamedPipe,
String szDir,
boolean bRebuildIndex,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using External table-based merging
|
void |
OraclePropertyGraphDataLoader.mergeDataWithExtTab(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
boolean bNamedPipe,
String szPrefix,
String szDir,
boolean bRebuildIndex,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using External table-based merging
|
void |
OraclePropertyGraphDataLoader.mergeDataWithExtTab(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
boolean bNamedPipe,
String szPrefix,
String szDir,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using External table-based merging
|
void |
OraclePropertyGraphDataLoader.mergeDataWithExtTab(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
String szDir,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using External table-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeDataWithExtTab(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
int iSplitterFlag,
String szPrefix,
String szDir,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using External table-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeDataWithExtTab(OraclePropertyGraph opg,
Object[] oaVertexSources,
Object[] oaEdgeSources,
long lVertexSrcOffsetlines,
long lEdgeSrcOffsetlines,
long lVertexSrcMaxlines,
long lEdgeSrcMaxlines,
long lVertexIDOffset,
long lEdgeIDOffset,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
String szDir,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using External table-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeDataWithExtTab(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
int iDop,
boolean bNamedPipe,
String szDir,
boolean bRebuildIndex,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using External table-based merging
|
void |
OraclePropertyGraphDataLoader.mergeDataWithExtTab(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
int iDop,
boolean bNamedPipe,
String szPrefix,
String szDir,
boolean bRebuildIndex,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using External table-based merging
|
void |
OraclePropertyGraphDataLoader.mergeDataWithExtTab(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
int iDop,
boolean bNamedPipe,
String szPrefix,
String szDir,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using External table-based merging
|
void |
OraclePropertyGraphDataLoader.mergeDataWithExtTab(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
String szDir,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using External table-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeDataWithExtTab(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
int iDop,
int iSplitterFlag,
String szPrefix,
String szDir,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using External table-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeDataWithExtTab(OraclePropertyGraph opg,
Object obVertexSource,
Object obEdgeSource,
long lVertexSrcOffsetlines,
long lEdgeSrcOffsetlines,
long lVertexSrcMaxlines,
long lEdgeSrcMaxlines,
long lVertexIDOffset,
long lEdgeIDOffset,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
String szDir,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using External table-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
boolean bNamedPipe,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
boolean bNamedPipe,
String szPrefix,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
boolean bNamedPipe,
String szPrefix,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object[] oaVertexSources,
Object[] oaEdgeSources,
int iDop,
int iSplitterFlag,
String szPrefix,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object[] oaVertexSources,
Object[] oaEdgeSources,
long lVertexSrcOffsetlines,
long lEdgeSrcOffsetlines,
long lVertexSrcMaxlines,
long lEdgeSrcMaxlines,
long lVertexIDOffset,
long lEdgeIDOffset,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object obVertexSource,
Object obEdgeSource,
int iDop,
boolean bNamedPipe,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based merging
|
void |
OraclePropertyGraphDataLoader.mergeDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object obVertexSource,
Object obEdgeSource,
int iDop,
boolean bNamedPipe,
String szPrefix,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object obVertexSource,
Object obEdgeSource,
int iDop,
boolean bNamedPipe,
String szPrefix,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object obVertexSource,
Object obEdgeSource,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object obVertexSource,
Object obEdgeSource,
int iDop,
int iSplitterFlag,
String szPrefix,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based merging.
|
void |
OraclePropertyGraphDataLoader.mergeDataWithSqlLdr(OraclePropertyGraph opg,
String szUser,
String szPassword,
String szDbId,
Object obVertexSource,
Object obEdgeSource,
long lVertexSrcOffsetlines,
long lEdgeSrcOffsetlines,
long lVertexSrcMaxlines,
long lEdgeSrcMaxlines,
long lVertexIDOffset,
long lEdgeIDOffset,
int iDop,
int iPartitions,
int iOffset,
int iSplitterFlag,
String szPrefix,
String szSqlLoaderPath,
boolean bRebuildIndex,
String szTbs,
String szOptions)
This method merges given graph data into an OraclePropertyGraph instance in parallel using SQL*Loader-based merging.
|
Constructor and Description |
---|
OracleEdgeIterableImpl(OraclePropertyGraph opg,
ResultSet rs)
Deprecated.
|
OracleVertexIterableImpl(OraclePropertyGraph opg,
ResultSet rs)
A package level constructor.
|
RDBMSIndexManager(OraclePropertyGraph opg)
Creates a new RDBMSIndexManager object, handling external indexes associated
to the specified property graph.
|
Constructor and Description |
---|
RDBMSLuceneEdgeAutoIndex(String indexName,
OraclePropertyGraph oraclePropertyGraph,
Parameter<String,Object>[] indexParameters,
boolean erase)
Constructs a new RDBMSLuceneEdgeAutoIndex object.
|
RDBMSLuceneEdgeIndex(String indexName,
OraclePropertyGraph oraclePropertyGraph,
Parameter<String,Object>[] indexParameters,
boolean erase)
Constructs a new RDBMSLuceneEdgeIndex object.
|
RDBMSLuceneVertexAutoIndex(String indexName,
OraclePropertyGraph oraclePropertyGraph,
Parameter<String,Object>[] indexParameters,
boolean erase)
Constructs a new RDBMSLuceneVertexAutoIndex object.
|
RDBMSLuceneVertexIndex(String indexName,
OraclePropertyGraph oraclePropertyGraph,
Parameter<String,Object>[] indexParameters,
boolean erase)
Constructs a new RDBMSLuceneVertexIndex object.
|
Constructor and Description |
---|
RDBMSOracleTextEdgeAutoIndex(String indexName,
OraclePropertyGraph opg,
Parameter[] indexParameters,
boolean erase)
Constructs a new RDBMSOracleTextEdgeAutoIndex object.
|
RDBMSOracleTextVertexAutoIndex(String indexName,
OraclePropertyGraph opg,
Parameter[] indexParameters,
boolean erase)
Constructs a new RDBMSOracleTextVertexAutoIndex object.
|
Constructor and Description |
---|
RDBMSSolrEdgeAutoIndex(String indexName,
OraclePropertyGraph oraclePropertyGraph,
Parameter<String,Object>[] indexParameters,
boolean erase)
Constructs a new RDBMSSolrEdgeAutoIndex object.
|
RDBMSSolrVertexAutoIndex(String indexName,
OraclePropertyGraph oraclePropertyGraph,
Parameter<String,Object>[] indexParameters,
boolean erase)
Constructs a new RDBMSSolrVertexAutoIndex object.
|
Copyright © 2017 Oracle and/or its affiliates. All Rights Reserved.