| Oracle Internet File System Setup and Administration Guide Release 9.0.2 Part Number A95995-01 |
|
Using the Oracle 9iFS SQL views, experienced database administrators can see the effects of changes they make to the Oracle 9iFS schema in a familiar format. This chapter provides information on the SQL views provided with Oracle 9iFS and an example of each. The following topics are included:
Schema views are created when Oracle 9iFS is installed. The views are owned by the schema owner, ifssys. These SQL read-only views are created with the Oracle 9iFS schema and are for informational purposes only. Grant the SELECT permission to users who need access to these views.
The names of objects in the view may not be unique. Therefore, IDs are provided. Any column of type date has two columns in the view, for example:
CREATE_DATE--An internal representation of the create date.
CREATE_DATE_GMT--The standard Oracle9i platform date format, based on Greenwich Mean Time.
These eight schema views are provided out-of-the-box. Each view is described in a separate table which provides the name of the column, whether the column can be null, the type of column, and the length for each column.
View: ifs_versioned_documents
View: ifs_all_documents
View: ifs_folders
View: ifs_folder_items
View: ifs_users
View: ifs_groups
View: ifs_group_members
View: ifs_acls
To create additional views, see the Oracle Internet File System Developer Reference.
This view shows a list of all documents which are versioned.
This view shows a list of all documents.
This view shows all folders and their attributes.
This view lists all folders and the top level items.
This view lists all users.
This view lists all groups.
This view lists groups and their direct members.
This view lists all ACLs in Oracle 9iFS.
This example uses ifs_versioned_documents to select attributes. To accomplish this, the following command is run:
SQL> select name, format, document_size, media, document_id, acl, owner from
ifs_versioned_documents
The following table displays the output.
|
|
![]() Copyright © 1999, 2002 Oracle Corporation. All Rights Reserved. |
|