8.14 V$ALL_SQL_BIND_CAPTURE
V$ALL_SQL_BIND_CAPTURE
displays information on bind variables used by SQL cursors.
Note:
V$ALL_SQL_BIND_CAPTURE
allows application developers to view information about their own bind variables used by SQL cursors. It is similar to the V$SQL_BIND_CAPTURE
view, with the following exception:
-
When queried by a user with the
SYSDBA
privilege, theV$ALL_SQL_BIND_CAPTURE
view displays the same data as theV$SQL_BIND_CAPTURE
view. -
When queried by any other user, the
V$ALL_SQL_BIND_CAPTURE
view displays only data about bind variables used by the SQL cursors owned by that user.
See also "V$SQL_BIND_CAPTURE"
Column | Datatype | Description |
---|---|---|
|
|
Address of the parent cursor |
|
|
Hash value of the parent cursor in the library cache. The hash value is a fixed index for the view and should always be used to speed up access to the view. |
|
|
SQL identifier of the parent cursor in the library cache |
|
|
Address of the child cursor |
|
|
Child cursor number |
|
|
Name of the bind variable |
|
|
Position of the bind variable in the SQL statement |
|
|
If the binding is performed by name and the bind variable is duplicated, then this column gives the position of the primary bind variable. |
|
|
Internal identifier for the bind data type. Beginning in Oracle Database 12c, a number representing a PL/SQL data type can appear in this column. |
|
|
Textual representation of the bind data type. Beginning in Oracle Database 12c, a text representation of a PL/SQL-only data type can appear in this column. If the actual data type is a PL/SQL sub type, the name of the data type, not the sub type will be displayed. |
|
|
National character set identifier |
|
|
Precision (for numeric binds) |
|
|
Scale (for numeric binds) |
|
|
Maximum bind length |
|
|
Indicates whether the bind value was captured ( |
|
|
Date when the bind value was captured. Bind values are captured when SQL statements are executed. To limit the overhead, binds are captured at most every 15 minutes for a given cursor. |
|
|
Value of the bind represented as a string |
|
|
The ID of the container to which the data pertains. Possible values include:
|
Note:
This view is available starting with Oracle Database 23ai.