DBA Data[Home] [Help]

XDB.DBMS_XDBT dependencies on DBMS_XDB

Line 1: PACKAGE BODY dbms_xdbt AS

1: PACKAGE BODY dbms_xdbt AS
2:
3: -----------------------------------------------------------------------
4: -- CONFIGURATION SETTINGS
5: --

Line 286: IndexTableSpace := xdb.dbms_xdb.getxdb_tablespace();

282: BEGIN
283:
284: -- Get the tablespace of xdb$resource, that can be considered as the
285: -- default tablespace. Only one row can be returned from the query.
286: IndexTableSpace := xdb.dbms_xdb.getxdb_tablespace();
287: ts_clause := 'tablespace ' || IndexTableSpace;
288:
289: ctx_ddl.create_preference(StoragePref, 'BASIC_STORAGE');
290: ctx_ddl.set_attribute(StoragePref, 'I_TABLE_CLAUSE', ts_clause);

Line 437: xdb.dbms_xdbz0.get_username(owneridr, owner);

433: FROM xdb.xdb$resource e
434: WHERE ROWID = rid;
435:
436: -- get the user names for the owner, creator and the last modifier
437: xdb.dbms_xdbz0.get_username(owneridr, owner);
438: xdb.dbms_xdbz0.get_username(creatoridr, creator);
439: xdb.dbms_xdbz0.get_username(lastmodidr, lastmod);
440:
441: annotate_doclob(author,

Line 438: xdb.dbms_xdbz0.get_username(creatoridr, creator);

434: WHERE ROWID = rid;
435:
436: -- get the user names for the owner, creator and the last modifier
437: xdb.dbms_xdbz0.get_username(owneridr, owner);
438: xdb.dbms_xdbz0.get_username(creatoridr, creator);
439: xdb.dbms_xdbz0.get_username(lastmodidr, lastmod);
440:
441: annotate_doclob(author,
442: dispname,

Line 439: xdb.dbms_xdbz0.get_username(lastmodidr, lastmod);

435:
436: -- get the user names for the owner, creator and the last modifier
437: xdb.dbms_xdbz0.get_username(owneridr, owner);
438: xdb.dbms_xdbz0.get_username(creatoridr, creator);
439: xdb.dbms_xdbz0.get_username(lastmodidr, lastmod);
440:
441: annotate_doclob(author,
442: dispname,
443: rescomment,

Line 587: what := 'xdb.dbms_xdbt.autoSyncJobByTime(' || quote ||

583: jInterval varchar(20);
584: BEGIN
585: IF (AutoSyncPolicy = SYNC_BY_TIME or
586: AutoSyncPolicy = SYNC_BY_PENDING_COUNT_AND_TIME) THEN
587: what := 'xdb.dbms_xdbt.autoSyncJobByTime(' || quote ||
588: IndexName || quote || ',' ||
589: quote || IndexMemory || quote || ');' ;
590: jobInterval := SyncInterval;
591: END IF;

Line 594: what := 'xdb.dbms_xdbt.autoSyncJobByCount(' || quote ||

590: jobInterval := SyncInterval;
591: END IF;
592: IF (AutoSyncPolicy = SYNC_BY_PENDING_COUNT or
593: AutoSyncPolicy = SYNC_BY_PENDING_COUNT_AND_TIME) THEN
594: what := 'xdb.dbms_xdbt.autoSyncJobByCount(' || quote ||
595: IndexName || quote || ',' ||
596: MaxPendingCount || ',' ||
597: quote || IndexMemory || quote || ');';
598: jobInterval := CheckPendingCountInterval;

Line 607: END dbms_xdbt;

603: dbms_job.submit(job, what, interval=>jInterval);
604: --dbms_output.put_line('configureAutoSync =' || jInterval);
605: END configureAutoSync;
606:
607: END dbms_xdbt;