Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Wich tables has users information and options installed in oracle

Status
Not open for further replies.

isonlyme

Programmer
Apr 20, 2002
171
PR
Hey guys!

I need to know wich tables i should query to know wich options are installed in oracle (partitioning, performce pack, etc) and users!!!

Thanks in advance
 
Hi,
Select username from all_users;

Select * from v$option;

Code:
column parameter format a45
column value format a7
select * from v$option;
PARAMETER                                VALUE
---------------------------------------- -------
Partitioning                             TRUE
Objects                                  TRUE
Parallel Server                          FALSE
Advanced replication                     TRUE
Bit-mapped indexes                       TRUE
Connection multiplexing                  TRUE
Connection pooling                       TRUE
Database queuing                         TRUE
Incremental backup and recovery          TRUE
Instead-of triggers                      TRUE
Parallel backup and recovery             TRUE

PARAMETER                                VALUE
---------------------------------------- -------
Parallel execution                       TRUE
Parallel load                            TRUE
Point-in-time tablespace recovery        TRUE
Fine-grained access control              TRUE
N-Tier authentication/authorization      TRUE
Function-based indexes                   TRUE
Plan Stability                           TRUE
Online Index Build                       TRUE
Coalesce Index                           TRUE
Managed Standby                          TRUE
Materialized view rewrite                TRUE

PARAMETER                                VALUE
---------------------------------------- -------
Materialized view warehouse refresh      TRUE
Database resource manager                TRUE
Spatial                                  TRUE
Visual Information Retrieval             TRUE
Export transportable tablespaces         TRUE
Transparent Application Failover         TRUE
Fast-Start Fault Recovery                TRUE
Sample Scan                              TRUE
Duplexed backups                         TRUE
Java                                     TRUE

32 rows selected.

hope it helps..
[profile]
 
Perfect! Thanks a lot turkbear!!!
Great people, great site!...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top