DBA Data[Home] [Help]

SYS.DBMS_DBFS_SFS dependencies on DBMS_DBFS_CONTENT_PROPERTIES_T

Line 103: properties dbms_dbfs_content_properties_t

99: ptable_name varchar2(32),
100: version# varchar2(32),
101: created timestamp,
102: formatted timestamp,
103: properties dbms_dbfs_content_properties_t
104: );
105: type tables_t is table of table_t;
106:
107:

Line 364: store_names in dbms_dbfs_content_properties_t,

360: nref out integer,
361: useEstimate in integer);
362:
363: procedure spaceUsageFull(
364: store_names in dbms_dbfs_content_properties_t,
365: blksize out integer,
366: tbytes out integer,
367: fbytes out integer,
368: nfile out integer,

Line 374: store_names in dbms_dbfs_content_properties_t,

370: nlink out integer,
371: nref out integer);
372:
373: procedure spaceUsageFull(
374: store_names in dbms_dbfs_content_properties_t,
375: blksize out integer,
376: tbytes out integer,
377: fbytes out integer,
378: nfile out integer,

Line 503: properties in out nocopy dbms_dbfs_content_properties_t,

499:
500: procedure createFile(
501: store_name in varchar2,
502: path in varchar2,
503: properties in out nocopy dbms_dbfs_content_properties_t,
504: content in out nocopy blob,
505: prop_flags in integer,
506: ctx in dbms_dbfs_content_context_t);
507:

Line 512: properties in out nocopy dbms_dbfs_content_properties_t,

508: procedure createLink(
509: store_name in varchar2,
510: srcPath in varchar2,
511: dstPath in varchar2,
512: properties in out nocopy dbms_dbfs_content_properties_t,
513: prop_flags in integer,
514: ctx in dbms_dbfs_content_context_t);
515:
516: procedure createReference(

Line 520: properties in out nocopy dbms_dbfs_content_properties_t,

516: procedure createReference(
517: store_name in varchar2,
518: srcPath in varchar2,
519: dstPath in varchar2,
520: properties in out nocopy dbms_dbfs_content_properties_t,
521: prop_flags in integer,
522: ctx in dbms_dbfs_content_context_t);
523:
524: procedure createDirectory(

Line 527: properties in out nocopy dbms_dbfs_content_properties_t,

523:
524: procedure createDirectory(
525: store_name in varchar2,
526: path in varchar2,
527: properties in out nocopy dbms_dbfs_content_properties_t,
528: prop_flags in integer,
529: recurse in integer,
530: ctx in dbms_dbfs_content_context_t);
531:

Line 664: properties in out nocopy dbms_dbfs_content_properties_t,

660:
661: procedure getPath(
662: store_name in varchar2,
663: path in varchar2,
664: properties in out nocopy dbms_dbfs_content_properties_t,
665: content out nocopy blob,
666: item_type out integer,
667: prop_flags in integer,
668: forUpdate in integer,

Line 675: properties in out nocopy dbms_dbfs_content_properties_t,

671:
672: procedure getPathNowait(
673: store_name in varchar2,
674: path in varchar2,
675: properties in out nocopy dbms_dbfs_content_properties_t,
676: content out nocopy blob,
677: item_type out integer,
678: prop_flags in integer,
679: deref in integer,

Line 685: properties in out nocopy dbms_dbfs_content_properties_t,

681:
682: procedure getPath(
683: store_name in varchar2,
684: path in varchar2,
685: properties in out nocopy dbms_dbfs_content_properties_t,
686: amount in out number,
687: offset in number,
688: buffer out nocopy raw,
689: prop_flags in integer,

Line 695: properties in out nocopy dbms_dbfs_content_properties_t,

691:
692: procedure getPath(
693: store_name in varchar2,
694: path in varchar2,
695: properties in out nocopy dbms_dbfs_content_properties_t,
696: amount in out number,
697: offset in number,
698: buffers out nocopy dbms_dbfs_content_raw_t,
699: prop_flags in integer,

Line 705: properties in out nocopy dbms_dbfs_content_properties_t,

701:
702: procedure putPath(
703: store_name in varchar2,
704: path in varchar2,
705: properties in out nocopy dbms_dbfs_content_properties_t,
706: content in out nocopy blob,
707: item_type out integer,
708: prop_flags in integer,
709: ctx in dbms_dbfs_content_context_t);

Line 714: properties in out nocopy dbms_dbfs_content_properties_t,

710:
711: procedure putPath(
712: store_name in varchar2,
713: path in varchar2,
714: properties in out nocopy dbms_dbfs_content_properties_t,
715: amount in number,
716: offset in number,
717: buffer in raw,
718: prop_flags in integer,

Line 724: properties in out nocopy dbms_dbfs_content_properties_t,

720:
721: procedure putPath(
722: store_name in varchar2,
723: path in varchar2,
724: properties in out nocopy dbms_dbfs_content_properties_t,
725: written out number,
726: offset in number,
727: buffers in dbms_dbfs_content_raw_t,
728: prop_flags in integer,

Line 791: properties in out nocopy dbms_dbfs_content_properties_t,

787: procedure renamePath(
788: store_name in varchar2,
789: oldPath in varchar2,
790: newPath in varchar2,
791: properties in out nocopy dbms_dbfs_content_properties_t,
792: ctx in dbms_dbfs_content_context_t);
793:
794: procedure movePath(
795: store_name in varchar2,

Line 798: properties in out nocopy dbms_dbfs_content_properties_t,

794: procedure movePath(
795: store_name in varchar2,
796: oldPath in varchar2,
797: newPath in varchar2,
798: properties in out nocopy dbms_dbfs_content_properties_t,
799: ctx in dbms_dbfs_content_context_t);
800:
801: procedure setPath(
802: store_name in varchar2,

Line 805: properties in out nocopy dbms_dbfs_content_properties_t,

801: procedure setPath(
802: store_name in varchar2,
803: contentID in raw,
804: path in varchar2,
805: properties in out nocopy dbms_dbfs_content_properties_t,
806: ctx in dbms_dbfs_content_context_t);
807:
808:
809:

Line 1000: properties in dbms_dbfs_content_properties_t

996: tbl_name in varchar2 default null,
997: tbl_tbs in varchar2 default null,
998: lob_tbs in varchar2 default null,
999: use_bf in boolean default false,
1000: properties in dbms_dbfs_content_properties_t
1001: default null,
1002: create_only in boolean default false,
1003: use_objects in boolean default false,
1004: with_grants in boolean default false,

Line 1224: properties in dbms_dbfs_content_properties_t);

1220: */
1221:
1222: procedure addFSProperties(
1223: store_name in varchar2,
1224: properties in dbms_dbfs_content_properties_t);
1225:
1226: procedure deleteFSProperties(
1227: store_name in varchar2,
1228: properties in dbms_dbfs_content_properties_t);

Line 1228: properties in dbms_dbfs_content_properties_t);

1224: properties in dbms_dbfs_content_properties_t);
1225:
1226: procedure deleteFSProperties(
1227: store_name in varchar2,
1228: properties in dbms_dbfs_content_properties_t);
1229:
1230: procedure setFSProperties(
1231: store_name in varchar2,
1232: properties in dbms_dbfs_content_properties_t);

Line 1232: properties in dbms_dbfs_content_properties_t);

1228: properties in dbms_dbfs_content_properties_t);
1229:
1230: procedure setFSProperties(
1231: store_name in varchar2,
1232: properties in dbms_dbfs_content_properties_t);
1233:
1234:
1235:
1236: /*