Collections:
What Is a Directory Object in Oracle
What Is a Directory Object in Oracle?
✍: FYIcenter.com
A directory object is a logical alias for a physical directory path name on the operating system. Directory objects can be created, dropped, and granted access permissions to different users. The following tutorial exercise shows you some good examples:
>sqlplus /nolog SQL> connect SYSTEM/fyicenter SQL> CREATE DIRECTORY test_dir AS '/oraclexe/test'; Directory created. SQL> GRANT READ ON DIRECTORY test_dir TO hr; Grant succeeded. SQL> GRANT WRITE ON DIRECTORY test_dir TO hr; Grant succeeded. SQL> CREATE DIRECTORY temp_dir AS '/oraclexe/temp'; Directory created. SQL> DROP DIRECTORY temp_dir; Directory dropped.
⇒ Define External Table in a Text File in Oracle
⇐ Restrictions on External Table Columns in Oracle
2016-10-15, 3308🔥, 0💬
Popular Posts:
What Are the Differences between BINARY and VARBINARY in MySQL? Both BINARY and VARBINARY are both b...
What are binary literals supported in SQL Server Transact-SQL? Binary literals in Transact-SQL are s...
How To Use GO Command in "sqlcmd" in SQL Server? "sqlcmd" is a command line client application to ru...
How to detect the collation coercibility associated to a given character string using the COERCIBILI...
Where to find tutorials to answer some frequently asked questions on Microsoft SQL Server Transact-S...