DBA
Monday, January 16, 2006
How to find obsolete parameters in Oracle
By querying
V$OBSOLETE_PARAMETER
.
If the value in column ISSPECIFIED is 'TRUE' then it is specified in the init.ora file.
select * from V$OBSOLETE_PARAMETER
where ISSPECIFIED = 'TRUE'
/
Monday, January 09, 2006
A Comparison of Oracle's DATE and TIMESTAMP Datatypes
http://blogs.ittoolbox.com/database/solutions/archives/006681.asp
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)