Thank you for visiting Spatial DBA - Oracle and ArcSDE.
Please visit Oracle DBA Tips (http://www.oracledbatips.com) for more Oracle DBA Tips.
==================================================================
DBA_DIRECTORIES
describes all directory objects in the database. Its columns are the same as those in "ALL_DIRECTORIES".
ALL_DIRECTORIES
describes all directories accessible to the current user.
Column
|
Datatype
|
NULL
|
Description
|
OWNER | VARCHAR2(30) | NOT NULL |
Owner of the directory (always
SYS ) |
DIRECTORY_NAME | VARCHAR2(30) | NOT NULL |
Name of the directory
|
DIRECTORY_PATH | VARCHAR2(4000) |
Operating system pathname for the directory
|
System privileges
|
GRANT create any directory TO
GRANT drop any directory TO |
Create a directory
|
CREATE OR REPLACE DIRECTORY
|
Grant read on a directory
|
GRANT READ ON DIRECTORY
|
Grant write on a directory
|
GRANT WRITE ON DIRECTORY
|
Revoke read on a directory
|
REVOKE READ ON DIRECTORY
|
Revoke write on a directory
|
REVOKE WRITE ON DIRECTORY
|
Drop a directory
|
DROP DIRECTORY
|
DBA_DIRECTORIES
OWNER
|
DIRECTORY_NAME
|
DIRECTORY_PATH
|
SYS
|
DATA_PUMP_DIR
|
/oracle/product/10.2.0.1ee/rdbms/log/
|
SYS
|
ADMIN_DIR
|
/oracle/product/10.2.0.1ee/md/admin
|
SYS
|
TIMEZDIF_DIR
|
/oracle/product/10.2.0.2ee/oracore/zoneinfo
|
Last updated: 2009-11-02 Monday
|