8.108 V$PARAMETER
V$PARAMETER displays information about the initialization parameters that are currently in effect for the session. A new session inherits parameter values from the instance-wide values displayed by the V$SYSTEM_PARAMETER view.
               | Column | Datatype | Description | 
|---|---|---|
| 
                               
  | 
                           
                               
  | 
                           
                               Parameter number  | 
                        
| 
                               
  | 
                           
                               
  | 
                           
                               Name of the parameter  | 
                        
| 
                               
  | 
                           
                               
  | 
                           
                               Parameter type: 
  | 
                        
| 
                               
  | 
                           
                               
  | 
                           
                               Parameter value for the session (if modified within the session); otherwise, the instance-wide parameter value  | 
                        
| 
                               
  | 
                           
                               
  | 
                           
                               Parameter value in a user-friendly format. For example, if the   | 
                        
| 
                               
  | 
                           
                               
  | 
                           
                               The default value for this parameter. This is the value of the parameter if a value is not explicitly specified for the parameter.  | 
                        
| 
                               
  | 
                           
                               
  | 
                           
                               Indicates whether the parameter is set to the default value ( The database sets the value of the   | 
                        
| 
                               
  | 
                           
                               
  | 
                           
                               Indicates whether the parameter can be changed with   | 
                        
| 
                               
  | 
                           
                               
  | 
                           
                               Indicates whether the parameter can be changed with  
  | 
                        
| 
                               
  | 
                           
                               
  | 
                           
                               Indicates whether the parameter can be modified inside a PDB (  | 
                        
| 
                               
  | 
                           
                               
  | 
                           
                               For parameters that can be changed with   | 
                        
| 
                               
  | 
                           
                               
  | 
                           
                               Indicates whether the parameter has been modified after instance startup: 
  | 
                        
| 
                               
  | 
                           
                               
  | 
                           
                               Indicates whether Oracle adjusted the input value to a more suitable value (for example, the parameter value should be prime, but the user input a non-prime number, so Oracle adjusted the value to the next prime number)  | 
                        
| 
                               
  | 
                           
                               
  | 
                           
                               Indicates whether the parameter has been deprecated (  | 
                        
| 
                               
  | 
                           
                               
  | 
                           
                               Indicates whether the parameter is a basic parameter (  | 
                        
| 
                               
  | 
                           
                               
  | 
                           
                               Description of the parameter  | 
                        
| 
                               
  | 
                           
                               
  | 
                           
                               Comments associated with the most recent update  | 
                        
| 
                               
  | 
                           
                               
  | 
                           
                               Hash value for the parameter name  | 
                        
| 
                               
  | 
                           
                               
  | 
                           
                               The ID of the container to which the data pertains. Possible values include: 
  | 
                        
Examples
The following query returns the default value for the ALLOW_GLOBAL_DBLINKS initialization parameter:
                  
SQL> SELECT name, default_value FROM v$parameter
  2  WHERE name = 'allow_global_dblinks';
NAME
-----------------------------------------------------------
DEFAULT_VALUE
----------------------------------------------------------- 
allow_global_dblinks
FALSE
SQL>The following query shows that the ALLOW_GLOBAL_DBLINKS initialization parameter is not modifiable in a PDB:
                  
SQL> SELECT name, ispdb_modifiable FROM v$parameter
  2  WHERE name = 'allow_global_dblinks';
NAME
-----------------------------------------------------------
ISPDB
-----
allow_global_dblinks
FALSE
SQL>See Also: