Oracle® Database PL/SQL Packages and Types Reference 11g Release 2 (11.2) Part Number E25788-04 |
|
|
PDF · Mobi · ePub |
The DBMS_DBFS_CONTENT
package provides an interface comprising a file system-like abstraction backed by one or more Store Providers.
This chapter contains the following topics:
Overview
Security Model
Constants
Exceptions
Operational Notes
The DBMS_DBFS_CONTENT
package provides an interface comprising a file system-like abstraction backed by one or more Store Providers. The "Content" in the DBFS Content interface refers to a file including metadata, and it can map to a BLOB
(and other columns) in a table or be dynamically created by user-written plug-ins in Java or PL/SQL that run inside the database. This latter form is referred to as a "Store Provider."
For applications that already use LOBs as columns in their schema, the DBFS Content interface comes with a default implementation to access the BLOB
columns. This enables existing applications to easily add PL/SQL provider implementations and provide access through the DBFS Content interface without rewriting their schema or their business logic. Additionally, applications can read and write content that is stored in other (third party) stores through the standard DBFS Content programming interface.
Examples of providers include:
Content applications like Content DB
Packaged applications that want to surface data through file
Custom applications that want to leverage the file system interface -- for example, an application that stores medical image
The DBS_DBFS_CONTENT
package abstracts out the common features of various stores into a simple and minimalist interface used to build portable client applications while insulated from store-specific libraries and implementation.
The content interface aggregates the path namespace of one or more stores into a single unified namespace, using the first component of the path name as a disambiguator, and presents this namespace to client-applications.
This allows clients to access the underlying documents using either a full-absolute path name as a single string:
/store-name/store-specific-path-name
or a store-qualified path name as a string 2-tuple:
["store-name","/store-specific-path-name"]
The interface then takes care of correctly dispatching various operations on path names to the appropriate stores, and integrating the results back into the client-desired namespace.
Store service providers must conform to the Service Provider Interface (SPI) as declared by the package DBMS_DBFS_CONTENT_SPI
- the SPI is not a client-side interface and serves as a private contract between the implementation of the content interface and various stores that wish to be pluggable into it.
The content interface defines client-visible behavior (normal and exceptional) of various store operations, while allowing different stores to implement as rich a set of features as they choose - the interface allows stores to self-describe their capabilities and allows intelligent client applications to tune their behavior based on these capabilities (rather than hard-code logic specific to stores identified by name or by implementation).
The DBMS_DBFS_CONTENT
package runs under AUTHID
CURRENT_USER
.
The DBMS_DBFS_CONTENT
package uses the constants shown in the following tables:
The following constants are useful for declaring paths and item names. Paths are limited to 1024 characters and item names are limited to 256 characters.
Table 47-1 DBMS_DBFS_CONTENT Constants - Path Names
Constant | Type | Value | Description |
---|---|---|---|
|
|
|
Maximum length of an absolute path name visible to clients |
|
|
|
Portable alias for string that can represent component names |
|
|
|
Maximum length of any individual component of an absolute path name visible to clients |
|
|
|
Portable alias for string that can represent path names |
Stores may expose to the user a unique identifier that represents a particular path item in the store. These identifiers are limited to 128 characters.
Table 47-2 DBMS_DBFS_CONTENT Constants - ContentID
Constant | Type | Value | Description |
---|---|---|---|
|
|
|
Maximum length of a store-specific provider-generated contentID that identifies a file-type content item |
|
|
|
Portable alias for raw buffers that can represent contentID values |
Every path name in a store is associated with a set of properties. For simplicity and to provide generic basis, each property is identified by a string "name", has a string "value" (which might be NULL
if unset or undefined or unsupported by a specific store implementation) and a value "typecode" (a numeric discriminant for the actual type of value held in the "value" string.)
Coercing property values to strings has the advantage of making the various interfaces uniform and compact (and can even simplify implementation of the underlying stores), but has the disadvantage of the potential for information loss during conversions to and from strings.
It is expected that clients and stores use well-defined database conventions for these conversions, and use the typecode
field as appropriate.
A typecode is a numeric value representing the true type of a string-coerced property value. Simple scalar types (numbers, dates, timestamps, etc.) can be depended on by clients and must be implemented by stores.
Since standard RDBMS typecodes are positive integers, the DBMS_DBFS_CONTENT
interface allows negative integers to represent client-defined types by negative typecodes. These typecodes do not conflict with standard typecodes, are maintained persistently and returned to the client as needed, but need not be interpreted by the DBFS content API or any particular store. Portable client applications should not use user-defined typecodes as a back door way of passing information to specific stores.
Table 47-3 DBMS_DBFS_CONTENT Constants - Properties
Constant | Type | Value | Description |
---|---|---|---|
|
|
|
Maximum length of a property name |
|
|
|
Portable alias for string that can represent property names |
|
|
|
Maximum length of the string value of a property |
|
|
|
Portable alias for string that can represent property values |
Path items in a store have a item type associated with them. These types represent the kind of entry the item represents in the store.
Table 47-4 DBMS_DBFS_CONTENT Constants - Path Name Types
Constant | Type | Value | Description |
---|---|---|---|
|
|
|
A regular file storing content (a logically linear sequence of bytes accessed as a |
|
|
|
A container of other path name types, including file types |
|
|
|
A symbolic link (that is, an uninterpreted string value associated with a path name). Since symbolic links may represent path names that fall outside the scope of any given store (or even the entire aggregation of stores managed by the |
|
|
|
A hard link which is always a valid path name alias to content |
In order to provide a common programmatic interface to as many different types of stores as possible, the DBFS content API leaves some of the behavior of various operations to individual store providers to define and implement.
However, it is still important to provide client-side programmers with an API that is sufficiently rich and conducive to portable applications.
The DBFS content API achieves this by allowing different store service providers (and different stores) to describe themselves through a "feature set" (a bitmask indicating which features they support and which ones they do not).
Using the feature set, it is possible, albeit tricky, for client applications to compensate for the feature deficiencies of specific stores by implementing additional logic on the client-side, and deferring complex operations to stores capable of supporting them.
Table 47-5 DBMS_DBFS_CONTENT Constants - Store Features
Constant | Type | Value | Description |
---|---|---|---|
|
|
|
Set if the store supports folders (or directories) as part of hierarchical path names |
|
|
|
Set if implicit folder operations within the store (performed as part of a client-requested operation) runs inside autonomous transactions.In general, the use of autonomous transactions is a compromise between (a) simplicity in the implementation and client-controlled transaction scope for all operations, at the cost of greatly reduced concurrency ( |
|
|
|
Set if the store allows |
|
|
|
Set if the store supports Access Control Lists (ACLs) and internal authorization or checking based on these ACLs. ACLs are standard properties but a store may do nothing more than store and retrieve the ACLs without interpreting them in any way. |
|
|
|
Set if the store supports symbolic links, and if certain types of symbolic links (specifically non-absolute path names) can be internally resolved by the store itself |
|
|
|
Set if the store supports symbolic links, and if certain types of symbolic links (specifically non-absolute path names) can be internally resolved by the store itself |
|
|
|
Set if the store supports hard links |
|
|
|
Set if the store supports user-level locks (read-only, write-only, read-write) that can be applied on various items of the store, and if the store uses these lock settings to control various types of access to the locked items. User-level locks are orthogonal to transaction locks and persist beyond the scope of any specific transaction, session, or connection — this implies that the store itself may not be able to clean up after dangling locks, and client-applications need to perform any garbage collection. |
|
|
|
Set if the store allows a user-lock to control access to the entire sub-tree under the locked path name. A simpler locking model would have locking semantics apply only to a specific path name, and depend on the locks placed on its parents or children (unless the requested operation would implicitly need to modify these parents or children). |
|
|
|
Set if the store supports upgrade or downgrade of locks from one mode to another |
|
|
|
Set if the store supports at least a linear versioning and version management. Different versions of the same path name are identified by monotonic version numbers, with a version-nonqualified path name representing the latest version. |
|
|
|
Set if the store supports a hierarchical namespace for different versions of a path name |
|
|
|
Set if the store supports a "soft-delete", that is, the ability to delete a path name and make it invisible to normal operations, but retain the ability to restore the path name later (as long as it has not been overwritten by a new create operation). The store also supports purging soft-deleted path names (making them truly deleted), and navigation modes that show soft-deleted items. |
|
|
|
Set if the store automatically computes and maintains some type of a secure hash of the contents of a path name (typically a |
|
|
|
Set if the store allows "content-based addressing", that is, the ability to locate a content item based, not on its path name, but on its content hash. |
|
|
|
Set if the store allows clients to pass a filter function (a PL/SQL function conforming to the signature below) that returns a logical boolean indicating if a given store item satisfies a selection predicate. Stores that support filtering may be able to more efficiently perform item listing, directory navigation, and deletions by embedding the filtering logic inside their implementation. If filtering is not supported, clients can retrieve more items than necessary and perform the filtering checks themselves, albeit less efficiently. A filter predicate is a function with the following signature: function filterFunction( path IN VARCHAR2, store_name IN VARCHAR2, opcode IN INTEGER, item_type IN INTEGER, properties IN DBMS_DBFS_CONTENT_PROPERTIES_T, content IN BLOB) RETURN INTEGER; Any PL/SQL function conforming to this signature can examine the contents and properties of a store item, and determine if the item satisfies the selection criterion for the current operation. Any nonzero return value results in the |
|
|
|
Set if the store allows clients to pass a text-search filter query to locate |
|
|
|
Set if the store allows clients to use a flashback timestamp in query operations (non-mutating GETPATH Procedures, LIST Function, SEARCH Function). |
|
|
|
Set if the store allows per-operation properties (that control the behavior of the store with regard to the current operation, as opposed to properties associated with individual items). |
|
|
|
Set if the store allows the use of named, read-only snapshots of its contents. It is up to the provider to implement snapshots using any suitable means (including creating immediate copies of the content, or using copy-on-write) and managing dependencies between snapshots and its parent content view. |
|
|
|
Set if the store allows the use of named, writable clones of its contents. It is up to the provider to implement clones using any suitable means (including creating immediate copies of the content, or using copy-on-write) and managing dependencies between clones and its parent content view. |
|
|
|
Set if the store allows direct access to file contents through a |
|
|
|
Set if the store allows a "pathless", contentID-based access to files (there is no notion of a directory, link, or reference in this model) |
|
|
|
Set if the store allows a lazy binding of a path name to file content elements that are otherwise identified by a contentID; this feature makes sense only in conjunction with |
Stores that support locking should implement 3 types of locks: LOCK_READ_ONLY
, LOCK_WRITE_ONLY
, and LOCK_READ_WRITE
.
User-locks (of one of these 3 types) can be associated with a user-supplied lock_data
. This is not interpreted by the store, but can be used by client applications for their own purposes. For example, the user-data could indicate the time at which the lock was placed, assuming some part of the client application is interested in later using this information to control its actions, such as garbage collect stale locks or explicitly break locks.
In the simplest locking model, a LOCK_READ_ONLY
prevents all explicit modifications to a path name (but allows implicit modifications, and changes to parent/child path names). A LOCK_WRITE_ONLY
prevents all explicit reads to the path name (but allows implicit reads, and reads to parent/child path names). A LOCK_WREAD_WRITE
allows both.
All locks are associated with a "principal" performing the locking operation; stores that support locking are expected to preserve this information, and use it to perform read or write lock checking (see opt_locker
).
More complex lock models: multiple read-locks, lock-scoping across path name hierarchies, lock conversions, group-locking, and other strategies, are possible but currently not defined by the content interface.
Table 47-6 DBMS_DBFS_CONTENT Constants - Lock Types
Constant | Type | Value | Description |
---|---|---|---|
|
|
|
Locks as read-only |
|
|
|
Locks as write-only |
|
|
|
Locks as read-write |
Standard properties are well-defined, mandatory properties associated with all content path names that all stores should support (in the manner described by the content interface), with some concessions. For example, a read-only store need not implement a modification_time
or creation_time
; stores created against tables with a fixed-schema may choose reasonable defaults for as many of these properties as needed, and so on.
All standard properties informally use the STD
namespace. Clients and stores should avoid using this namespace to define their own properties since this can cause conflicts in future.
The menu of standard properties is expected to be fairly stable over time.
Table 47-7 DBMS_DBFS_CONTENT Constants - Standard Properties
Constant | Type | Value | Description |
---|---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
STD_PARENT_GUID(path name) == STD_GUID(parent(path name)) |
|
|
|
|
Optional properties are well-defined but non-mandatory properties associated with all content path names that all stores are free to support (but only in the manner described by the DBFS content API). Clients should be prepared to deal with stores that support none of the optional properties.
All optional properties informally use the "opt:" namespace. Clients and stores should avoid using this namespace to define their own properties since this can cause conflicts in the future.
The menu of optional properties is expected to be expand over time.
Table 47-8 DBMS_DBFS_CONTENT Constants - Optional Properties
Constant | Type | Value | Description |
---|---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Content interface methods to get or set properties can use combinations of property access flags to fetch properties from different name spaces in a single interface call.
Table 47-9 DBMS_DBFS_CONTENT Constants - Property Access Flags
Constant | Type | Value | Description |
---|---|---|---|
|
|
|
None: used when the client is not interested in any properties, and is invoking the content access method for other reasons (path name existence or lockability validation, data access, and so on) |
|
|
|
Mandatory: used when the client is interested in the standard properties; all standard properties are retrieved if this flag is specified. |
|
|
|
Optional: used when the client is interested in the optional properties; all optional properties are retrieved if this flag is specified. |
|
|
|
User-defined: used when the client is interested in the user-defined properties; all user-defined properties are retrieved if this flag is specified. |
|
|
|
All: an alias for the combination of all standard, optional, and user-defined properties |
|
|
|
Content: used when the client is interested only in data access, and does not care about properties |
|
|
|
Specific: used when the client is interested in a mix-and-match of different subsets of various property name spaces; the names of the specific properties to fetch are passed into the content interface method call as arguments, and only these property values are fetched and returned to the client. This is useful in cases where there are a very large number of properties potentially accessible, but the client is interested in only a small number of them (and knows the names of these "interesting" properties beforehand).
|
All of the operations in the DBFS content API are represented as abstract opcodes.
Clients can use these opcodes to directly and explicitly by invoking the CHECKACCESS Function to verify if a particular operation can be invoked by a given principal on a particular path name.
Table 47-10 DBMS_DBFS_CONTENT Constants - Operation Codes
Constant | Type | Value | Description |
---|---|---|---|
|
|
|
Create a path item |
|
|
|
Create a file |
|
|
|
Create a soft link |
|
|
|
Create a reference (hard link) |
|
|
2 |
Soft-deletion, purge, and restore operations are all represented by |
|
|
|
Delete a file |
|
|
|
Delete a directory |
|
|
|
Restore a soft-deleted path item |
|
|
|
Purge a soft-deleted path item |
|
|
3 |
Read from a path item |
|
|
|
Get a path item for either read or update operations |
|
|
|
Write a path item |
|
|
|
Put (write) to a path item |
|
|
5 |
Rename a path item |
|
|
|
Operations performed on the source of a rename |
|
|
|
Operations performed on the destination of a rename |
|
|
|
Set a path item name |
|
|
6 |
Perform a path listing |
|
|
|
Perform a search |
|
|
8 |
Lock a path item |
|
|
9 |
Unlock a path item |
|
|
10 |
An implicit operation invoked during an |
|
|
11 |
A catch-all category for miscellaneous store operations that do not fall under any of the other operational interfaces |
DBFS content API operations can raise any one of the following top-level exceptions.
Clients can program against these specific exceptions in their error handlers without worrying about the specific store implementations of the underlying error signally code.
Store service providers, for their part, should do their best to trap or wrap any internal exceptions into one of the following exception types, as appropriate
Table 47-11 DBMS_DBFS_CONTENT Exceptions
Exception | Code | Description |
---|---|---|
|
|
A specified path name already exists |
|
|
Parent of a specified path name does not exist |
|
|
Specified path name does not exist, or is not valid |
|
|
An operation unsupported by a store was invoked |
|
|
An operation was invoked with invalid arguments |
|
|
Access control checks failed for the current operation |
|
|
Current operation failed lock conflict check |
|
|
An invalid store name was specified |
|
|
An invalid mount point was specified |
|
|
An invalid provider-package was specified |
|
|
A mutating operation was invoked on a read-only mount or store |
Since the interconnection of the DBMS_DBFS_CONTENT interface and the provider SPI is a 1-to-many pluggable architecture, the interface uses dynamic SQL to invoke methods in the provider SPI, this can lead to runtime errors.
There are no explicit INIT
or FINI
methods to indicate when the DBMS_DBFS_CONTENT
interface plugs or unplugs a particular provider SPI. Provider SPIs must be willing to auto-initialize themselves at any SPI entry-point.
All operations performed by a service provider are "stateless" in that they are complete operations unto themselves. If state is necessary to be maintained for some reason, then the state must be maintained in data structures such as auxiliary tables that can be queried as needed.
All path names used in the provider SPI are store-qualified in pair form (store_name
, pathname
) where the path name is rooted within the store namespace.
Stores and their providers that support contentID-based access (see FEATURE_CONTENT_ID
in DBMS_DBFS_CONTENT Constants - Store Features) also support a form of addressing that is not based on path names. Content items are identified by an explicit store name, a NULL
path name, and possibly a contentID specified as a parameter or by way of the OPT_CONTENT_ID
(see DBMS_DBFS_CONTENT Constants - Optional Properties) property.
Not all operations are supported with contentID-based access, and applications should depend only on the simplest create or delete functionality being available.
The provider SPI must allow the DBFS content API to create directory, file, link, and reference elements subject to store feature support.
All of the creation subprograms require a valid path name, but note the special exemption for contentID-based access. Creation subprograms can optionally specify properties to be associated with the path name as it is created. It is also possible for clients to returns item properties after the creation completes so that automatically generated properties, such as STD_CREATION_TIME
(see DBMS_DBFS_CONTENT Constants - Standard Properties) are immediately available to clients. The exact set of properties fetched back is controlled by the various PROP_XXX
bitmasks in the prop_flags
parameter.
Links and references require an additional path name to associate with the primary path name.
File path names can optionally specify a BLOB
value to use to initially populate the underlying file content (the provided BLOB
may be any valid LOB). On creation, the underlying LOB is returned to the client, provided that PROP_DATA
is specified in the prop_flags
parameter.
Nondirectory path names require that their parent directory be created first. Directory path names themselves can be recursively created with the path name hierarchy leading up to a directory created in one call.
Attempts to create paths that already exist is an error; the sole exception is path names that are "soft-deleted" (as discussed in the context of Deletion Operations) In these cases, the soft-deleted item is implicitly purged, and the new item creation is attempted.
Stores and their providers that support contentID-based access accept an explicit store name and a NULL
path to create a new content element. The contentID generated for this element is available by means of the OPT_CONTENT_ID
property (see DBMS_DBFS_CONTENT Constants - Optional Properties), contentID-based creation being automatically implied by PROP_OPT
property in the prop_flags
parameter).
The newly created element may also have an internally generated path name if FEATURE_LAZY_PATH
property is not supported (see DBMS_DBFS_CONTENT Constants - Store Features) and this path is available by way of the STD_CANONICAL_PATH
property (see DBMS_DBFS_CONTENT Constants - Standard Properties).
Only file elements are candidates for contentID-based access.
The provider SPI must allow the DBFS content API to delete directory, file, link, and reference elements (subject to store feature support).
By default, the deletions are permanent, removing the successfully deleted items on transaction commit, but stores may also support "soft-delete" features. If requested by the client, soft-deleted items are retained by the store, although they are not typically visible in normal listings or searches.
Soft-deleted items can be restored, or explicitly purged.
Directory path names can be recursively deleted, with the path name hierarchy below a directory deleted in one call. Non-recursive deletions can be performed only on empty directories. Recursive soft-deletions apply the soft-delete to all of the items being deleted.
Individual path names, as well as all soft-deleted path names under a directory, can be restored or purged by means of the various restore and purge subprograms.
Providers that support filtering can use the provider filter to identify subsets of items to delete. This makes most sense for bulk operations such as the DELETEDIRECTORY Procedure, PROPVARCHAR2 Function, and RESTOREALL Procedure, but all of the deletion-related operations accept a filter
argument.
Stores and their providers that support contentID-based access can also allow file items to be deleted by specifying their contentID.
Get (Retrieve) and Put (Insert) Operations
Existing path items can be accessed (for query or for update) and modified using simple get and put subprograms. All path names allow their metadata (properties) to be read and modified. On completion of the call, the client can request specific properties to be fetched by means of the prop_flags
parameter.
File path names allow their data (content) to be read and modified. On completion of the call, the client can use the PROP_DATA
bitmasks in the prop_flags
parameter to request a new BLOB
locator to continue data access.
Files can also be read or written without using BLOB
locators by explicitly specifying logical offsets, buffer amounts, and a suitably sized buffer.
Update accesses must specify the forUpdate
flag. Access to link path names can be implicitly and internally de-referenced by stores (subject to feature support) if the deref
flag is specified, however, this may have undetermined outcomes since symbolic links are not always resolvable.
The read methods, such as the GETPATH Procedures where forUpdate
is specified as 0, also accepts a valid asof
timestamp in the ctx
parameter that can be used by stores to implement "as of" style flashback queries. Mutating versions of the GETPATH Procedures and the PUTPATH Procedures methods do not support "as of" modes of operation.
The GETPATHNOWAIT Procedures implies that the operation is for an update, and, if implemented (see FEATURE_NOWAIT
in DBMS_DBFS_CONTENT Constants - Store Features), this allows providers to return an exception (ORA-00054) rather than wait for row locks.
Path names can be renamed or moved, possibly across directory hierarchies and mount-points, but within the same store.
Nondirectory path names previously accessible by way of specifying the oldPath
parameter are renamed as a single item subsequently accessible by specifying newPath
, assuming that newPath
does not already exist.
If newPath
exists and is not a directory, the action of renaming implicitly deletes the existing item before renaming oldPath
. If the newPath
exists and is a directory, oldPath
is moved into the target directory.
Directory path names previously accessible by way of oldPath
are renamed by moving the directory and all of its children to newPath
(if it does not already exist) or as children of newPath
(if it exists and is a directory).
Stores and their providers that support contentID-based access and lazy path name binding also support the SETPATH Procedures that associates an existing contentID with a new "path".
Directory Navigation and Search
The DBMS_DBFS_CONTENT
interface can list or search the contents of directory path names, optionally operating recursively into sub-directories, optionally seeing soft-deleted items, optionally using flashback "as of" a provided timestamp, and optionally filtering items in or out within the store based on list or search predicates.
Clients of the DBMS_DBFS_CONTENT
interface can apply user-level locks to any valid path name (subject to store feature support), associate the lock with user-data, and subsequently unlock these path names.
The status of locked items is available using various optional properties (note the previous discussion regarding opt_lock
).
It is the responsibility of the store (assuming it supports user-defined lock checking) to ensure that lock and unlock operations are performed in a consistent manner.
This operation ascertains if a given path name (store_name
, path
, pathtype
) can be manipulated by operation (see the various DBMS_DBFS_CONTENT.OP_XXX
opcodes in DBMS_DBFS_CONTENT Constants - Optional Properties) by the user acting on the store utilizing the principal
parameter. This is a convenience function for the DBMS_DBFS_CONTENT
interface; a store that supports access control still internally performs these checks to guarantee security.
The DBMS_DBFS_CONTENT
package defines RECORD
types and TABLE
types.
There is an approximate correspondence between DBMS_DBFS_CONTENT_PROPERTY_T
and PROPERTY_T
— the former is a SQL object type that describes the full property tuple, while the latter is a PL/SQL record type that describes only the property value component.
Likewise, there is an approximate correspondence between DBMS_DBFS_CONTENT_PROPERTIES_T
and PROPERTIES_T
— the former is a SQL nested table type, while the latter is a PL/SQL hash table type.
Dynamic SQL calling conventions force the use of SQL types, but PL/SQL code may be implemented more conveniently in terms of the hash-table types.
The DBMS_DBFS_CONTENT
interface provides convenient utility functions to convert between DBMS_DBFS_CONTENT_PROPERTIES_T
and PROPERTIES_T
(see propertiesT2H and propertiesH2T).
Clients can query the DBMS_DBFS_CONTENT
interface for the list of available stores, determine which store is to handle access to a given path name, and determine the feature set for the store.
This type describes a store mount point and its properties.
TYPE feature_t IS RECORD ( feature_name VARCHAR2(32), feature_mask INTEGER, feature_state VARCHAR2(3));
Field | Description |
---|---|
|
Name of feature |
|
Value used to mask off all other bits other than this feature in the feature value |
|
' |
This type describes a store mount point and its properties.
TYPE mount_t IS RECORD ( store_name VARCHAR2(32), store_id NUMBER, provider_name VARCHAR2(32), provider_pkg VARCHAR2(32), provider_id NUMBER, provider_version VARCHAR2(32), store_features INTEGER, store_guid NUMBER, store_mount NAME_T, mount_properties DBMS_DBFS_CONTENT_PROPERTIES_T);
Field | Description |
---|---|
|
Name of store |
|
ID of store |
|
Name of the content store |
|
PL/SQL package name for the content store |
|
Unique identifier for the content store |
|
Version number for the content store |
|
Features supported by this content store |
|
Unique ID for this instance of the store |
|
Location at which this store instance is mounted |
|
Properties for this mount point (see DBMS_DBFS_CONTENT_PROPERTIES_T Table Type) |
A PATH_ITEM_T
is a tuple describing a (store, mount) qualified path in a store, with all standard and optional properties associated with it.
TYPE path_item_t IS RECORD ( store NAME_T, mount NAME_T, pathname PATH_T, pathtype VARCHAR2(32), filedata BLOB, std_access_time TIMESTAMP, std_acl VARCHAR2(1024), std_change_time TIMESTAMP, std_children NUMBER, std_content_type VARCHAR2(1024), std_creation_time TIMESTAMP, std_deleted INTEGER, std_guid INTEGER, std_modification_time TIMESTAMP, std_owner VARCHAR2(32), std_parent_guid INTEGER, std_referent VARCHAR2(1024), opt_hash_type VARCHAR2(32), opt_hash_value VARCHAR2(128), opt_lock_count INTEGER, opt_lock_data VARCHAR2(128), opt_locker VARCHAR2(128), opt_lock_status INTEGER, opt_version INTEGER, opt_version_path PATH_T, opt_content_id CONTENT_ID_T);
Table 47-14 PATH_ITEM_T Fields
Field | Description |
---|---|
|
Name of store |
|
Location at which instance of store is mounted |
|
Name of path to item |
|
Type of object path (see DBMS_DBFS_CONTENT Constants - Path Name Types) |
|
|
|
Time of last access of a pathname's contents |
|
Access Control List (in standard ACL syntax) |
|
Time of last change to the metadata of a path name |
|
Number of child directories or folders a directory or folder path (this property should be available in providers thatsupport the |
|
One or more client-supplied mime-types (in standard RFC syntax) describing the path name which is typically of |
|
Time at which the item was created. Once set, this value remains the same for the lifetime of the path name. |
|
Set to a nonzero number if the path name has been soft-deleted but not yet purged (see DBMS_DBFS_CONTENT Constants - Store Features) |
|
Store-specific unique identifier for a path name. Clients must not depend on the GUID being unique across different stores, but a given store-name, store-specific-pathname has a stable and unique GUID for its lifetime. |
|
Time of last change to the data associated with a path name. Changes to the content of a |
|
Client-supplied (or implicit) owner name for the path name |
|
Store-specific unique identifier for the parent of a path name. Clients must not depend on the GUID being unique across different stores, but a given store-name, store-specific-pathname has a stable and unique GUID for its lifetime. std_parent_guid(pathname) == std_guid(parent(pathname)) |
|
Content of the symbolic link of a |
|
Type of hash provided in the |
|
Hash value of type |
|
Number of compatible locks placed on a path name. If different principals are allowed to place compatible (read) locks on a path, the |
|
Client-supplied user-data associated with a user-lock, uninterpreted by the store |
|
One or more implicit or client-specified principals that applied a user-lock on a path name |
|
One of the |
|
Sequence number for linear versioning of a path name |
|
Version path name for hierarchical versioning of a path name |
|
Stringified provider-generated store-specific unique contentID for a file element (that may optionally not be associated with a path (see |
A PROP_ITEM_T
is a tuple describing a (store
, mount
) qualified path in a store, with all user-defined properties associated with it, expanded out into individual (name, value, type) tuples.
TYPE prop_item_t IS RECORD ( store NAME_T, mount NAME_T, pathname PATH_T, property_name PROPNAME_T, property_value PROPVAL_T, property_type INTEGER);
Table 47-15 PROP_ITEM_T Fields
Field | Description |
---|---|
|
Name of store |
|
Location at which instance of store is mounted |
|
Name of path to item |
|
Name of the property |
|
Value of the property |
|
PL/SQL typecode for the property value |
This type describes a single (value
, typecode
) property value tuple; the property name is implied (see PROPERTIES_T Table Type).
TYPE property_t IS RECORD ( propvalue PROPVAL_T, typecode INTEGER);
This type describes a store registered with and managed by the DBMS_DBFS_CONTENT
interface.
TYPE store_t IS RECORD ( store_name VARCHAR2(32), store_id NUMBER, provider_name VARCHAR2(32), provider_pkg VARCHAR2(32), provider_id NUMBER, provider_version VARCHAR2(32), store_features INTEGER, store_guid NUMBER);
Field | Description |
---|---|
|
Name of store |
|
ID of store |
|
Name of the content store |
|
PL/SQL package name for the content store |
|
Unique identifier for the content store |
|
Version number for the content store |
|
Features supported by this content store |
|
Unique ID for this instance of the store |
A table type of FEATURE_T Record Type.
TYPE features_t IS TABLE OF feature_t;
A table type of MOUNT_T Record Type.
TYPE mounts_t IS TABLE OF mount_t;
A table type of PATH_ITEM_T Record Type
TYPE path_items_t IS TABLE OF path_item_t;
A table type of PATH_ITEM_T Record Type.
TYPE prop_items_t IS TABLE OF prop_item_t;
This is a name-indexed hash table of property tuples. The implicit hash-table association between the index and the value allows the client to build up the full DBMS_DBFS_CONTENT_PROPERTY_T
tuples for a PROPERTIES_T
.
TYPE properties_t IS TABLE OF property_t INDEX BY propname_t;
This type describes a store registered with and managed by the DBMS_DBFS_CONTENT
interface.
TYPE stores_t IS TABLE OF store_t;
Table 47-18 DBMS_DBFS_CONTENT Package Subprograms
Subprogram | Description |
---|---|
Reports if the user ( |
|
Checks if a user-provided package implements all of the |
|
Creates a directory |
|
Creates a file |
|
Creates a new reference to the source file system element |
|
Creates a physical link to an already existing file system element |
|
Given a feature bit set integer value, returns a |
|
Deletes the file specified by the given contentID |
|
Deletes a directory |
|
Deletes a file |
|
Given a feature bit, returns a |
|
Flushes |
|
Returns the ACL parameter of the default context |
|
Returns the |
|
Returns the default context |
|
Returns the |
|
Returns the |
|
Returns features of a store by mount point |
|
Returns features of a store by store name |
|
Returns features of a store by path |
|
Returns the full absolute path name |
|
Returns existing path items (such as files and directories) |
|
If the underlying GUID is found in the underlying store, returns the store-qualified path name |
|
Implies that the operation is for an update, and, if implemented, allows providers to return an exception ( |
|
Returns a store by way of its mount point |
|
Returns a store by way of its name |
|
Returns a store by way of its path |
|
Returns information about |
|
Returns whether or not |
|
Returns the version of the |
|
Lists the path items in the specified path meeting the specified filter and other criteria |
|
Lists all path items in all mounts |
|
Returns a table of all properties for all path items in all mounts |
|
Lists all available mount points, their backing stores, and the store features |
|
Lists all available stores and their features |
|
Applies user-level locks to the given valid path name |
|
Mounts a previously registered store and binds it to the mount point |
|
Converts a store-specific or full-absolute path name into normalized form |
|
Provides constructors that take one of a variety of types and return a PROPERTY_T |
|
Converts a |
|
Converts a |
|
Is a constructor that takes a |
|
Is a constructor that takes a |
|
Is a constructor that takes a |
|
Is a constructor that takes a |
|
Purges all soft-deleted entries matching the path and optional filter criteria |
|
Purges any soft-deleted versions of the given path item |
|
Creates a new path item |
|
Registers a new store |
|
Renames or moves a path |
|
Restores all soft-deleted path items meeting the path and filter criteria |
|
Restores all soft-deleted path items that match the given path and filter criteria |
|
Searches for path items matching the given path and filter criteria |
|
Sets the ACL parameter of the default context |
|
Sets the "as of" parameter of the default context |
|
Sets the default context |
|
Sets the "owner" parameter of the default context |
|
Sets the "principal" parameter of the default context |
|
Assigns a path name to a path item represented by contentID |
|
Enables and disables statistics collection |
|
Sets |
|
Queries file system space usage statistics |
|
Returns a |
|
Determines if the current trace "severity" set by the SETTRACE Procedure is at least as high as the given trace level |
|
Unlocks path items that were previously locked with the LOCKPATH Procedure |
|
Unmounts a registered store |
|
Unregisters a store |
This function reports if the user (principal
) can perform the specified operation on the given path. This enables verifying the validity of an operation without attempting to perform the operation. If CHECKACCESS
returns 0, then the subprogram invoked to implement that operation should fail with an error.
DBMS_DBFS_CONTENT.CHECKACCESS ( path IN VARCHAR2, pathtype IN INTEGER, operation IN VARCHAR2, principal IN VARCHAR2, store_name IN VARCHAR2 DEFAULT NULL) RETURN BOOLEAN;
Table 47-19 CHECKACCESS Procedure Parameters
Parameter | Description |
---|---|
|
Name of path to check for access |
|
Type of object |
|
Operation to be checked (see DBMS_DBFS_CONTENT Constants - Optional Properties) |
|
File system user for whom the access check is made |
|
Name of store |
Whether or not the user invokes this function, a store that supports access control internally performs these checks to guarantee security.
Given the name of a putative DBMS_DBFS_CONTENT_SPI
conforming package, this function or procedure checks whether the package implements all of the provider subprograms with the proper signatures, and reports on the conformance.
DBMS_DBFS_CONTENT.CHECKSPI ( package_name IN VARCHAR2) RETURN CLOB; DBMS_DBFS_CONTENT.CHECKSPI ( schema_name IN VARCHAR2, package_name IN VARCHAR2) return clob; DBMS_DBFS_CONTENT.CHECKSPI ( package_name IN VARCHAR2, chk IN OUT NOCOPY CLOB); DBMS_DBFS_CONTENT.CHECKSPI ( schema_name in VARCHAR2, package_name in VARCHAR2, chk in out nocopy CLOB);
Table 47-20 CHECKSPI Procedure Parameters
Parameter | Description |
---|---|
|
Name of package |
|
Name of schema |
|
|
The functional form returns a cached temporary LOB of session duration with the results of the analysis. The caller is expected to manage the lifetime of this LOB, as needed.
The procedural form generates the results of the analysis into the chk
LOB parameter; if the value passed in is NULL
, the results are written to the foreground trace file provided that DBMS_DBFS_CONTENT
interface tracing is enabled. If neither tracing is enabled nor a valid LOB passed in, the checker does not provide any useful indication of the analysis (other than raise exceptions if it encounters a serious error).
If schema_name
is NULL
, standard name resolution rules (current schema, private synonym, public synonym) are used to try and locate a suitable package to analyze.
This procedure creates a directory.
DBMS_DBFS_CONTENT.CREATEDIRECTORY ( path IN VARCHAR2, properties IN OUT NOCOPY DBMS_DBFS_CONTENT_PROPERTIES_T, prop_flags IN INTEGER DEFAULT PROP_STD, recurse IN BOOLEAN DEFAULT FALSE, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL); DBMS_DBFS_CONTENT.CREATEDIRECTORY ( path IN VARCHAR2, properties IN OUT NOCOPY PROPERTIES_T, prop_flags IN INTEGER DEFAULT PROP_STD, recurse IN BOOLEAN DEFAULT FALSE, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL);
Table 47-21 CREATEDIRECTORY Procedure Parameters
Parameter | Description |
---|---|
|
Name of path to the directory |
|
One or more properties and their values to be set, returned, or both, depending on |
|
Determines which properties are set, returned, or both. Default is |
|
If 0, do not execute recursively; otherwise, recursively create the directories above the given directory |
|
Name of store |
|
File system user for whom the access check is made |
This procedure creates a file.
DBMS_DBFS_CONTENT.CREATEFILE ( path IN VARCHAR2, properties IN OUT NOCOPY DBMS_DBFS_CONTENT_PROPERTIES_T, content IN OUT NOCOPY BLOB, prop_flags IN INTEGER DEFAULT (PROP_STD + PROP_DATA), store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL); DBMS_DBFS_CONTENT.CREATEFILE ( path IN VARCHAR2, properties IN OUT NOCOPY PROPERTIES_T, content IN OUT NOCOPY BLOB, prop_flags IN INTEGER DEFAULT (PROP_STD + PROP_DATA), store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL);
Table 47-22 CREATEFILE Procedure Parameters
Parameter | Description |
---|---|
|
Name of path to the file |
|
One or more properties and their values to be set, returned, or both, depending on |
|
|
|
Determines which properties are set, returned, or both. Default is |
|
Name of store |
|
File system user for whom the access check is made |
This procedure creates a new reference to the source file system element (such as a file, or directory). The resulting reference points to the source element but does not directly share metadata with the source element. This is analogous to a UNIX file system symbolic link.
DBMS_DBFS_CONTENT.CREATELINK ( srcPath IN VARCHAR2, dstPath IN VARCHAR2, properties IN OUT NOCOPY DBMS_DBFS_CONTENT_PROPERTIES_T, prop_flags IN INTEGER DEFAULT PROP_STD, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL); DBMS_DBFS_CONTENT.CREATELINK ( srcPath IN VARCHAR2, dstPath IN VARCHAR2, properties IN OUT NOCOPY PROPERTIES_T, prop_flags IN INTEGER DEFAULT PROP_STD, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL);
Table 47-23 CREATELINK Procedure Parameters
Parameter | Description |
---|---|
|
File system entry with which to link |
|
Path of the new link element to be created |
|
One or more properties and their values to be set, returned depending, or both, on |
|
Determines which properties are set, returned, or both. Default is |
|
Name of store |
|
File system user for whom the access check is made |
This procedure creates a physical link to an already existing file system element (such as file or directory). The resulting entry shares the same metadata structures as the value of the srcPath
parameter, and so is similar to incrementing a reference count on the file system element. This is analogous to a UNIX file system hard link.
DBMS_DBFS_CONTENT.CREATEREFERENCE ( srcPath IN VARCHAR2, dstPath IN VARCHAR2, properties IN OUT NOCOPY DBMS_DBFS_CONTENT_PROPERTIES_T, prop_flags IN INTEGER DEFAULT PROP_STD, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL); DBMS_DBFS_CONTENT.CREATEREFERENCE ( srcPath IN VARCHAR2, dstPath IN VARCHAR2, properties IN OUT NOCOPY PROPERTIES_T, prop_flags IN INTEGER DEFAULT PROP_STD, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL);
Table 47-24 CREATEREFERENCE Procedure Parameters
Parameter | Description |
---|---|
|
File system entry with which to link |
|
Path of the new link element to be created |
|
One or more properties and their values to be set, returned, or both, depending on |
|
Determines which properties are set, returned. Default is |
|
Name of store |
|
File system user for whom the access check is made |
Given a feature bit set integer value, this function returns a FEATURES_T
table of the feature bits as FEATURE_T
records.
DBMS_DBFS_CONTENT.DECODEFEATURES ( featureSet IN INTEGER) RETURN FEATURES_T DETERMINISTIC PIPELINED;
This procedure deletes the file specified by the given contentID.
DBMS_DBFS_CONTENT.DELETECONTENT ( store_name IN VARCHAR2 DEFAULT NULL, contentID IN RAW, filter IN VARCHAR2 DEFAULT NULL, soft_delete IN BOOLEAN DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL);
Table 47-26 DELETECONTENT Procedure Parameters
Parameter | Description |
---|---|
|
Name of store |
|
Unique identifier for the file to be deleted |
|
A filter, if any, to be applied |
|
If 0, execute a hard (permanent) delete. For any value other than 0, perform a soft delete (see "Deletion Operations"). |
|
File system user for whom the access check is made |
This procedure deletes a directory. If recurse
is nonzero, it recursively deletes all elements of the directory. A filter, if supplied, determines which elements of the directory are deleted.
DBMS_DBFS_CONTENT.DELETEDIRECTORY ( path IN VARCHAR2, filter IN VARCHAR2 DEFAULT NULL, soft_delete IN BOOLEAN DEFAULT NULL, recurse IN BOOLEAN DEFAULT FALSE, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL);
Table 47-27 DELETEDIRECTORY Procedure Parameters
Parameter | Description |
---|---|
|
Name of path to the directory |
|
A filter, if any, to be applied |
|
If 0, execute a hard (permanent) delete. For any value other than 0, perform a soft delete (see "Deletion Operations"). |
|
If 0, do not execute recursively. Otherwise, recursively delete the directories and files below the given directory. |
|
Name of store |
|
File system user for whom the access check is made |
This procedure deletes the specified file.
DBMS_DBFS_CONTENT.DELETEFILE ( path IN VARCHAR2, filter IN VARCHAR2 DEFAULT NULL, soft_delete IN BOOLEAN DEFAULT NULL, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL);
Table 47-28 DELETEFILE Procedure Parameters
Parameter | Description |
---|---|
|
Name of path to the file |
|
A filter, if any, to be applied |
|
If 0, execute a hard (permanent) delete. For any value other than 0, perform a soft delete (see "Deletion Operations"). |
|
Name of store |
|
File system user for whom the access check is made |
Given a feature bit, this function returns a VARCHAR2
of that feature's name.
DBMS_DBFS_CONTENT.FEATURENAME ( featureBit IN INTEGER) RETURN VARCHAR2 DETERMINISTIC;
Table 47-29 FEATURENAME Function Parameters
Parameter | Description |
---|---|
|
Bit representation of the feature (see DBMS_DBFS_CONTENT Constants - Store Features) |
Name of the feature
This procedure flushes DBMS_DBFS_CONTENT
statistics to disk.
DBMS_DBFS_CONTENT.FLUSHSTATS;
This procedure returns the ACL parameter of the default context. This information can be inserted explicitly by way of argument into other method calls, allowing for a more fine-grained control.
DBMS_DBFS_CONTENT.GETDEFAULTACL ( acl OUT NOCOPY VARCHAR2);
Table 47-30 GETDEFAULTACL Procedure Parameters
Parameter | Description |
---|---|
|
ACL for all new elements created (implicitly or explicitly) by the current operation |
This procedure returns the "as of" parameter of the default context. This information can be inserted explicitly by way of argument into other method calls, allowing for a more fine-grained control.
DBMS_DBFS_CONTENT.GETDEFAULTASOF ( asof OUT NOCOPY TIMESTAMP);
Table 47-31 GETDEFAULTASOF Procedure Parameters
Parameter | Description |
---|---|
|
The "as of" timestamp at which the underlying read-only operation (or its read-only sub-components) executes |
This procedure returns the default context. The information contained in the context can be inserted explicitly by way of arguments to the various method calls, allowing for fine-grained control over individual operations.
DBMS_DBFS_CONTENT.GETTDEFAULTCONTEXT ( principal OUT NOCOPY VARCHAR2, owner OUT NOCOPY VARCHAR2, acl OUT NOCOPY VARCHAR2, asof OUT NOCOPY TIMESTAMP);
Table 47-32 GETTDEFAULTCONTEXT Procedure Parameters
Parameter | Description |
---|---|
|
Agent (principal) invoking the current operation |
|
Owner for new elements created (implicitly or explicitly) by the current operation |
|
ACL for all new elements created (implicitly or explicitly) by the current operation |
|
The "as of" timestamp at which the underlying read-only operation (or its read-only sub-components) executes |
This procedure returns the "owner" parameter of the default context. This information can be inserted explicitly by way of argument into other method calls, allowing for a more fine-grained control.
DBMS_DBFS_CONTENT.GETDEFAULTOWNER ( principal IN VARCHAR2);
Table 47-33 GETDEFAULTOWNER Procedure Parameters
Parameter | Description |
---|---|
|
Owner for new elements created (implicitly or explicitly) by the current operation |
This procedure returns the "principal" parameter of the default context. This information contained can be inserted explicitly by way of argument into other method calls, allowing for a more fine-grained control.
DBMS_DBFS_CONTENT.GETDEFAULTPRINCIPAL ( principal OUT NOCOPY VARCHAR2);
Table 47-34 GETDEFAULTPRINCIPAL Procedure Parameters
Parameter | Description |
---|---|
|
Agent (principal) invoking the current operation |
This function returns features of a store by mount point.
DBMS_DBFS_CONTENT.GETFEATURESBYMOUNT ( store_mount IN VARCHAR2) RETURN INTEGER;
A bit mask of supported features (see FEATURES_T Table Type)
This function returns features of a store by store name.
DBMS_DBFS_CONTENT.GETFEATURESBYNAME ( store_name IN VARCHAR2) RETURN INTEGER;
A bit mask of supported features (see FEATURES_T Table Type)
This function returns features of a store by path.
DBMS_DBFS_CONTENT.GETFEATURESBYPATH ( path IN PATH_T) RETURN INTEGER;
A bit mask of supported features (see FEATURES_T Table Type)
This procedure returns existing path items (such as files and directories). This includes both data and metadata (properties).
The client can request (using prop_flags
) that specific properties be returned. File path names can be read either by specifying a BLOB
locator using the prop_data
bitmask in prop_flags
(see DBMS_DBFS_CONTENT Constants - Property Access Flags) or by passing one or more RAW
buffers.
When forUpdate
is 0, this procedure also accepts a valid asof
timestamp parameter as part of ctx
that can be used by stores to implement "as of" style flashback queries. Mutating versions of the GETPATH
Procedures do not support these modes of operation.
DBMS_DBFS_CONTENT.GETPATH ( path IN VARCHAR2, properties IN OUT NOCOPY DBMS_DBFS_CONTENT_PROPERTIES_T, content OUT NOCOPY BLOB, item_type OUT INTEGER, prop_flags IN INTEGER DEFAULT (PROP_STD + PROP_OPT + PROP_DATA), asof IN TIMESTAMP DEFAULT NULL, forUpdate IN BOOLEAN DEFAULT FALSE, deref IN BOOLEAN DEFAULT FALSE, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL); DBMS_DBFS_CONTENT.GETPATH ( path IN VARCHAR2, properties IN OUT NOCOPY PROPERTIES_T, content OUT NOCOPY BLOB, item_type OUT INTEGER, prop_flags IN INTEGER DEFAULT (PROP_STD + PROP_OPT + PROP_DATA), asof IN TIMESTAMP DEFAULT NULL, forUpdate IN BOOLEAN DEFAULT FALSE, deref IN BOOLEAN DEFAULT FALSE, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL); DBMS_DBFS_CONTENT.GETPATH ( path IN VARCHAR2, properties IN OUT NOCOPY DBMS_DBFS_CONTENT_PROPERTIES_T, amount IN OUT NUMBER, offset IN NUMBER, buffers OUT NOCOPY RAW, prop_flags IN INTEGER DEFAULT (PROP_STD + PROP_OPT + PROP_DATA), asof IN TIMESTAMP DEFAULT NULL, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL); DBMS_DBFS_CONTENT.GETPATH ( path IN VARCHAR2, properties IN OUT NOCOPY PROPERTIES_T, amount IN OUT NUMBER, offset IN NUMBER, buffers OUT NOCOPY RAW, prop_flags IN INTEGER DEFAULT (PROP_STD + PROP_OPT + PROP_DATA), asof IN TIMESTAMP DEFAULT NULL, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL); DBMS_DBFS_CONTENT.GETPATH ( path IN VARCHAR2, properties IN OUT NOCOPY DBMS_DBFS_CONTENT_PROPERTIES_T, amount IN OUT NUMBER, offset IN NUMBER, buffers OUT NOCOPY DBMS_DBFS_CONTENT_RAW_T, prop_flags IN INTEGER DEFAULT (PROP_STD + PROP_OPT + PROP_DATA), asof IN TIMESTAMP DEFAULT NULL, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL); DBMS_DBFS_CONTENT.GETPATH ( path IN VARCHAR2, properties IN OUT NOCOPY PROPERTIES_T, amount IN OUT NUMBER, offset IN NUMBER, buffers OUT NOCOPY DBMS_DBFS_CONTENT_RAW_T, prop_flags IN INTEGER DEFAULT (PROP_STD + PROP_OPT + PROP_DATA), asof IN TIMESTAMP DEFAULT NULL, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL);
Table 47-38 GETPATH Procedure Parameters
Parameter | Description |
---|---|
|
Name of path to path items |
|
One or more properties and their values to be returned depending on |
|
|
|
Type of the path item specified (see DBMS_DBFS_CONTENT Constants - Path Name Types) |
|
On input, number of bytes to be read. On output, number of bytes read |
|
Byte offset from which to begin reading |
|
Buffer to which to write |
|
Buffers to which to write |
|
Determines which properties are set, returned, or both. Default is |
|
The "as of" timestamp at which the underlying read-only operation (or its read-only sub-components) executes |
|
Specifies that a lock should be taken to signify exclusive write access to the path item |
|
If nonzero, attempts to resolve the given path item to actual data provided it is a reference |
|
Name of store |
|
Agent (principal) invoking the current operation |
If the underlying GUID is found in the underlying store, this function returns the full absolute path name.
DBMS_DBFS_CONTENT.GETPATHBYMOUNTID ( store_mount IN VARCHAR2, guid IN INTEGER) RETURN VARCHAR2;
Table 47-39 GETPATHBYMOUNTID Function Parameters
Parameter | Description |
---|---|
|
Mount point in which the path item with |
|
Unique ID for the path item |
If the GUID is unknown, a NULL
value is returned. Clients are expected to handle this as appropriate.
Path of the path item represented by GUID in store_mount
If the underlying GUID is found in the underlying store, this function returns the store-qualified path name.
DBMS_DBFS_CONTENT.GETPATHBYSTOREID ( store_name IN VARCHAR2, guid IN INTEGER) RETURN VARCHAR2;
Table 47-40 GETPATHBYSTOREID Function Parameters
Parameter | Description |
---|---|
|
Name of store |
|
Unique ID representing the desired path item |
If the GUID is unknown, a NULL
value is returned. Clients are expected to handle this as appropriate.
Store-qualified path name represented by the GUID
This procedure implies that the operation is for an update, and, if implemented (see FEATURE_NOWAIT
in DBMS_DBFS_CONTENT Constants - Store Features), allows providers to return an exception (ORA-00054
) rather than wait for row locks.
DBMS_DBFS_CONTENT.GETPATHNOWAIT ( path IN VARCHAR2, properties IN OUT NOCOPY DBMS_DBFS_CONTENT_PROPERTIES_T, content OUT NOCOPY BLOB, item_type OUT INTEGER, prop_flags IN INTEGER DEFAULT (PROP_STD + PROP_OPT + PROP_DATA), deref IN BOOLEAN DEFAULT FALSE, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL); DBMS_DBFS_CONTENT.GETPATHNOWAIT ( path IN VARCHAR2, properties IN OUT NOCOPY PROPERTIES_T, content OUT NOCOPY BLOB, item_type OUT INTEGER, prop_flags IN INTEGER DEFAULT (PROP_STD + PROP_OPT + PROP_DATA), deref IN BOOLEAN DEFAULT FALSE, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL);
Table 47-41 GETPATHNOWAIT Procedure Parameters
Parameter | Description |
---|---|
|
Name of path to path items |
|
One or more properties and their values to be returned depending on |
|
|
|
Type of the path item specified (see DBMS_DBFS_CONTENT Constants - Path Name Types) |
|
Determines which properties are returned. Default is |
|
The "as of" timestamp at which the underlying read-only operation (or its read-only sub-components) executes |
|
If nonzero, attempts to resolve the given path item to actual data provided it is a reference |
|
Name of store |
|
Agent (principal) invoking the current operation |
This function returns a store by way of its name.
DBMS_DBFS_CONTENT.GETSTOREBYMOUNT ( store_mount IN VARCHAR2) RETURN STORE_T;
This function returns a store by way of its name.
DBMS_DBFS_CONTENT.GETSTOREBYNAME ( store_name IN VARCHAR2) RETURN STORE_T;
This function returns a store by way of its path.
DBMS_DBFS_CONTENT.GETSTOREBYPATH ( path IN PATH_T) RETURN STORE_T;
This procedure returns information about DBMS_DBFS_CONTENT
statistics collection.
DBMS_DBFS_CONTENT.GETSTATS ( enabled OUT BOOLEAN, flush_time OUT INTEGER, flush_count OUT INTEGER);
Table 47-45 GETSTATS Procedure Parameters
Parameter | Description |
---|---|
|
Whether statistics collection is enabled |
|
How often to flush the statistics to disk in centiseconds |
|
Number of operations to allow between statistics flushes |
This function returns whether DBMS_DBFS_CONTENT
tracing is turned on or not.
DBMS_DBFS_CONTENT.GETTRACE RETURN INTEGER.
Returns 0 if tracing is off, non-zero if tracing is on.
This function marks each version of the DBMS_DBFS_CONTENT
interface.
DBMS_DBFS_CONTENT.GETVERSION ( RETURN VARCHAR2;
A string enumerating the version of the DBMS_DBFS_CONTENT
interface in standard naming convention: string: a.b.c corresponding to major, minor, and patch components.
This function lists the path items in the specified path meeting the specified filter and other criteria.
DBMS_DBFS_CONTENT.LIST ( path IN VARCHAR2, filter IN VARCHAR2 DEFAULT NULL, recurse IN INTEGER DEFAULT 0, asof IN TIMESTAMP DEFAULT NULL, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL) RETURN DBMS_DBFS_CONTENT_LIST_ITEMS_T PIPELINED;
Table 47-46 LIST Function Parameters
Parameter | Description |
---|---|
|
Name of path to directories |
|
A filter, if any, to be applied |
|
If 0, do not execute recursively. Otherwise, recursively list the contents of directories and files below the given directory. |
|
The "as of" timestamp at which the underlying read-only operation (or its read-only sub-components) executes |
|
Name of respository |
|
Agent (principal) invoking the current operation |
DBMS_DBFS_CONTENT_LIST_ITEMS_T Table Type
This function returns a table of all properties for all path items in all mounts
DBMS_DBFS_CONTENT.LISTALLPROPERTIES RETURN PROP_ITEMS_T PIPELINED;
This function lists all path items in all mounts.
DBMS_DBFS_CONTENT.LISTALLCONTENT RETURN PATH_ITEMS_T PIPELINED;
This function lists all available mount points, their backing stores, and the store features.
DBMS_DBFS_CONTENT.LISTMOUNTS RETURN MOUNTS_T PIPELINED;
A single mount results in a single returned row, with its store_mount
field of the returned records set to NULL
.
This function lists all available stores and their features.
DBMS_DBFS_CONTENT.LISTSTORES RETURN STORES_T PIPELINED;
The store_mount
field of the returned records is set to NULL
(since mount-points are separate from stores themselves).
This procedure applies user-level locks to the given valid path name (subject to store feature support), and optionally associates user-data with the lock.
DBMS_DBFS_CONTENT.LOCKPATH ( path IN VARCHAR2, lock_type IN INTEGER DEFAULT LOCK_READ_ONLY, lock_data IN VARCHAR2 DEFAULT NULL, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL);
Table 47-47 LOCKPATH Procedure Parameters
Parameter | Description |
---|---|
|
Name of path to file items |
|
One of the available lock types (see DBMS_DBFS_CONTENT Constants - Lock Types) |
|
Optional user data to be associated with the lock |
|
Name of store |
|
Agent (principal) invoking the current operation |
This procedure mounts a previously registered store and binds it to the mount point.
DBMS_DBFS_CONTENT.MOUNTSTORE ( store_mount in VARCHAR2 DEFAULT NULL, singleton in BOOLEAN DEFAULT FALSE, principal in VARCHAR2 DEFAULT NULL, owner in VARCHAR2 DEFAULT NULL, acl in VARCHAR2 DEFAULT NULL, asof in TIMESTAMP DEFAULT NULL, read_only in BOOLEAN DEFAULT FALSE);
Table 47-48 MOUNTSTORE Procedure Parameters
Parameter | Description |
---|---|
|
Path name to use to mount this store |
|
Whether the mount is a single backend store on the system |
|
Agent (principal) invoking the current operation |
|
Owner for new elements created (implicitly or explicitly) by the current operation |
|
ACL for all new elements created (implicitly or explicitly) by the current operation |
|
The "as of" timestamp at which the underlying read-only operation (or its read-only sub-components) executes |
|
Whether the mount is read-only |
Once mounted, accesses to path names of the form /
store_mount
/xyz...
are redirected to store_name and its content provider.
Store mount points must be unique, and a syntactically valid path name component (specifically, a NAME_T
with no embedded /
).
If a mount point is not specified (NULL
), the invoked subprogram attempts to use the store name itself as the mount point name (subject to the uniqueness and syntactic constraints).
A special empty mount point is available for single stores, specifically a scenario where the content interface manages a single backend store - in such cases, the client can directly deal with full path names of the form /xyz...
since there is no ambiguity in how to redirect these accesses.
Singleton mount points are indicated by the "singleton" boolean argument, and the store_mount
argument is ignored.
The same store can be mounted multiple times, obviously at different mount points.
Mount properties can be used to specify the execution environment, specifically, the default values of the principal, owner, ACL, and asof
for a particular mount point. Mount properties can also be used to specify a read-only mount. If a flashback mount is specified (through asof
), it implies a read-only mount.
This function converts a store-specific or full-absolute path name into normalized form:
verifies that the path name is absolute, and so starts with "/
"
collapses multiple consecutive "/
" into a single "/
"
strips trailing "/
"
breaks up a store-specific normalized path name into 2 components - parent pathname, trailing component name
breaks up a full-absolute normalized path name into 3 components - store name, parent pathname, trailing component name
DBMS_DBFS_CONTENT.NORMALIZEPATH ( path IN VARCHAR2, parent OUT NOCOPY VARCHAR2, tpath OUT NOCOPY VARCHAR2) RETURN VARCHAR2; DBMS_DBFS_CONTENT.NORMALIZEPATH ( path IN VARCHAR2, store_name OUT NOCOPY VARCHAR2, parent OUT NOCOPY VARCHAR2, tpath OUT NOCOPY VARCHAR2) RETURN VARCHAR2;
Table 47-49 NORMALIZEPATH Function Parameters
Parameter | Description |
---|---|
|
Name of path to file items |
|
Name of store |
|
Parent path name |
|
Name of trailing path item |
The completely normalized store-specific or full-absolute path name
This function provides constructors that take one of a variety of types and return a PROPERTY_T.
DBMS_DBFS_CONTENT.PROPANY ( val IN NUMBER) RETURN PROPERTY_T; DBMS_DBFS_CONTENT.PROPANY ( val IN VARCHAR2) RETURN PROPERTY_T; DBMS_DBFS_CONTENT.PROPANY ( val IN TIMESTAMP) RETURN PROPERTY_T; DBMS_DBFS_CONTENT.PROPANY ( val IN RAW) RETURN PROPERTY_T;
This function converts a PROPERTY_T
hash to a DBMS_DBFS_CONTENT_PROPERTIES_T
table.
DBMS_DBFS_CONTENT.PROPERTIEST2H ( pprops IN PROPERTIES_T) RETURN DBMS_DBFS_CONTENT_PROPERTIES_T;
DBMS_DBFS_CONTENT_PROPERTIES_T Table Type
This function converts a DBMS_DBFS_CONTENT_PROPERTIES_T
table to a PROPERTY_T
hash.
DBMS_DBFS_CONTENT.PROPERTIEST2H ( sprops IN DBMS_DBFS_CONTENT_PROPERTIES_T) RETURN properties_t;
Table 47-52 PROPERTIEST2H Function Parameters
Parameter | Description |
---|---|
|
A |
This function is a constructor that takes a number and returns a PROPERTY_T
.
DBMS_DBFS_CONTENT.PROPNUMBER ( val IN NUMBER) RETURN PROPERTY_T;
This function is a constructor that takes a RAW
and returns a PROPERTY_T
.
DBMS_DBFS_CONTENT.PROPRAW ( val IN RAW) RETURN PROPERTY_T;
This function is a constructor that takes a TIMESTAMP
and returns a PROPERTY_T
.
DBMS_DBFS_CONTENT.PROPTIMESTAMP ( val IN TIMESTAMP) RETURN PROPERTY_T;
This function is a constructor that takes a VARCHAR2 and returns a PROPERTY_T
.
DBMS_DBFS_CONTENT.PROPVARCHAR2 ( val IN VARCHAR2) RETURN PROPERTY_T;
This procedure purges all soft-deleted entries matching the path and optional filter criteria.
DBMS_DBFS_CONTENT.PURGEALL ( path IN VARCHAR2, filter IN VARCHAR2 DEFAULT NULL, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL);
Table 47-57 PURGEALL Procedure Parameters
Parameter | Description |
---|---|
|
Name of path to file items |
|
A filter, if any, to be applied based on specified criteria |
|
Name of store |
|
Agent (principal) invoking the current operation |
This procedure purges any soft-deleted versions of the given path item.
DBMS_DBFS_CONTENT.PURGEPATH ( path IN VARCHAR2, filter IN VARCHAR2 DEFAULT NULL, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL);
Table 47-58 PURGEPATH Procedure Parameters
Parameter | Description |
---|---|
|
Name of path to file items |
|
A filter, if any, to be applied |
|
Name of store |
|
Agent (principal) invoking the current operation |
This procedure creates a new path item.
DBMS_DBFS_CONTENT.PUTPATH ( path IN VARCHAR2, properties IN OUT NOCOPY DBMS_DBFS_CONTENT_PROPERTIES_T, content IN OUT NOCOPY BLOB, item_type OUT INTEGER, prop_flags IN INTEGER DEFAULT (PROP_STD + PROP_OPT + PROP_DATA), store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL); DBMS_DBFS_CONTENT.PUTPATH ( path IN VARCHAR2, properties IN OUT NOCOPY PROPERTIES_T, content IN OUT NOCOPY BLOB, item_type OUT INTEGER, prop_flags IN INTEGER DEFAULT (PROP_STD + PROP_OPT + PROP_DATA), store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL); DBMS_DBFS_CONTENT.PUTPATH ( path IN VARCHAR2, properties IN OUT NOCOPY DBMS_DBFS_CONTENT_PROPERTIES_T, amount IN NUMBER, offset IN NUMBER, buffer IN RAW, prop_flags IN INTEGER DEFAULT (PROP_STD + PROP_OPT), store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL); DBMS_DBFS_CONTENT.PUTPATH ( path IN VARCHAR2, properties IN OUT NOCOPY PROPERTIES_T, amount IN NUMBER, offset IN NUMBER, buffer IN RAW, prop_flags IN INTEGER DEFAULT (PROP_STD + PROP_OPT), store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL); DBMS_DBFS_CONTENT.PUTPATH ( path IN VARCHAR2, properties IN OUT NOCOPY DBMS_DBFS_CONTENT_PROPERTIES_T, written OUT NUMBER, offset IN NUMBER, buffers IN DBMS_DBFS_CONTENT_RAW_T, prop_flags IN INTEGER DEFAULT (PROP_STD + PROP_OPT), store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL); DBMS_DBFS_CONTENT.PUTPATH ( path IN VARCHAR2, properties IN OUT NOCOPY PROPERTIES_T, written OUT NUMBER, offset IN NUMBER, buffers IN DBMS_DBFS_CONTENT_RAW_T, prop_flags IN INTEGER DEFAULT (PROP_STD + PROP_OPT), store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL);
Table 47-59 PUTPATH Procedure Parameters
Parameter | Description |
---|---|
|
Name of path to file items |
|
One or more properties and their values to be set depending on |
|
|
|
Type of the path item specified (see DBMS_DBFS_CONTENT Constants - Path Name Types) |
|
Number of bytes to be read |
|
Byte offset from which to begin reading |
|
Buffer to which to write |
|
Buffers to which to write |
|
Determines which properties are set. Default is |
|
Name of store |
|
Agent (principal) invoking the current operation |
This procedure registers a new store backed by a provider that uses a store service provider (conforming to the DBMS_DBFS_CONTENT_SPI
package signature). This method is to be used primarily by service providers after they have created a new store.
DBMS_DBFS_CONTENT.REGISTERSTORE ( store_name IN VARCHAR2, provider_name IN VARCHAR2, provider_package IN VARCHAR2);
Table 47-60 REGISTERSTORE Procedure Parameters
Parameter | Description |
---|---|
|
Name of store, must be unique |
|
Name of provider |
|
Store service provider |
This procedure renames or moves a path. This operation can be performed across directory hierarchies and mount-points as long as it is within the same store.
Note:
See "Rename and Move Operations"DBMS_DBFS_CONTENT.RENAMEPATH ( oldPath IN VARCHAR2, newPath IN VARCHAR2, properties IN OUT NOCOPY DBMS_DBFS_CONTENT_PROPERTIES_T, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL); DBMS_DBFS_CONTENT.RENAMEPATH ( oldPath IN VARCHAR2, newPath IN VARCHAR2, properties IN OUT NOCOPY PROPERTIES_T, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL);
Table 47-61 RENAMEPATH Procedure Parameters
Parameter | Description |
---|---|
|
Name of path prior to renaming |
|
Name of path after renaming |
|
One or more properties and their values to be set depending on |
|
Name of store, must be unique |
|
Agent (principal) invoking the current operation |
This procedure restores all soft-deleted path items meeting the path and optional filter criteria.
DBMS_DBFS_CONTENT.RESTOREALL ( path IN VARCHAR2, filter IN VARCHAR2 DEFAULT NULL, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL);
Table 47-62 RESTOREALL Procedure Parameters
Parameter | Description |
---|---|
|
Name of path to file items |
|
A filter, if any, to be applied |
|
Name of store |
|
Agent (principal) invoking the current operation |
This procedure restores all soft-deleted path items that match the given path and optional filter criteria.
DBMS_DBFS_CONTENT.RESTOREPATH ( path IN VARCHAR2, filter IN VARCHAR2 DEFAULT NULL, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL);
Table 47-63 RESTOREPATH Procedure Parameters
Parameter | Description |
---|---|
|
Name of path to file items |
|
A filter, if any, to be applied |
|
Name of store |
|
Agent (principal) invoking the current operation |
This function...
DBMS_DBFS_CONTENT.SEARCH ( path IN VARCHAR2, filter IN VARCHAR2 DEFAULT NULL, recurse IN INTEGER DEFAULT 0, asof IN TIMESTAMP DEFAULT NULL, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL) RETURN DBMS_DBFS_CONTENT_LIST_ITEMS_T PIPELINED;
Table 47-64 LIST Function Parameters
Parameter | Description |
---|---|
|
Name of path to file items |
|
A filter, if any, to be applied |
|
If 0, do not execute recursively. Otherwise, recursively search the contents of directories and files below the given directory. |
|
The "as of" timestamp at which the underlying read-only operation (or its read-only sub-components) executes |
|
Name of store |
|
Agent (principal) invoking the current operation |
DBMS_DBFS_CONTENT_LIST_ITEMS_T
This procedure sets the ACL parameter of the default context. This information can be inserted explicitly by way of argument into other method calls, allowing for a more fine-grained control.
DBMS_DBFS_CONTENT.SETDEFAULTACL ( acl IN VARCHAR2);
Table 47-65 SETDEFAULTACL Procedure Parameters
Parameter | Description |
---|---|
|
ACL for all new elements created (implicitly or explicitly) by the current operation |
NULL
by default, this parameter be can be cleared by setting it to NULL
.
The parameters, once set, remain as a default for the duration of the session, and is inherited by all operations for which the default is not explicitly overridden.
This procedure sets the "as of" parameter of the default context. This information can be inserted explicitly by way of argument into other method calls, allowing for a more fine-grained control.
DBMS_DBFS_CONTENT.SETDEFAULTASOF ( asof IN TIMESTAMP);
Table 47-66 SETDEFAULTASOF Procedure Parameters
Parameter | Description |
---|---|
|
The "as of" timestamp at which the underlying read-only operation (or its read-only sub-components) executes |
NULL
by default, this parameter be can be cleared by setting it to NULL
.
The parameters, once set, remain as a default for the duration of the session, and is inherited by all operations for which the default is not explicitly overridden.
This procedure sets the default context. The information contained in the context can be inserted explicitly by way of arguments to the various method calls, allowing for fine-grained control over individual operations.
DBMS_DBFS_CONTENT.SETDEFAULTCONTEXT ( principal IN VARCHAR2, owner IN VARCHAR2, acl IN VARCHAR2, asof IN TIMESTAMP);
Table 47-67 SETDEFAULTCONTEXT Procedure Parameters
Parameter | Description |
---|---|
|
Agent (principal) invoking the current operation |
|
Owner for new elements created (implicitly or explicitly) by the current operation |
|
ACL for all new elements created (implicitly or explicitly) by the current operation |
|
The "as of" timestamp at which the underlying read-only operation (or its read-only sub-components) executes |
All of the context parameters are NULL
by default, and be can be cleared by setting them to NULL
.
The context parameters, once set, remain as defaults for the duration of the session, and are inherited by all operations for which the defaults are not explicitly overridden.
This procedure sets the "owner" parameter of the default context. This information can be inserted explicitly by way of argument into other method calls, allowing for a more fine-grained control.
DBMS_DBFS_CONTENT.SETDEFAULTOWNER ( principal IN VARCHAR2);
Table 47-68 SETDEFAULTOWNER Procedure Parameters
Parameter | Description |
---|---|
|
Owner for new elements created (implicitly or explicitly) by the current operation |
NULL
by default, this parameter be can be cleared by setting it to NULL
.
The parameters, once set, remain as a default for the duration of the session, and is inherited by all operations for which the default is not explicitly overridden.
This procedure sets the "principal" parameter of the default context. This information contained can be inserted explicitly by way of argument into other method calls, allowing for a more fine-grained control.
DBMS_DBFS_CONTENT.SETDEFAULTPRINCIPAL ( principal IN VARCHAR2);
Table 47-69 SETDEFAULTPRINCIPAL Procedure Parameters
Parameter | Description |
---|---|
|
Agent (principal) invoking the current operation |
NULL
by default, this parameter be can be cleared by setting it to NULL
.
The parameters, once set, remain as a default for the duration of the session, and is inherited by all operations for which the default is not explicitly overridden.
This procedure assigns a path name to a path item represented by contentID.
Stores and their providers that support contentID-based access and lazy path name binding also support the SETPATH Procedure
that associates an existing contentID
with a new path.
Note:
See "Rename and Move Operations"DBMS_DBFS_CONTENT.SETPATH ( store_name IN VARCHAR2, contentID IN RAW, path IN VARCHAR2, properties IN OUT NOCOPY DBMS_DBFS_CONTENT_PROPERTIES_T, principal IN VARCHAR2 DEFAULT NULL); DBMS_DBFS_CONTENT.SETPATH ( store_name IN VARCHAR2, contentID IN RAW, path IN VARCHAR2, properties IN OUT NOCOPY PROPERTIES_T, principal IN VARCHAR2 DEFAULT NULL);
Table 47-70 SETPATH Procedure Parameters
Parameter | Description |
---|---|
|
Name of the store |
|
Unique identifier for the item to be associated |
|
Name of path to path item |
|
One or more properties and their values to be set depending on |
|
Agent (principal) invoking the current operation |
This procedure enables and disables statistics collection. The client can optionally control the flush settings by specifying non-NULL
values for the time, count or both parameters.
DBMS_DBFS_CONTENT.SETSTATS ( enable IN BOOLEAN, flush_time IN INTEGER, flush_count IN INTEGER);
Table 47-71 SETSTATS Procedure Parameters
Parameter | Description |
---|---|
|
If |
|
How often to flush the statistics to disk in centiseconds |
|
Number of operations to allow between statistics flushes |
The SETSTATS Procedure
buffers statistics in-memory for a maximum of flush_time
centiseconds or a maximum of flush_count
operations (whichever limit is reached first), or both, at which time the buffers are implicitly flushed to disk.
This procedure sets the DBMS_DBFS_CONTENT
tracing severity to the given level, 0
being "off".
DBMS_DBFS_CONTENT.SETTRACE trclvl IN INTEGER);
Table 47-72 SETTRACE Procedure Parameters
Parameter | Description |
---|---|
|
Level of the tracing, higher values implying more tracing |
This procedure queries file system space usage statistics. Providers are expected to support this subprogram for their stores (and to make a best effort determination of space usage, especially if the store consists of multiple tables, indexes, LOBs, and so on).
DBMS_DBFS_CONTENT.SPACEUSAGE ( path IN VARCHAR2, blksize OUT INTEGER, tbytes OUT INTEGER, fbytes OUT INTEGER, nfile OUT INTEGER, ndir OUT INTEGER, nlink OUT INTEGER, nref OUT INTEGER, store_name IN VARCHAR2 DEFAULT NULL);
Table 47-73 SPACEUSAGE Procedure Parameters
Parameter | Description |
---|---|
|
Name of path to file items |
|
Natural tablespace blocksize that holds the store. If multiple tablespaces with different blocksizes are used, any valid blocksize is acceptable. |
|
Total size of the store in bytes computed over all segments that comprise the store |
|
Free or unused size of the store in bytes computed over all segments that comprise the store |
|
Number of currently available files in the store |
|
Number of currently available directories in the store |
|
Number of currently available links in the store |
|
Number of currently available references in the store |
|
Name of store |
A space usage query on the top-level root directory returns a combined summary of the space usage of all available distinct stores under it (if the same store is mounted multiple times, is still counted only once).
Since database objects are dynamically expandable, it is not easy to estimate the division between "free" space and "used" space.
This procedure outputs tracing to the current foreground trace file.
DBMS_DBFS_CONTENT.TRACE sev IN INTEGER, msg0 IN VARCHAR2, msg1 IN VARCHAR DEFAULT '', msg2 IN VARCHAR DEFAULT '', msg3 IN VARCHAR DEFAULT '', msg4 IN VARCHAR DEFAULT '', msg5 IN VARCHAR DEFAULT '', msg6 IN VARCHAR DEFAULT '', msg7 IN VARCHAR DEFAULT '', msg8 IN VARCHAR DEFAULT '', msg9 IN VARCHAR DEFAULT '', msg10 IN VARCHAR DEFAULT '');
Table 47-74 TRACE Procedure Parameters
Parameter | Description |
---|---|
|
Severity at which trace message is output |
|
One or more message strings to be output. If more than one message is specified, all are output. |
Trace information is written to the foreground trace file, with varying levels of detail as specified by the trace level arguments.
The global trace level consists of 2 components: "severity" and "detail". These can be thought of as additive bitmasks.
The "severity" allows the separation of top level as compared to low-level tracing of different components, and allows the amount of tracing to be increased as needed. There are no semantics associated with different levels, and users are free to set trace at any severity they choose, although a good rule of thumb would use severity "1
" for top level API entry and exit traces, "2
" for internal operations, and "3
" or greater for very low-level traces.
The "detail" controls how much additional information: timestamps, short-stack, etc. is dumped along with each trace record.
This function determines if the current trace "severity" set by the SETTRACE Procedure is at least as high as the given trace level.
DBMS_DBFS_CONTENT.TRACEENABLED( sev IN INTEGER) RETURN INTEGER;
Table 47-75 TRACEENABLED Procedure Parameters
Parameter | Description |
---|---|
|
Severity at which trace message is output |
Returns 0 if the requested severity level is lower than the currently set trace severity level; 1 otherwise.
This procedure unlocks path items that were previously locked with the LOCKPATH Procedure.
DBMS_DBFS_CONTENT.UNLOCKPATH ( path IN VARCHAR2, store_name IN VARCHAR2 DEFAULT NULL, principal IN VARCHAR2 DEFAULT NULL);
Table 47-76 UNLOCKPATH Procedure Parameters
Parameter | Description |
---|---|
|
Name of path to file items |
|
Name of store |
|
Agent (principal) invoking the current operation |
This procedure unmounts a registered store, either by name or by mount point.
DBMS_DBFS_CONTENT.UNMOUNTSTORE ( store_name IN VARCHAR2 DEFAULT NULL, store_mount IN VARCHAR2 DEFAULT NULL, ignore_unknown IN BOOLEAN DEFAULT FALSE);
Table 47-77 UNMOUNTSTORE Procedure Parameters
Parameter | Description |
---|---|
|
Name of store |
|
Location at which the store instance is mounted |
|
If |
Single stores can be unmounted only by store name (since they have no mount-points).
Attempting to unmount a store by name unmounts all mount points associated with the store.
Once unmounted all access to the store (or mount point) are not guaranteed to work.
If the ignore_unknown
argument is TRUE
, attempts to unregister unknown stores or mounts do not raise an exception.
This procedure unregisters a previously registered store (invalidating all mount points associated with it).
DBMS_DBFS_CONTENT.UNREGISTERSTORE ( store_name IN VARCHAR2, ignore_unknown IN BOOLEAN DEFAULT FALSE);
Table 47-78 UNREGISTERSTORE Procedure Parameters
Parameter | Description |
---|---|
|
Name of store |
|
Once unregistered all access to the store (and its mount points) are not guaranteed to work
If the ignore_unknown
argument is TRUE
, attempts to unregister unknown stores do not raise an exception.