DBA Data[Home] [Help]

SYS.DBMS_DBFS_CONTENT dependencies on DBMS_DBFS_CONTENT_PROPERTIES_T

Line 276: * properties in dbms_dbfs_content_properties_t,

272: * path in varchar2,
273: * store_name in varchar2,
274: * opcode in integer,
275: * item_type in integer,
276: * properties in dbms_dbfs_content_properties_t,
277: * content in blob)
278: * return integer;
279: *
280: * Any PL/SQL function conforming to this signature can examine the

Line 803: * "dbms_dbfs_content_properties_t" and "properties_t"---the former

799: * latter is a PL/SQL record type that describes only the property
800: * value component.
801: *
802: * Likewise, there is an approximate correspondence between
803: * "dbms_dbfs_content_properties_t" and "properties_t"---the former
804: * is a SQL nested table type, while the latter is a PL/SQL hash
805: * table type.
806: *
807: *

Line 813: * between "dbms_dbfs_content_properties_t" and "properties_t" (see

809: * PL/SQL code may be implemented more conveniently in terms of the
810: * hash-table types.
811: *
812: * The DBFS API provides convenient utility functions to convert
813: * between "dbms_dbfs_content_properties_t" and "properties_t" (see
814: * "propertiesT2H" and "propertiesH2T" below).
815: *
816: */
817:

Line 826: /* convert a dbms_dbfs_content_properties_t to a property_t */

822: type properties_t is table of property_t
823: index by propname_t;
824:
825: /* properties table to hash */
826: /* convert a dbms_dbfs_content_properties_t to a property_t */
827: function propertiesT2H(
828: sprops in dbms_dbfs_content_properties_t)
829: return properties_t;
830:

Line 828: sprops in dbms_dbfs_content_properties_t)

824:
825: /* properties table to hash */
826: /* convert a dbms_dbfs_content_properties_t to a property_t */
827: function propertiesT2H(
828: sprops in dbms_dbfs_content_properties_t)
829: return properties_t;
830:
831: /* properties hash to table */
832: /* convert a properties_t into a dbms_dbfs_content_properties_t */

Line 832: /* convert a properties_t into a dbms_dbfs_content_properties_t */

828: sprops in dbms_dbfs_content_properties_t)
829: return properties_t;
830:
831: /* properties hash to table */
832: /* convert a properties_t into a dbms_dbfs_content_properties_t */
833: function propertiesH2T(
834: pprops in properties_t)
835: return dbms_dbfs_content_properties_t;
836:

Line 835: return dbms_dbfs_content_properties_t;

831: /* properties hash to table */
832: /* convert a properties_t into a dbms_dbfs_content_properties_t */
833: function propertiesH2T(
834: pprops in properties_t)
835: return dbms_dbfs_content_properties_t;
836:
837:
838:
839: /*

Line 912: mount_properties dbms_dbfs_content_properties_t

908: store_features integer,
909: store_guid number,
910: store_mount name_t,
911: created timestamp,
912: mount_properties dbms_dbfs_content_properties_t
913: );
914: type mounts_t is table of mount_t;
915:
916:

Line 1540: properties in out nocopy dbms_dbfs_content_properties_t,

1536: */
1537:
1538: procedure createFile(
1539: path in varchar2,
1540: properties in out nocopy dbms_dbfs_content_properties_t,
1541: content in out nocopy blob,
1542: prop_flags in integer default (prop_std +
1543: prop_data),
1544: store_name in varchar2 default null,

Line 1559: properties in out nocopy dbms_dbfs_content_properties_t,

1555:
1556: procedure createLink(
1557: srcPath in varchar2,
1558: dstPath in varchar2,
1559: properties in out nocopy dbms_dbfs_content_properties_t,
1560: prop_flags in integer default prop_std,
1561: store_name in varchar2 default null,
1562: principal in varchar2 default null);
1563:

Line 1575: properties in out nocopy dbms_dbfs_content_properties_t,

1571:
1572: procedure createReference(
1573: srcPath in varchar2,
1574: dstPath in varchar2,
1575: properties in out nocopy dbms_dbfs_content_properties_t,
1576: prop_flags in integer default prop_std,
1577: store_name in varchar2 default null,
1578: principal in varchar2 default null);
1579:

Line 1590: properties in out nocopy dbms_dbfs_content_properties_t,

1586: principal in varchar2 default null);
1587:
1588: procedure createDirectory(
1589: path in varchar2,
1590: properties in out nocopy dbms_dbfs_content_properties_t,
1591: prop_flags in integer default prop_std,
1592: recurse in boolean default false,
1593: store_name in varchar2 default null,
1594: principal in varchar2 default null);

Line 1742: properties in out nocopy dbms_dbfs_content_properties_t,

1738: */
1739:
1740: procedure getPath(
1741: path in varchar2,
1742: properties in out nocopy dbms_dbfs_content_properties_t,
1743: content out nocopy blob,
1744: item_type out integer,
1745: prop_flags in integer default (prop_std +
1746: prop_opt +

Line 1770: properties in out nocopy dbms_dbfs_content_properties_t,

1766: principal in varchar2 default null);
1767:
1768: procedure getPathNowait(
1769: path in varchar2,
1770: properties in out nocopy dbms_dbfs_content_properties_t,
1771: content out nocopy blob,
1772: item_type out integer,
1773: prop_flags in integer default (prop_std +
1774: prop_opt +

Line 1794: properties in out nocopy dbms_dbfs_content_properties_t,

1790: principal in varchar2 default null);
1791:
1792: procedure getPath(
1793: path in varchar2,
1794: properties in out nocopy dbms_dbfs_content_properties_t,
1795: amount in out number,
1796: offset in number,
1797: buffer out nocopy raw,
1798: prop_flags in integer default (prop_std +

Line 1818: properties in out nocopy dbms_dbfs_content_properties_t,

1814: principal in varchar2 default null);
1815:
1816: procedure getPath(
1817: path in varchar2,
1818: properties in out nocopy dbms_dbfs_content_properties_t,
1819: amount in out number,
1820: offset in number,
1821: buffers out nocopy dbms_dbfs_content_raw_t,
1822: prop_flags in integer default (prop_std +

Line 1842: properties in out nocopy dbms_dbfs_content_properties_t,

1838: principal in varchar2 default null);
1839:
1840: procedure putPath(
1841: path in varchar2,
1842: properties in out nocopy dbms_dbfs_content_properties_t,
1843: content in out nocopy blob,
1844: item_type out integer,
1845: prop_flags in integer default (prop_std +
1846: prop_opt +

Line 1864: properties in out nocopy dbms_dbfs_content_properties_t,

1860: principal in varchar2 default null);
1861:
1862: procedure putPath(
1863: path in varchar2,
1864: properties in out nocopy dbms_dbfs_content_properties_t,
1865: amount in number,
1866: offset in number,
1867: buffer in raw,
1868: prop_flags in integer default (prop_std +

Line 1886: properties in out nocopy dbms_dbfs_content_properties_t,

1882: principal in varchar2 default null);
1883:
1884: procedure putPath(
1885: path in varchar2,
1886: properties in out nocopy dbms_dbfs_content_properties_t,
1887: written out number,
1888: offset in number,
1889: buffers in dbms_dbfs_content_raw_t,
1890: prop_flags in integer default (prop_std +

Line 1965: properties in out nocopy dbms_dbfs_content_properties_t,

1961:
1962: procedure renamePath(
1963: oldPath in varchar2,
1964: newPath in varchar2,
1965: properties in out nocopy dbms_dbfs_content_properties_t,
1966: store_name in varchar2 default null,
1967: principal in varchar2 default null);
1968:
1969: procedure renamePath(

Line 1979: properties in out nocopy dbms_dbfs_content_properties_t,

1975:
1976: procedure movePath(
1977: oldPath in varchar2,
1978: newPath in varchar2,
1979: properties in out nocopy dbms_dbfs_content_properties_t,
1980: store_name in varchar2 default null,
1981: principal in varchar2 default null);
1982:
1983: procedure movePath(

Line 1994: properties in out nocopy dbms_dbfs_content_properties_t,

1990: procedure setPath(
1991: store_name in varchar2,
1992: contentID in raw,
1993: path in varchar2,
1994: properties in out nocopy dbms_dbfs_content_properties_t,
1995: principal in varchar2 default null);
1996:
1997: procedure setPath(
1998: store_name in varchar2,