|
 |
|
Oracle Tips by Burleson |
Chapter 7 Oracle Storage and Object
Internal Scripting
COLUMN
default_directory_owner FORMAT a10 HEADING 'Dir|Owner'
COLUMN default_directory_name FORMAT a10 HEADING 'Dir|Name'
COLUMN reject_limit FORMAT a9 HEADING 'Reject|Limit'
COLUMN access_type FORMAT a6 HEADING 'Access|Type'
COLUMN access_parameters FORMAT a35 WORD_WRAPPED HEADING 'Access
Parameters'
SET LINES 132 PAGES 55
ttitle 'External Tables'
SPOOL ext_tab
SELECT
owner,
table_name,
type_owner,
type_name,
default_directory_owner,
default_directory_name,
reject_limit,
access_type,
access_parameters
from
dba_external_tables
/
SPOOL OFF
SET lines 80 Pages 22
Here is a sample listing.
The above text is
an excerpt from:
Mike
Ault’s Oracle Internals Monitoring & Tuning Scripts
Written by the world's top DBA and author
of over 20 Oracle books, Mike Ault shares his secrets for Oracle
DBA management scripts. This handy reference is indispensable
for all Oracle professionals who must quickly automate and
manage their Oracle databases with scripts.
This stellar book comes complete with an
online code depot full of over 200 pre-tested Oracle DBA
scripts, and covers all areas of Oracle database administration
including data files, tablespace, table and index management
scripts. Based on more than 20 years full-time experience, Mike
Ault brings his expertise to the public with this fantastic
book. Your time savings from a single script is worth the price
of this great book.
Mike Ault is one of the
leading names in Oracle technology. The author of 20
books and hundreds of articles in national publications,
Mike was the first popular Oracle author with his
landmark book "Oracle7 Administration and Management".
Mike also wrote several of the "Exam Cram" books, and
enjoys a reputation as a leading author and Oracle
consultant.
Mike started
working with computers in 1979 right out of a stint in
the Nuclear Navy. He began working with Oracle in 1990
and has since become a World Renowned Oracle expert (in
the words of his publisher anyway!) Mike has written 14
Oracle related books, dozens of articles, and has
presented at conferences in Europe and the USA. Mike has
two wonderful daughters and is kept out of trouble by
his wife of 29 years, Susan. |
http://www.rampant-books.com/book_2003_2_ault_internals.htm
See the Oracle script collection::
|