Get all database parameters

get

/database/parameters/

Return records from GV$SYSTEM_PARAMETER. A client requires SQL Administrator role to invoke this service.

Request

Query Parameters
  • The maximum number of records to return.
  • Filtering is the process of limiting a collection resource by using a per-request dynamic filter definition across multiple page resources, where each page contains a subset of items found in the complete collection. Filtering enables efficient traversal of large collections.
    Examples

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Description of all database parameters.
Body ()
Root Schema : DatabaseParameters
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
  • DatabaseParametersItem
    This documentation represents an initialization parameter that is currently in effect for the instance. A new session inherits parameter values from the instance-wide values. The list of attributes may vary depending on database version.
Nested Schema : DatabaseParametersItem
Type: object
This documentation represents an initialization parameter that is currently in effect for the instance. A new session inherits parameter values from the instance-wide values. The list of attributes may vary depending on database version.
Show Source
  • The ID of the container to which the data pertains.
  • The default value for this parameter. This is the value of the parameter if a value is not explicitly specified for the parameter.
  • Description of the parameter.
  • Parameter value in a user-friendly format. For example, if the VALUE column shows the value 262144 for a big integer parameter, then the DISPLAY_VALUE column will show the value 256K.
  • Hash value for the parameter name.
  • Instance number from which the associated GV$SYSTEM_PARAMETER view information was obtained.
  • 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 is a basic parameter (TRUE) or not (FALSE).
  • Indicates whether the parameter is set to the default value (TRUE) or the parameter value was specified in the parameter file (FALSE). The database sets the value of the ISDEFAULT column to TRUE for parameters that are not specified in the init.ora or server parameter file (SPFILE).
  • Indicates whether the parameter has been deprecated (TRUE) or not (FALSE).
  • For parameters that can be changed with ALTER SYSTEM, indicates whether the value of the parameter can be different for every instance (TRUE) or whether the parameter must have the same value for all Real Application Clusters instances (FALSE). If the ISSYS_MODIFIABLE column is FALSE, then this column is always FALSE.
  • Indicates how the parameter was modified. If an ALTER SYSTEM was performed, the value will be MODIFIED.
  • Indicates whether the parameter can be modified inside a PDB (TRUE) or not (FALSE). In a non-CDB, the value of this column is NULL.
  • Indicates whether the parameter can be changed with ALTER SESSION (TRUE) or not (FALSE).
  • Indicates whether the parameter can be changed with ALTER SYSTEM and when the change takes effect.
  • links
  • Name of the parameter.
  • Parameter number.
  • Parameter type.
  • Comments associated with the most recent update.
  • Instance-wide parameter value.
Nested Schema : LinkRelation
Type: object
Show Source
Back to Top