diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index 032e0250536..72c80626c93 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -709,6 +709,7 @@ from being added to events by default. {pull}18159[18159] - New juniper.srx dataset for Juniper SRX logs. {pull}20017[20017] - Adding support for Microsoft 365 Defender (Microsoft Threat Protection) {pull}21446[21446] - Adding support for FIPS in s3 input {pull}21446[21446] +- Adding support for Oracle Database Audit Logs {pull}21991[21991] - Add SSL option to checkpoint module {pull}19560[19560] - Add max_number_of_messages config into s3 input. {pull}21993[21993] - Update Okta documentation for new stateful restarts. {pull}22091[22091] diff --git a/filebeat/docs/fields.asciidoc b/filebeat/docs/fields.asciidoc index f6578877415..18968522656 100644 --- a/filebeat/docs/fields.asciidoc +++ b/filebeat/docs/fields.asciidoc @@ -65,6 +65,7 @@ grouped in the following categories: * <> * <> * <> +* <> * <> * <> * <> @@ -108280,6 +108281,157 @@ type: geo_point -- +[[exported-fields-oracle]] +== Oracle fields + +Oracle Module + + + +[float] +=== oracle + +Fields from Oracle logs. + + + +[float] +=== database_audit + +Module for parsing Oracle Database audit logs + + + +*`oracle.database_audit.status`*:: ++ +-- +Database Audit Status. + + +type: keyword + +-- + +*`oracle.database_audit.session_id`*:: ++ +-- +Indicates the audit session ID number. + + +type: keyword + +-- + +*`oracle.database_audit.client.terminal`*:: ++ +-- +If available, the client terminal type, for example "pty". + + +type: keyword + +-- + +*`oracle.database_audit.client.address`*:: ++ +-- +The IP Address or Domain used by the client. + + +type: keyword + +-- + +*`oracle.database_audit.client.user`*:: ++ +-- +The user running the client or connection to the database. + + +type: keyword + +-- + +*`oracle.database_audit.database.user`*:: ++ +-- +The database user used to authenticate. + + +type: keyword + +-- + +*`oracle.database_audit.privilege`*:: ++ +-- +The privilege group related to the database user. + + +type: keyword + +-- + +*`oracle.database_audit.entry.id`*:: ++ +-- +Indicates the current audit entry number, assigned to each audit trail record. The audit entry.id sequence number is shared between fine-grained audit records and regular audit records. + + +type: keyword + +-- + +*`oracle.database_audit.database.host`*:: ++ +-- +Client host machine name. + + +type: keyword + +-- + +*`oracle.database_audit.action`*:: ++ +-- +The action performed during the audit event. This could for example be the raw query. + + +type: keyword + +-- + +*`oracle.database_audit.action_number`*:: ++ +-- +Action is a numeric value representing the action the user performed. The corresponding name of the action type is in the AUDIT_ACTIONS table. For example, action 100 refers to LOGON. + + +type: keyword + +-- + +*`oracle.database_audit.database.id`*:: ++ +-- +Database identifier calculated when the database is created. It corresponds to the DBID column of the V$DATABASE data dictionary view. + + +type: keyword + +-- + +*`oracle.database_audit.length`*:: ++ +-- +Refers to the total number of bytes used in this audit record. This number includes the trailing newline bytes (\n), if any, at the end of the audit record. + + +type: long + +-- + [[exported-fields-osquery]] == Osquery fields diff --git a/filebeat/docs/modules/oracle.asciidoc b/filebeat/docs/modules/oracle.asciidoc new file mode 100644 index 00000000000..aa95f0ce09f --- /dev/null +++ b/filebeat/docs/modules/oracle.asciidoc @@ -0,0 +1,77 @@ +//// +This file is generated! See scripts/docs_collector.py +//// + +[[filebeat-module-oracle]] +[role="xpack"] + +:modulename: oracle +:has-dashboards: false + + +== Oracle module +beta[] + +This is a module for ingesting Audit Trail logs from Oracle Databases. + +The module expects an *.aud audit file that is generated from Oracle Databases by default. If this has been disabled then please see the https://docs.oracle.com/en/database/oracle/oracle-database/19/dbseg/introduction-to-auditing.html#GUID-8D96829C-9151-4FA4-BED9-831D088F12FF[Oracle Database Audit Trail Documentation]. + + + +include::../include/gs-link.asciidoc[] + + +[float] +=== Compatibility + +This module has been tested with Oracle Database 19c, and should work for 18c as well though it has not been tested. + +include::../include/configuring-intro.asciidoc[] + +:fileset_ex: database_audit + +include::../include/config-option-intro.asciidoc[] + +[float] +==== `database_audit` fileset settings + +Example config: + +[source,yaml] +---- +- module: oracle + database_audit: + var.input: file + var.paths: /home/user/oracleauditlogs/*/*.aud +---- + +include::../include/var-paths.asciidoc[] + +*`var.tags`*:: + +A list of tags to include in events. Including `forwarded` indicates that the +events did not originate on this host and causes `host.name` to not be added to +events. Defaults to `[oracle-database-audit]`. + +[float] +==== Oracle Database fields + +Oracle Database fields are mapped to the current ECS Fields: +[options="header"] +|============================================================== +| Oracle Fields | ECS Fields | +| privilege | host.user.roles | +| client_user | client.user.name | +| userhost | client.ip/domain | +| database_user | server.user.name | +|============================================================== + +:modulename!: + + +[float] +=== Fields + +For a description of each field in the module, see the +<> section. + diff --git a/filebeat/docs/modules_list.asciidoc b/filebeat/docs/modules_list.asciidoc index cd466617a94..6c862dc2c77 100644 --- a/filebeat/docs/modules_list.asciidoc +++ b/filebeat/docs/modules_list.asciidoc @@ -46,6 +46,7 @@ This file is generated! See scripts/docs_collector.py * <> * <> * <> + * <> * <> * <> * <> @@ -114,6 +115,7 @@ include::modules/netscout.asciidoc[] include::modules/nginx.asciidoc[] include::modules/o365.asciidoc[] include::modules/okta.asciidoc[] +include::modules/oracle.asciidoc[] include::modules/osquery.asciidoc[] include::modules/panw.asciidoc[] include::modules/postgresql.asciidoc[] diff --git a/x-pack/filebeat/filebeat.reference.yml b/x-pack/filebeat/filebeat.reference.yml index 869950487a3..d0eefaa01a6 100644 --- a/x-pack/filebeat/filebeat.reference.yml +++ b/x-pack/filebeat/filebeat.reference.yml @@ -1402,6 +1402,18 @@ filebeat.modules: #var.url: https://yourOktaDomain/api/v1/logs #var.api_key: 'yourApiTokenHere' +#-------------------------------- Oracle Module -------------------------------- +- module: oracle + database_audit: + enabled: true + + # Set which input to use between syslog or file (default). + #var.input: file + + # Set paths for the log files when file input is used. + # Should only be used together with file input + # var.paths: /home/user/oracleauditlogs/*.aud + #------------------------------- Osquery Module ------------------------------- - module: osquery result: diff --git a/x-pack/filebeat/include/list.go b/x-pack/filebeat/include/list.go index 292b9eaf004..dd98b643c3f 100644 --- a/x-pack/filebeat/include/list.go +++ b/x-pack/filebeat/include/list.go @@ -43,6 +43,7 @@ import ( _ "github.com/elastic/beats/v7/x-pack/filebeat/module/netscout" _ "github.com/elastic/beats/v7/x-pack/filebeat/module/o365" _ "github.com/elastic/beats/v7/x-pack/filebeat/module/okta" + _ "github.com/elastic/beats/v7/x-pack/filebeat/module/oracle" _ "github.com/elastic/beats/v7/x-pack/filebeat/module/panw" _ "github.com/elastic/beats/v7/x-pack/filebeat/module/proofpoint" _ "github.com/elastic/beats/v7/x-pack/filebeat/module/rabbitmq" diff --git a/x-pack/filebeat/module/oracle/_meta/config.yml b/x-pack/filebeat/module/oracle/_meta/config.yml new file mode 100644 index 00000000000..89485db77f6 --- /dev/null +++ b/x-pack/filebeat/module/oracle/_meta/config.yml @@ -0,0 +1,10 @@ +- module: oracle + database_audit: + enabled: true + + # Set which input to use between syslog or file (default). + #var.input: file + + # Set paths for the log files when file input is used. + # Should only be used together with file input + # var.paths: /home/user/oracleauditlogs/*.aud diff --git a/x-pack/filebeat/module/oracle/_meta/docs.asciidoc b/x-pack/filebeat/module/oracle/_meta/docs.asciidoc new file mode 100644 index 00000000000..855f5d57a03 --- /dev/null +++ b/x-pack/filebeat/module/oracle/_meta/docs.asciidoc @@ -0,0 +1,64 @@ +[role="xpack"] + +:modulename: oracle +:has-dashboards: false + + +== Oracle module +beta[] + +This is a module for ingesting Audit Trail logs from Oracle Databases. + +The module expects an *.aud audit file that is generated from Oracle Databases by default. If this has been disabled then please see the https://docs.oracle.com/en/database/oracle/oracle-database/19/dbseg/introduction-to-auditing.html#GUID-8D96829C-9151-4FA4-BED9-831D088F12FF[Oracle Database Audit Trail Documentation]. + + + +include::../include/gs-link.asciidoc[] + + +[float] +=== Compatibility + +This module has been tested with Oracle Database 19c, and should work for 18c as well though it has not been tested. + +include::../include/configuring-intro.asciidoc[] + +:fileset_ex: database_audit + +include::../include/config-option-intro.asciidoc[] + +[float] +==== `database_audit` fileset settings + +Example config: + +[source,yaml] +---- +- module: oracle + database_audit: + var.input: file + var.paths: /home/user/oracleauditlogs/*/*.aud +---- + +include::../include/var-paths.asciidoc[] + +*`var.tags`*:: + +A list of tags to include in events. Including `forwarded` indicates that the +events did not originate on this host and causes `host.name` to not be added to +events. Defaults to `[oracle-database-audit]`. + +[float] +==== Oracle Database fields + +Oracle Database fields are mapped to the current ECS Fields: +[options="header"] +|============================================================== +| Oracle Fields | ECS Fields | +| privilege | host.user.roles | +| client_user | client.user.name | +| userhost | client.ip/domain | +| database_user | server.user.name | +|============================================================== + +:modulename!: diff --git a/x-pack/filebeat/module/oracle/_meta/fields.yml b/x-pack/filebeat/module/oracle/_meta/fields.yml new file mode 100644 index 00000000000..a28a7e592a6 --- /dev/null +++ b/x-pack/filebeat/module/oracle/_meta/fields.yml @@ -0,0 +1,10 @@ +- key: oracle + title: Oracle + description: > + Oracle Module + fields: + - name: oracle + type: group + description: > + Fields from Oracle logs. + fields: diff --git a/x-pack/filebeat/module/oracle/database_audit/_meta/fields.yml b/x-pack/filebeat/module/oracle/database_audit/_meta/fields.yml new file mode 100644 index 00000000000..c034c350d9c --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/_meta/fields.yml @@ -0,0 +1,70 @@ +- name: database_audit + type: group + release: beta + description: > + Module for parsing Oracle Database audit logs + fields: + - name: status + type: keyword + description: > + Database Audit Status. + + - name: session_id + type: keyword + description: > + Indicates the audit session ID number. + + - name: client.terminal + type: keyword + description: > + If available, the client terminal type, for example "pty". + + - name: client.address + type: keyword + description: > + The IP Address or Domain used by the client. + + - name: client.user + type: keyword + description: > + The user running the client or connection to the database. + + - name: database.user + type: keyword + description: > + The database user used to authenticate. + + - name: privilege + type: keyword + description: > + The privilege group related to the database user. + + - name: entry.id + type: keyword + description: > + Indicates the current audit entry number, assigned to each audit trail record. The audit entry.id sequence number is shared between fine-grained audit records and regular audit records. + + - name: database.host + type: keyword + description: > + Client host machine name. + + - name: action + type: keyword + description: > + The action performed during the audit event. This could for example be the raw query. + + - name: action_number + type: keyword + description: > + Action is a numeric value representing the action the user performed. The corresponding name of the action type is in the AUDIT_ACTIONS table. For example, action 100 refers to LOGON. + + - name: database.id + type: keyword + description: > + Database identifier calculated when the database is created. It corresponds to the DBID column of the V$DATABASE data dictionary view. + + - name: length + type: long + description: > + Refers to the total number of bytes used in this audit record. This number includes the trailing newline bytes (\n), if any, at the end of the audit record. diff --git a/x-pack/filebeat/module/oracle/database_audit/config/config.yml b/x-pack/filebeat/module/oracle/database_audit/config/config.yml new file mode 100644 index 00000000000..acc3b545b18 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/config/config.yml @@ -0,0 +1,21 @@ +type: log +paths: +{{ range $i, $path := .paths }} + - {{$path}} +{{ end }} +exclude_files: [".gz$"] + +# Multiline configuration for Oracle +multiline.pattern: '^[A-Za-z]{3}\s+[A-Za-z]{3}\s+[0-9]{1,2}\s[0-9]{2}:[0-9]{2}:[0-9]{2}\s[0-9]{4}\s\S[0-9]{2}:[0-9]{2}' +multiline.negate: true +multiline.match: after +multiline.timeout: 10 +exclude_lines: ['^Audit file'] +tags: {{.tags | tojson}} +publisher_pipeline.disable_host: {{ inList .tags "forwarded" }} + +processors: + - add_fields: + target: '' + fields: + ecs.version: 1.6.0 diff --git a/x-pack/filebeat/module/oracle/database_audit/ingest/pipeline.yml b/x-pack/filebeat/module/oracle/database_audit/ingest/pipeline.yml new file mode 100644 index 00000000000..2ca31762a76 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/ingest/pipeline.yml @@ -0,0 +1,172 @@ +description: Pipeline for parsing checkpoint firewall logs +processors: +- set: + field: event.ingested + value: '{{_ingest.timestamp}}' +- set: + field: event.action + value: database_audit +- set: + field: event.kind + value: event +- set: + field: event.category + value: database +- set: + field: event.type + value: access +- set: + field: event.outcome + value: success +- grok: + field: message + patterns: + - "%{GREEDYDATA:tmp_timestamp}\\\nLENGTH : '%{GREEDYDATA:LENGTH}'\\\n(?m)%{GREEDYDATA:audit}" +- kv: + field: audit + field_split: "\\\n(?=[a-zA-Z])" + value_split: ":\\S\\d+\\S(?= ')" + trim_value: " '" + trim_key: " " + prefix: oracle.database_audit. +- grok: + field: log.file.path + patterns: + - "%{BASE10NUM:process.pid}\\_%{BASE10NUM}\\.aud(\\.log)?$" +# All field names are uppercase by default, converts them to lowercase +- script: + source: "ctx.oracle.database_audit = ctx.oracle.database_audit.entrySet().stream().collect(Collectors.toMap(entry -> entry.getKey().toLowerCase(), Map.Entry::getValue));" + lang: painless +# Replace all field names that has spaces in them with _ +- script: + lang: painless + source: "ctx.oracle.database_audit = ctx?.oracle?.database_audit.entrySet().stream().collect(Collectors.toMap(e -> e.getKey().replace(' ', '_'), e -> e.getValue()));" +- gsub: + field: "oracle.database_audit.action" + pattern: "\\n" + replacement: "" +- gsub: + field: "oracle.database_audit.action" + pattern: "\\s{2,}" + replacement: " " +- trim: + field: "oracle.database_audit.action_number" + ignore_missing: true +# Removes all null values from ctx.* +- script: + lang: painless + if: ctx?.oracle?.database_audit != null + source: | + void handleMap(Map map) { + for (def x : map.values()) { + if (x instanceof Map) { + handleMap(x); + } else if (x instanceof List) { + handleList(x); + } + } + map.values().removeIf(v -> v instanceof String && v.isEmpty() == true); + } + void handleList(List list) { + for (def x : list) { + if (x instanceof Map) { + handleMap(x); + } else if (x instanceof List) { + handleList(x); + } + } + } + handleMap(ctx); +- remove: + field: + - '@timestamp' + ignore_missing: true +- date: + field: tmp_timestamp + target_field: '@timestamp' + formats: + - EEE MMM d HH:mm:ss uuuu XXX +- grok: + field: tmp_timestamp + patterns: + - "%{ISO8601_TIMEZONE:event.timezone}$" +- rename: + field: oracle.database_audit.privilege + target_field: host.user.roles + ignore_missing: true +- rename: + field: LENGTH + target_field: oracle.database_audit.length + ignore_missing: true +- rename: + field: oracle.database_audit.client_user + target_field: client.user.name + ignore_missing: true +- rename: + field: oracle.database_audit.client_address + target_field: client.address + ignore_missing: true +- rename: + field: oracle.database_audit.userhost + target_field: server.address + ignore_missing: true +- rename: + field: oracle.database_audit.database_user + target_field: server.user.name + ignore_missing: true +- convert: + field: oracle.database_audit.length + type: long + ignore_missing: true +- grok: + field: client.address + patterns: + - "(?:%{IP:client.ip}|%{GREEDYDATA:client.domain})" + ignore_failure: true + ignore_missing: true +- grok: + field: server.address + patterns: + - "(?:%{IP:server.ip}|%{GREEDYDATA:server.domain})" + ignore_failure: true + ignore_missing: true +# Renaming certain fields for better data structure +- rename: + field: oracle.database_audit.sessionid + target_field: oracle.database_audit.session_id + ignore_missing: true +- rename: + field: oracle.database_audit.client_terminal + target_field: oracle.database_audit.client.terminal + ignore_missing: true +- rename: + field: oracle.database_audit.client_address + target_field: oracle.database_audit.client.address + ignore_missing: true +- rename: + field: oracle.database_audit.database_user + target_field: oracle.database_audit.database.user + ignore_missing: true +- rename: + field: oracle.database_audit.userhost + target_field: oracle.database_audit.database.host + ignore_missing: true +- rename: + field: oracle.database_audit.dbid + target_field: oracle.database_audit.database.id + ignore_missing: true +- rename: + field: oracle.database_audit.entry_id + target_field: oracle.database_audit.entry.id + ignore_missing: true + +- remove: + field: + - tmp_timestamp + - audit + - message + ignore_missing: true +on_failure: +- set: + field: error.message + value: '{{ _ingest.on_failure_message }}' diff --git a/x-pack/filebeat/module/oracle/database_audit/manifest.yml b/x-pack/filebeat/module/oracle/database_audit/manifest.yml new file mode 100644 index 00000000000..6e2a4e1e7d9 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/manifest.yml @@ -0,0 +1,11 @@ +module_version: 1.0 + +var: + - name: tags + default: [oracle-database-audit] + - name: input + default: file + +ingest_pipeline: + - ingest/pipeline.yml +input: config/config.yml diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_j002_28264_20201007122838056263426565.aud.log b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_j002_28264_20201007122838056263426565.aud.log new file mode 100644 index 00000000000..34481c230fc --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_j002_28264_20201007122838056263426565.aud.log @@ -0,0 +1,83 @@ +Audit file /opt/oracle/admin/ORCLCDB/adump/ORCLCDB_j002_28264_20201007122838056263426565.aud +Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production +Version 19.3.0.0.0 +Build label: RDBMS_19.3.0.0.0DBRU_LINUX.X64_190417 +ORACLE_HOME: /opt/oracle/product/19c/dbhome_1 +System name: Linux +Node name: testlab.local +Release: 3.10.0-1127.el7.x86_64 +Version: #1 SMP Tue Mar 31 23:36:51 UTC 2020 +Machine: x86_64 +Instance name: ORCLCDB +Redo thread mounted by this instance: 1 +Oracle process number: 51 +Unix process pid: 28264, image: oracle@testlab.local (J002) + +Wed Oct 7 12:28:38 2020 -04:00 +LENGTH : '370' +ACTION :[123] 'SELECT moving_window_size + FROM AWR_PDB_baseline_metadata + WHERE baseline_id = :num + AND dbid = :dbid' +DATABASE USER:[3] 'SYS' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[5] '20003' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:28:38 2020 -04:00 +LENGTH : '370' +ACTION :[123] 'SELECT moving_window_size + FROM AWR_PDB_baseline_metadata + WHERE baseline_id = :num + AND dbid = :dbid' +DATABASE USER:[3] 'SYS' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[5] '20003' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:28:38 2020 -04:00 +LENGTH : '411' +ACTION :[164] 'SELECT nvl(min(snap_id), 0), nvl(max(snap_id), 0) + FROM AWR_PDB_snapshot + WHERE end_interval_time >= (SYSDATE - :num) + AND dbid = :dbid' +DATABASE USER:[3] 'SYS' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[5] '20003' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:28:38 2020 -04:00 +LENGTH : '411' +ACTION :[164] 'SELECT nvl(min(snap_id), 0), nvl(max(snap_id), 0) + FROM AWR_PDB_snapshot + WHERE end_interval_time >= (SYSDATE - :num) + AND dbid = :dbid' +DATABASE USER:[3] 'SYS' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[5] '20003' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_j002_28264_20201007122838056263426565.aud.log-expected.json b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_j002_28264_20201007122838056263426565.aud.log-expected.json new file mode 100644 index 00000000000..378824d939a --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_j002_28264_20201007122838056263426565.aud.log-expected.json @@ -0,0 +1,134 @@ +[ + { + "@timestamp": "2020-10-07T16:28:38.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 573, + "oracle.database_audit.action": "SELECT moving_window_size FROM AWR_PDB_baseline_metadata WHERE baseline_id = :num AND dbid = :dbid", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 370, + "oracle.database_audit.session_id": "20003", + "oracle.database_audit.status": "0", + "process.pid": "28264", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "SYS", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:28:38.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 990, + "oracle.database_audit.action": "SELECT moving_window_size FROM AWR_PDB_baseline_metadata WHERE baseline_id = :num AND dbid = :dbid", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 370, + "oracle.database_audit.session_id": "20003", + "oracle.database_audit.status": "0", + "process.pid": "28264", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "SYS", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:28:38.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1407, + "oracle.database_audit.action": "SELECT nvl(min(snap_id), 0), nvl(max(snap_id), 0) FROM AWR_PDB_snapshot WHERE end_interval_time >= (SYSDATE - :num) AND dbid = :dbid", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 411, + "oracle.database_audit.session_id": "20003", + "oracle.database_audit.status": "0", + "process.pid": "28264", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "SYS", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:28:38.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1865, + "oracle.database_audit.action": "SELECT nvl(min(snap_id), 0), nvl(max(snap_id), 0) FROM AWR_PDB_snapshot WHERE end_interval_time >= (SYSDATE - :num) AND dbid = :dbid", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 411, + "oracle.database_audit.session_id": "20003", + "oracle.database_audit.status": "0", + "process.pid": "28264", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "SYS", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + } +] \ No newline at end of file diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m000_25412_20201007115808319837620840.aud.log b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m000_25412_20201007115808319837620840.aud.log new file mode 100644 index 00000000000..92212599def --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m000_25412_20201007115808319837620840.aud.log @@ -0,0 +1,367 @@ +Audit file /opt/oracle/admin/ORCLCDB/adump/ORCLCDB_m000_25412_20201007115808319837620840.aud +Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production +Version 19.3.0.0.0 +Build label: RDBMS_19.3.0.0.0DBRU_LINUX.X64_190417 +ORACLE_HOME: /opt/oracle/product/19c/dbhome_1 +System name: Linux +Node name: testlab.local +Release: 3.10.0-1127.el7.x86_64 +Version: #1 SMP Tue Mar 31 23:36:51 UTC 2020 +Machine: x86_64 +Instance name: ORCLCDB +Redo thread mounted by this instance: 1 +Oracle process number: 51 +Unix process pid: 25412, image: oracle@testlab.local (M000) + +Wed Oct 7 11:58:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:58:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '192.168.2.2' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:58:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = '5q7ay9d08jgtf' and inst_id = 1 and child_address = hextoraw('00000000645509D0')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] 'test.local' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:58:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:58:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:58:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = '5q7ay9d08jgtf' and inst_id = 1 and child_address = hextoraw('00000000645509D0')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:58:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:58:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:58:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = '5q7ay9d08jgtf' and inst_id = 1 and child_address = hextoraw('00000000645509D0')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:58:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:58:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:58:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = '5q7ay9d08jgtf' and inst_id = 1 and child_address = hextoraw('00000000645509D0')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:03:14 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:03:14 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:03:14 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = '3cmwr02yfw7ud' and inst_id = 1 and child_address = hextoraw('0000000064E538F8')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:03:14 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:03:14 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:03:14 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = '3cmwr02yfw7ud' and inst_id = 1 and child_address = hextoraw('0000000064E538F8')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:03:14 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:03:14 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:03:14 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = '3cmwr02yfw7ud' and inst_id = 1 and child_address = hextoraw('0000000064E538F8')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:03:14 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:03:14 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:03:14 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = '3cmwr02yfw7ud' and inst_id = 1 and child_address = hextoraw('0000000064E538F8')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m000_25412_20201007115808319837620840.aud.log-expected.json b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m000_25412_20201007115808319837620840.aud.log-expected.json new file mode 100644 index 00000000000..d1a83745bc2 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m000_25412_20201007115808319837620840.aud.log-expected.json @@ -0,0 +1,798 @@ +[ + { + "@timestamp": "2020-10-07T15:58:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 573, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:58:08.000Z", + "client.address": "192.168.2.2", + "client.ip": "192.168.2.2", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1012, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:58:08.000Z", + "client.address": "test.local", + "client.domain": "test.local", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1462, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = '5q7ay9d08jgtf' and inst_id = 1 and child_address = hextoraw('00000000645509D0')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:58:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1885, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:58:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 2324, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:58:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 2763, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = '5q7ay9d08jgtf' and inst_id = 1 and child_address = hextoraw('00000000645509D0')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:58:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 3176, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:58:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 3615, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:58:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 4054, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = '5q7ay9d08jgtf' and inst_id = 1 and child_address = hextoraw('00000000645509D0')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:58:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 4467, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:58:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 4906, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:58:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 5345, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = '5q7ay9d08jgtf' and inst_id = 1 and child_address = hextoraw('00000000645509D0')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:03:14.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 5758, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:03:14.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 6197, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:03:14.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 6636, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = '3cmwr02yfw7ud' and inst_id = 1 and child_address = hextoraw('0000000064E538F8')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:03:14.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 7049, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:03:14.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 7488, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:03:14.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 7927, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = '3cmwr02yfw7ud' and inst_id = 1 and child_address = hextoraw('0000000064E538F8')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:03:14.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 8340, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:03:14.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 8779, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:03:14.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 9218, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = '3cmwr02yfw7ud' and inst_id = 1 and child_address = hextoraw('0000000064E538F8')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:03:14.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 9631, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:03:14.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 10070, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:03:14.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 10509, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = '3cmwr02yfw7ud' and inst_id = 1 and child_address = hextoraw('0000000064E538F8')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "25412", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + } +] \ No newline at end of file diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m002_28369_20201007123022392204603031.aud.log b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m002_28369_20201007123022392204603031.aud.log new file mode 100644 index 00000000000..dfa96e24469 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m002_28369_20201007123022392204603031.aud.log @@ -0,0 +1,1159 @@ +Audit file /opt/oracle/admin/ORCLCDB/adump/ORCLCDB_m002_28369_20201007123022392204603031.aud +Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production +Version 19.3.0.0.0 +Build label: RDBMS_19.3.0.0.0DBRU_LINUX.X64_190417 +ORACLE_HOME: /opt/oracle/product/19c/dbhome_1 +System name: Linux +Node name: testlab.local +Release: 3.10.0-1127.el7.x86_64 +Version: #1 SMP Tue Mar 31 23:36:51 UTC 2020 +Machine: x86_64 +Instance name: ORCLCDB +Redo thread mounted by this instance: 1 +Oracle process number: 61 +Unix process pid: 28369, image: oracle@testlab.local (M002) + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = '3cmwr02yfw7ud' and inst_id = 1 and child_address = hextoraw('0000000071BECBA0')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = '3cmwr02yfw7ud' and inst_id = 1 and child_address = hextoraw('0000000071BECBA0')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = '3cmwr02yfw7ud' and inst_id = 1 and child_address = hextoraw('0000000071BECBA0')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = '3cmwr02yfw7ud' and inst_id = 1 and child_address = hextoraw('0000000071BECBA0')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = '35r8hdcszt24u' and inst_id = 1 and child_address = hextoraw('000000007114EF70')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = '35r8hdcszt24u' and inst_id = 1 and child_address = hextoraw('000000007114EF70')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = '35r8hdcszt24u' and inst_id = 1 and child_address = hextoraw('000000007114EF70')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = '35r8hdcszt24u' and inst_id = 1 and child_address = hextoraw('000000007114EF70')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'azfnd16rcn91w' and inst_id = 1 and child_address = hextoraw('000000006E8DB9C0')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'azfnd16rcn91w' and inst_id = 1 and child_address = hextoraw('000000006E8DB9C0')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'azfnd16rcn91w' and inst_id = 1 and child_address = hextoraw('000000006E8DB9C0')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'azfnd16rcn91w' and inst_id = 1 and child_address = hextoraw('000000006E8DB9C0')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'azfnd16rcn91w' and inst_id = 1 and child_address = hextoraw('000000006E8DB9C0')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'azfnd16rcn91w' and inst_id = 1 and child_address = hextoraw('000000006E8DB9C0')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'azfnd16rcn91w' and inst_id = 1 and child_address = hextoraw('000000006E8DB9C0')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'azfnd16rcn91w' and inst_id = 1 and child_address = hextoraw('000000006E8DB9C0')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:22 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'azfnd16rcn91w' and inst_id = 1 and child_address = hextoraw('000000006E8DB9C0')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'gsc3x8s3wq4zv' and inst_id = 1 and child_address = hextoraw('000000006AD84140')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'gsc3x8s3wq4zv' and inst_id = 1 and child_address = hextoraw('000000006AD84140')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'gsc3x8s3wq4zv' and inst_id = 1 and child_address = hextoraw('000000006AD84140')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'gsc3x8s3wq4zv' and inst_id = 1 and child_address = hextoraw('000000006AD84140')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'gsc3x8s3wq4zv' and inst_id = 1 and child_address = hextoraw('000000006AD84140')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'gsc3x8s3wq4zv' and inst_id = 1 and child_address = hextoraw('000000006AD84140')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'gsc3x8s3wq4zv' and inst_id = 1 and child_address = hextoraw('000000006AD84140')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'gsc3x8s3wq4zv' and inst_id = 1 and child_address = hextoraw('000000006AD84140')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 12:30:23 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'gsc3x8s3wq4zv' and inst_id = 1 and child_address = hextoraw('000000006AD84140')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m002_28369_20201007123022392204603031.aud.log-expected.json b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m002_28369_20201007123022392204603031.aud.log-expected.json new file mode 100644 index 00000000000..c4b1388fff7 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m002_28369_20201007123022392204603031.aud.log-expected.json @@ -0,0 +1,2576 @@ +[ + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 573, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1012, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1451, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = '3cmwr02yfw7ud' and inst_id = 1 and child_address = hextoraw('0000000071BECBA0')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1864, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 2303, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 2742, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = '3cmwr02yfw7ud' and inst_id = 1 and child_address = hextoraw('0000000071BECBA0')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 3155, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 3594, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 4033, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = '3cmwr02yfw7ud' and inst_id = 1 and child_address = hextoraw('0000000071BECBA0')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 4446, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 4885, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 5324, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = '3cmwr02yfw7ud' and inst_id = 1 and child_address = hextoraw('0000000071BECBA0')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 5737, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 6176, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 6615, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = '35r8hdcszt24u' and inst_id = 1 and child_address = hextoraw('000000007114EF70')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 7028, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 7467, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 7906, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = '35r8hdcszt24u' and inst_id = 1 and child_address = hextoraw('000000007114EF70')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 8319, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 8758, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 9197, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = '35r8hdcszt24u' and inst_id = 1 and child_address = hextoraw('000000007114EF70')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 9610, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 10049, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 10488, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = '35r8hdcszt24u' and inst_id = 1 and child_address = hextoraw('000000007114EF70')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 10901, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 11340, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 11779, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'azfnd16rcn91w' and inst_id = 1 and child_address = hextoraw('000000006E8DB9C0')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 12192, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 12631, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 13070, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'azfnd16rcn91w' and inst_id = 1 and child_address = hextoraw('000000006E8DB9C0')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 13483, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 13922, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 14361, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'azfnd16rcn91w' and inst_id = 1 and child_address = hextoraw('000000006E8DB9C0')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 14774, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 15213, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 15652, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'azfnd16rcn91w' and inst_id = 1 and child_address = hextoraw('000000006E8DB9C0')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 16065, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 16504, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 16943, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'azfnd16rcn91w' and inst_id = 1 and child_address = hextoraw('000000006E8DB9C0')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 17356, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 17795, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 18234, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'azfnd16rcn91w' and inst_id = 1 and child_address = hextoraw('000000006E8DB9C0')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 18647, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 19086, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 19525, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'azfnd16rcn91w' and inst_id = 1 and child_address = hextoraw('000000006E8DB9C0')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 19938, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 20377, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 20816, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'azfnd16rcn91w' and inst_id = 1 and child_address = hextoraw('000000006E8DB9C0')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 21229, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 21668, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:22.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 22107, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'azfnd16rcn91w' and inst_id = 1 and child_address = hextoraw('000000006E8DB9C0')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 22520, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 22959, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 23398, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'gsc3x8s3wq4zv' and inst_id = 1 and child_address = hextoraw('000000006AD84140')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 23811, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 24250, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 24689, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'gsc3x8s3wq4zv' and inst_id = 1 and child_address = hextoraw('000000006AD84140')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 25102, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 25541, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 25980, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'gsc3x8s3wq4zv' and inst_id = 1 and child_address = hextoraw('000000006AD84140')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 26393, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 26832, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 27271, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'gsc3x8s3wq4zv' and inst_id = 1 and child_address = hextoraw('000000006AD84140')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 27684, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 28123, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 28562, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'gsc3x8s3wq4zv' and inst_id = 1 and child_address = hextoraw('000000006AD84140')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 28975, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 29414, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 29853, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'gsc3x8s3wq4zv' and inst_id = 1 and child_address = hextoraw('000000006AD84140')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 30266, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 30705, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 31144, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'gsc3x8s3wq4zv' and inst_id = 1 and child_address = hextoraw('000000006AD84140')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 31557, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 31996, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 32435, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'gsc3x8s3wq4zv' and inst_id = 1 and child_address = hextoraw('000000006AD84140')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 32848, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 33287, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T16:30:23.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 33726, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'gsc3x8s3wq4zv' and inst_id = 1 and child_address = hextoraw('000000006AD84140')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "28369", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + } +] \ No newline at end of file diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m003_24705_20201007113805036530435635.aud.log b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m003_24705_20201007113805036530435635.aud.log new file mode 100644 index 00000000000..132a76eccaa --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m003_24705_20201007113805036530435635.aud.log @@ -0,0 +1,191 @@ +Audit file /opt/oracle/admin/ORCLCDB/adump/ORCLCDB_m003_24705_20201007113805036530435635.aud +Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production +Version 19.3.0.0.0 +Build label: RDBMS_19.3.0.0.0DBRU_LINUX.X64_190417 +ORACLE_HOME: /opt/oracle/product/19c/dbhome_1 +System name: Linux +Node name: testlab.local +Release: 3.10.0-1127.el7.x86_64 +Version: #1 SMP Tue Mar 31 23:36:51 UTC 2020 +Machine: x86_64 +Instance name: ORCLCDB +Redo thread mounted by this instance: 1 +Oracle process number: 57 +Unix process pid: 24705, image: oracle@testlab.local (M003) + +Wed Oct 7 11:38:05 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:38:05 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:38:05 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'a8xypykqc348c' and inst_id = 1 and child_address = hextoraw('0000000078C4C7C0')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:38:05 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:38:05 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:38:05 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'a8xypykqc348c' and inst_id = 1 and child_address = hextoraw('0000000078C4C7C0')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:38:05 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:38:05 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:38:05 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'a8xypykqc348c' and inst_id = 1 and child_address = hextoraw('0000000078C4C7C0')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:38:05 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:38:05 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:38:05 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'a8xypykqc348c' and inst_id = 1 and child_address = hextoraw('0000000078C4C7C0')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m003_24705_20201007113805036530435635.aud.log-expected.json b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m003_24705_20201007113805036530435635.aud.log-expected.json new file mode 100644 index 00000000000..ebb3df71e28 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m003_24705_20201007113805036530435635.aud.log-expected.json @@ -0,0 +1,398 @@ +[ + { + "@timestamp": "2020-10-07T15:38:05.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 573, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24705", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:38:05.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1012, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24705", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:38:05.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1451, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'a8xypykqc348c' and inst_id = 1 and child_address = hextoraw('0000000078C4C7C0')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24705", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:38:05.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1864, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24705", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:38:05.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 2303, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24705", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:38:05.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 2742, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'a8xypykqc348c' and inst_id = 1 and child_address = hextoraw('0000000078C4C7C0')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24705", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:38:05.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 3155, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24705", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:38:05.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 3594, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24705", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:38:05.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 4033, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'a8xypykqc348c' and inst_id = 1 and child_address = hextoraw('0000000078C4C7C0')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24705", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:38:05.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 4446, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24705", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:38:05.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 4885, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24705", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:38:05.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 5324, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'a8xypykqc348c' and inst_id = 1 and child_address = hextoraw('0000000078C4C7C0')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24705", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + } +] \ No newline at end of file diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m004_29815_20201007130106080227473114.aud.log b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m004_29815_20201007130106080227473114.aud.log new file mode 100644 index 00000000000..b5f6f292011 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m004_29815_20201007130106080227473114.aud.log @@ -0,0 +1,35 @@ +Audit file /opt/oracle/admin/ORCLCDB/adump/ORCLCDB_m004_29815_20201007130106080227473114.aud +Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production +Version 19.3.0.0.0 +Build label: RDBMS_19.3.0.0.0DBRU_LINUX.X64_190417 +ORACLE_HOME: /opt/oracle/product/19c/dbhome_1 +System name: Linux +Node name: testlab.local +Release: 3.10.0-1127.el7.x86_64 +Version: #1 SMP Tue Mar 31 23:36:51 UTC 2020 +Machine: x86_64 +Instance name: ORCLCDB +Redo thread mounted by this instance: 1 +Oracle process number: 50 +Unix process pid: 29815, image: oracle@testlab.local (M004) + +Wed Oct 7 13:01:06 2020 -04:00 +LENGTH : '447' +ACTION :[205] 'BEGIN + sys.prvt_hdm.auto_execute( + db_id => :bind_dbid, + inst_id => :bind_inst, + end_snap => :bind_snap, + time_left_in_secs => :bind_time); + END;' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m004_29815_20201007130106080227473114.aud.log-expected.json b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m004_29815_20201007130106080227473114.aud.log-expected.json new file mode 100644 index 00000000000..d71bee08e96 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m004_29815_20201007130106080227473114.aud.log-expected.json @@ -0,0 +1,35 @@ +[ + { + "@timestamp": "2020-10-07T17:01:06.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 573, + "oracle.database_audit.action": "BEGIN sys.prvt_hdm.auto_execute( db_id => :bind_dbid, inst_id => :bind_inst, end_snap => :bind_snap, time_left_in_secs => :bind_time); END;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 447, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "29815", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + } +] \ No newline at end of file diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m004_29815_20201007130106085635422771.aud.log b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m004_29815_20201007130106085635422771.aud.log new file mode 100644 index 00000000000..7df4cae1be5 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m004_29815_20201007130106085635422771.aud.log @@ -0,0 +1,35 @@ +Audit file /opt/oracle/admin/ORCLCDB/adump/ORCLCDB_m004_29815_20201007130106085635422771.aud +Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production +Version 19.3.0.0.0 +Build label: RDBMS_19.3.0.0.0DBRU_LINUX.X64_190417 +ORACLE_HOME: /opt/oracle/product/19c/dbhome_1 +System name: Linux +Node name: testlab.local +Release: 3.10.0-1127.el7.x86_64 +Version: #1 SMP Tue Mar 31 23:36:51 UTC 2020 +Machine: x86_64 +Instance name: ORCLCDB +Redo thread mounted by this instance: 1 +Oracle process number: 50 +Unix process pid: 29815, image: oracle@testlab.local (M004) + +Wed Oct 7 13:01:06 2020 -04:00 +LENGTH : '447' +ACTION :[205] 'BEGIN + sys.prvt_hdm.auto_execute( + db_id => :bind_dbid, + inst_id => :bind_inst, + end_snap => :bind_snap, + time_left_in_secs => :bind_time); + END;' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m004_29815_20201007130106085635422771.aud.log-expected.json b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m004_29815_20201007130106085635422771.aud.log-expected.json new file mode 100644 index 00000000000..d71bee08e96 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m004_29815_20201007130106085635422771.aud.log-expected.json @@ -0,0 +1,35 @@ +[ + { + "@timestamp": "2020-10-07T17:01:06.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 573, + "oracle.database_audit.action": "BEGIN sys.prvt_hdm.auto_execute( db_id => :bind_dbid, inst_id => :bind_inst, end_snap => :bind_snap, time_left_in_secs => :bind_time); END;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 447, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "29815", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + } +] \ No newline at end of file diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m005_24958_20201007115707242540239811.aud.log b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m005_24958_20201007115707242540239811.aud.log new file mode 100644 index 00000000000..08cbcc0239c --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m005_24958_20201007115707242540239811.aud.log @@ -0,0 +1,3975 @@ +Audit file /opt/oracle/admin/ORCLCDB/adump/ORCLCDB_m005_24958_20201007115707242540239811.aud +Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production +Version 19.3.0.0.0 +Build label: RDBMS_19.3.0.0.0DBRU_LINUX.X64_190417 +ORACLE_HOME: /opt/oracle/product/19c/dbhome_1 +System name: Linux +Node name: testlab.local +Release: 3.10.0-1127.el7.x86_64 +Version: #1 SMP Tue Mar 31 23:36:51 UTC 2020 +Machine: x86_64 +Instance name: ORCLCDB +Redo thread mounted by this instance: 1 +Oracle process number: 50 +Unix process pid: 24958, image: oracle@testlab.local (M005) + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:07 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:08 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '392' +ACTION :[151] 'select /*+ opt_param('parallel_execution_enabled', + 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 11:57:09 2020 -04:00 +LENGTH : '366' +ACTION :[125] 'SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')' +DATABASE USER:[1] '/' +PRIVILEGE :[4] 'NONE' +CLIENT USER:[0] '' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m005_24958_20201007115707242540239811.aud.log-expected.json b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m005_24958_20201007115707242540239811.aud.log-expected.json new file mode 100644 index 00000000000..2a06d77b32a --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_m005_24958_20201007115707242540239811.aud.log-expected.json @@ -0,0 +1,3302 @@ +[ + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 573, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1012, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1451, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1864, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 2303, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 2742, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 3155, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 3594, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 4033, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 4446, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 4885, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 5324, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 5737, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 6176, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 6615, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 7028, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 7467, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 7906, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 8319, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 8758, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 9197, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 9610, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 10049, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 10488, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 10901, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 11340, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 11779, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 12192, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 12631, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 13070, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 13483, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 13922, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 14361, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 14774, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 15213, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 15652, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 16065, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 16504, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 16943, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 17356, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 17795, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 18234, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 18647, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 19086, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 19525, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 19938, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 20377, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 20816, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 21229, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 21668, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 22107, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 22520, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 22959, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 23398, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 23811, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 24250, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 24689, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 25102, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 25541, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:07.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 25980, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 26393, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 26832, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 27271, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 27684, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 28123, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 28562, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 28975, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 29414, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 29853, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 30266, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 30705, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 31144, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 31557, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 31996, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 32435, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 32848, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 33287, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 33726, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 34139, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 34578, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 35017, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 35430, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 35869, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 36308, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 36721, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 37160, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 37599, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 38012, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 38451, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 38890, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 39303, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 39742, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 40181, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 40594, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 41033, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 41472, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 41885, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 42324, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 42763, + "oracle.database_audit.action": "SELECT * FROM gv$all_sql_plan where sql_id = 'fn0snbuqyccq5' and inst_id = 1 and child_address = hextoraw('0000000067AE2C80')", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T15:57:08.000Z", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "NONE", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 43176, + "oracle.database_audit.action": "select /*+ opt_param('parallel_execution_enabled', 'false') EXEC_FROM_DBMS_XPLAN */ * from gv$all_sql_plan where 1=0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 392, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "24958", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + } +] \ No newline at end of file diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_10651_20201007131744782913507561.aud.log b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_10651_20201007131744782913507561.aud.log new file mode 100644 index 00000000000..7dca5a37654 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_10651_20201007131744782913507561.aud.log @@ -0,0 +1,71 @@ +Audit file /opt/oracle/admin/ORCLCDB/adump/ORCLCDB_ora_10651_20201007131744782913507561.aud +Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production +Version 19.3.0.0.0 +Build label: RDBMS_19.3.0.0.0DBRU_LINUX.X64_190417 +ORACLE_HOME: /opt/oracle/product/19c/dbhome_1 +System name: Linux +Node name: testlab.local +Release: 3.10.0-1127.19.1.el7.x86_64 +Version: #1 SMP Tue Aug 25 17:23:54 UTC 2020 +Machine: x86_64 +Instance name: ORCLCDB +Redo thread mounted by this instance: 1 +Oracle process number: 73 +Unix process pid: 10651, image: oracle@testlab.local (TNS V1-V3) + +Wed Oct 7 13:17:44 2020 -04:00 +LENGTH : '264' +ACTION :[7] 'CONNECT' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[3] '100' + +Wed Oct 7 13:17:44 2020 -04:00 +LENGTH : '262' +ACTION :[6] 'COMMIT' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '44' + +Wed Oct 7 13:17:44 2020 -04:00 +LENGTH : '262' +ACTION :[6] 'COMMIT' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '44' + +Wed Oct 7 13:19:06 2020 -04:00 +LENGTH : '290' +ACTION :[33] 'ALTER USER system IDENTIFIED BY *' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '43' + diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_10651_20201007131744782913507561.aud.log-expected.json b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_10651_20201007131744782913507561.aud.log-expected.json new file mode 100644 index 00000000000..9bca104ca2d --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_10651_20201007131744782913507561.aud.log-expected.json @@ -0,0 +1,138 @@ +[ + { + "@timestamp": "2020-10-07T17:17:44.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 582, + "oracle.database_audit.action": "CONNECT", + "oracle.database_audit.action_number": "100", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 264, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "10651", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T17:17:44.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 893, + "oracle.database_audit.action": "COMMIT", + "oracle.database_audit.action_number": "44", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 262, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "10651", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T17:17:44.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1202, + "oracle.database_audit.action": "COMMIT", + "oracle.database_audit.action_number": "44", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 262, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "10651", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T17:19:06.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1511, + "oracle.database_audit.action": "ALTER USER system IDENTIFIED BY *", + "oracle.database_audit.action_number": "43", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 290, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "10651", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + } +] \ No newline at end of file diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13448_20201007105245091084628324.aud.log b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13448_20201007105245091084628324.aud.log new file mode 100644 index 00000000000..92991266e60 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13448_20201007105245091084628324.aud.log @@ -0,0 +1,30 @@ +Audit file /opt/oracle/admin/ORCLCDB/adump/ORCLCDB_ora_13448_20201007105245091084628324.aud +Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production +Version 19.3.0.0.0 +Build label: RDBMS_19.3.0.0.0DBRU_LINUX.X64_190417 +ORACLE_HOME: /opt/oracle/product/19c/dbhome_1 +System name: Linux +Node name: testlab.local +Release: 3.10.0-1127.el7.x86_64 +Version: #1 SMP Tue Mar 31 23:36:51 UTC 2020 +Machine: x86_64 +Storage: ? +Instance name: ORCLCDB +Redo thread mounted by this instance: 0 +Oracle process number: 0 +Unix process pid: 13448, image: + +Wed Oct 7 10:52:45 2020 -04:00 +LENGTH : '228' +ACTION :[7] 'CONNECT' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[0] '' +SESSIONID:[0] '' +USERHOST:[0] '' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[3] '100' + diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13448_20201007105245091084628324.aud.log-expected.json b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13448_20201007105245091084628324.aud.log-expected.json new file mode 100644 index 00000000000..84177cd2a7b --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13448_20201007105245091084628324.aud.log-expected.json @@ -0,0 +1,32 @@ +[ + { + "@timestamp": "2020-10-07T14:52:45.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 562, + "oracle.database_audit.action": "CONNECT", + "oracle.database_audit.action_number": "100", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.length": 228, + "oracle.database_audit.status": "0", + "process.pid": "13448", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + } +] \ No newline at end of file diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13448_20201007105751018661587803.aud.log b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13448_20201007105751018661587803.aud.log new file mode 100644 index 00000000000..22abc673fdf --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13448_20201007105751018661587803.aud.log @@ -0,0 +1,29 @@ +Audit file /opt/oracle/admin/ORCLCDB/adump/ORCLCDB_ora_13448_20201007105751018661587803.aud +Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production +Version 19.3.0.0.0 +Build label: RDBMS_19.3.0.0.0DBRU_LINUX.X64_190417 +ORACLE_HOME: /opt/oracle/product/19c/dbhome_1 +System name: Linux +Node name: testlab.local +Release: 3.10.0-1127.el7.x86_64 +Version: #1 SMP Tue Mar 31 23:36:51 UTC 2020 +Machine: x86_64 +Instance name: ORCLCDB +Redo thread mounted by this instance: 0 +Oracle process number: 299 +Unix process pid: 13448, image: oracle@testlab.local (TNS V1-V3) + +Wed Oct 7 10:57:51 2020 -04:00 +LENGTH : '245' +ACTION :[7] 'STARTUP' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[7] 'UNKNOWN' +STATUS:[1] '0' +DBID:[0] '' +SESSIONID:[1] '0' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[3] '138' + diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13448_20201007105751018661587803.aud.log-expected.json b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13448_20201007105751018661587803.aud.log-expected.json new file mode 100644 index 00000000000..1260c5de5c0 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13448_20201007105751018661587803.aud.log-expected.json @@ -0,0 +1,35 @@ +[ + { + "@timestamp": "2020-10-07T14:57:51.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 585, + "oracle.database_audit.action": "STARTUP", + "oracle.database_audit.action_number": "138", + "oracle.database_audit.client.terminal": "UNKNOWN", + "oracle.database_audit.length": 245, + "oracle.database_audit.session_id": "0", + "oracle.database_audit.status": "0", + "process.pid": "13448", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + } +] \ No newline at end of file diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13765_20201007105751904399925443.aud.log b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13765_20201007105751904399925443.aud.log new file mode 100644 index 00000000000..208cb9aa4ff --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13765_20201007105751904399925443.aud.log @@ -0,0 +1,57 @@ +Audit file /opt/oracle/admin/ORCLCDB/adump/ORCLCDB_ora_13765_20201007105751904399925443.aud +Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production +Version 19.3.0.0.0 +Build label: RDBMS_19.3.0.0.0DBRU_LINUX.X64_190417 +ORACLE_HOME: /opt/oracle/product/19c/dbhome_1 +System name: Linux +Node name: testlab.local +Release: 3.10.0-1127.el7.x86_64 +Version: #1 SMP Tue Mar 31 23:36:51 UTC 2020 +Machine: x86_64 +Instance name: ORCLCDB +Redo thread mounted by this instance: 0 +Oracle process number: 7 +Unix process pid: 13765, image: oracle@testlab.local (TNS V1-V3) + +Wed Oct 7 10:57:51 2020 -04:00 +LENGTH : '253' +ACTION :[7] 'CONNECT' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[0] '' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[3] '100' + +Wed Oct 7 10:57:52 2020 -04:00 +LENGTH : '527' +ACTION :[281] 'SELECT DECODE(null,'','Total System Global Area','') NAME_COL_PLUS_SHOW_SGA, SUM(VALUE), DECODE (null,'', 'bytes','') units_col_plus_show_sga FROM V$SGA UNION ALL SELECT NAME NAME_COL_PLUS_SHOW_SGA , VALUE, DECODE (null,'', 'bytes','') units_col_plus_show_sga FROM V$SGA' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[0] '' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:01 2020 -04:00 +LENGTH : '276' +ACTION :[22] 'ALTER DATABASE MOUNT' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '35' + diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13765_20201007105751904399925443.aud.log-expected.json b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13765_20201007105751904399925443.aud.log-expected.json new file mode 100644 index 00000000000..30b4e833e0a --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13765_20201007105751904399925443.aud.log-expected.json @@ -0,0 +1,102 @@ +[ + { + "@timestamp": "2020-10-07T14:57:51.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 583, + "oracle.database_audit.action": "CONNECT", + "oracle.database_audit.action_number": "100", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.length": 253, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13765", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:57:52.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 883, + "oracle.database_audit.action": "SELECT DECODE(null,'','Total System Global Area','') NAME_COL_PLUS_SHOW_SGA, SUM(VALUE), DECODE (null,'', 'bytes','') units_col_plus_show_sga FROM V$SGA UNION ALL SELECT NAME NAME_COL_PLUS_SHOW_SGA , VALUE, DECODE (null,'', 'bytes','') units_col_plus_show_sga FROM V$SGA", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.length": 527, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13765", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:01.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1457, + "oracle.database_audit.action": "ALTER DATABASE MOUNT", + "oracle.database_audit.action_number": "35", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 276, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13765", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + } +] \ No newline at end of file diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13779_20201007105801980871631378.aud.log b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13779_20201007105801980871631378.aud.log new file mode 100644 index 00000000000..25f3bbdf578 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13779_20201007105801980871631378.aud.log @@ -0,0 +1,113 @@ +Audit file /opt/oracle/admin/ORCLCDB/adump/ORCLCDB_ora_13779_20201007105801980871631378.aud +Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production +Version 19.3.0.0.0 +Build label: RDBMS_19.3.0.0.0DBRU_LINUX.X64_190417 +ORACLE_HOME: /opt/oracle/product/19c/dbhome_1 +System name: Linux +Node name: testlab.local +Release: 3.10.0-1127.el7.x86_64 +Version: #1 SMP Tue Mar 31 23:36:51 UTC 2020 +Machine: x86_64 +Instance name: ORCLCDB +Redo thread mounted by this instance: 1 +Oracle process number: 7 +Unix process pid: 13779, image: oracle@testlab.local (TNS V1-V3) + +Wed Oct 7 10:58:01 2020 -04:00 +LENGTH : '261' +ACTION :[7] 'CONNECT' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[3] '100' + +Wed Oct 7 10:58:02 2020 -04:00 +LENGTH : '341' +ACTION :[87] 'BEGIN dbms_backup_restore.resetCfileSection(dbms_backup_restore.RTYP_DFILE_COPY); END; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:02 2020 -04:00 +LENGTH : '308' +ACTION :[54] 'BEGIN dbms_backup_restore.resetCfileSection(13); END; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '301' +ACTION :[48] 'select NAME FROM V$DATAFILE_COPY where file# = 3' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '301' +ACTION :[48] 'select NAME FROM V$DATAFILE_COPY where file# = 1' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '301' +ACTION :[48] 'select NAME FROM V$DATAFILE_COPY where file# = 4' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '301' +ACTION :[48] 'select NAME FROM V$DATAFILE_COPY where file# = 7' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13779_20201007105801980871631378.aud.log-expected.json b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13779_20201007105801980871631378.aud.log-expected.json new file mode 100644 index 00000000000..44565999749 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13779_20201007105801980871631378.aud.log-expected.json @@ -0,0 +1,240 @@ +[ + { + "@timestamp": "2020-10-07T14:58:01.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 576, + "oracle.database_audit.action": "CONNECT", + "oracle.database_audit.action_number": "100", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 261, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13779", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:02.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 884, + "oracle.database_audit.action": "BEGIN dbms_backup_restore.resetCfileSection(dbms_backup_restore.RTYP_DFILE_COPY); END;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 341, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13779", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:02.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1272, + "oracle.database_audit.action": "BEGIN dbms_backup_restore.resetCfileSection(13); END;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 308, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13779", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:59:01.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1627, + "oracle.database_audit.action": "select NAME FROM V$DATAFILE_COPY where file# = 3", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 301, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13779", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:59:01.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1975, + "oracle.database_audit.action": "select NAME FROM V$DATAFILE_COPY where file# = 1", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 301, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13779", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:59:01.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 2323, + "oracle.database_audit.action": "select NAME FROM V$DATAFILE_COPY where file# = 4", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 301, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13779", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:59:01.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 2671, + "oracle.database_audit.action": "select NAME FROM V$DATAFILE_COPY where file# = 7", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 301, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13779", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + } +] \ No newline at end of file diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13788_20201007105802970031936241.aud.log b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13788_20201007105802970031936241.aud.log new file mode 100644 index 00000000000..af36219630d --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13788_20201007105802970031936241.aud.log @@ -0,0 +1,113 @@ +Audit file /opt/oracle/admin/ORCLCDB/adump/ORCLCDB_ora_13788_20201007105802970031936241.aud +Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production +Version 19.3.0.0.0 +Build label: RDBMS_19.3.0.0.0DBRU_LINUX.X64_190417 +ORACLE_HOME: /opt/oracle/product/19c/dbhome_1 +System name: Linux +Node name: testlab.local +Release: 3.10.0-1127.el7.x86_64 +Version: #1 SMP Tue Mar 31 23:36:51 UTC 2020 +Machine: x86_64 +Instance name: ORCLCDB +Redo thread mounted by this instance: 1 +Oracle process number: 35 +Unix process pid: 13788, image: oracle@testlab.local (TNS V1-V3) + +Wed Oct 7 10:58:02 2020 -04:00 +LENGTH : '261' +ACTION :[7] 'CONNECT' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[3] '100' + +Wed Oct 7 10:58:02 2020 -04:00 +LENGTH : '313' +ACTION :[59] 'alter session set events '19737 trace name context forever'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '42' + +Wed Oct 7 10:58:02 2020 -04:00 +LENGTH : '324' +ACTION :[71] 'select decode(archiver, 'FAILED', 1, 0) into :archstuck from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:02 2020 -04:00 +LENGTH : '309' +ACTION :[55] 'alter session set events '19737 trace name context off'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '42' + +Wed Oct 7 10:58:02 2020 -04:00 +LENGTH : '500' +ACTION :[246] 'select sys_context('userenv', 'con_id'), sys_context('userenv', 'cdb_name'), sys_context('userenv', 'con_name'), case when sys_context('userenv', 'is_application_root') = 'YES' then 1 else 0 end into :pdbid, :cdbname, :pdbname, :approot from dual' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:02 2020 -04:00 +LENGTH : '380' +ACTION :[126] 'select decode(upper(value), 'TRUE', 1, 0) into :parmvalue from v$parameter where lower(name) = '_pdb_name_case_sensitive'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:02 2020 -04:00 +LENGTH : '308' +ACTION :[54] 'begin dbms_backup_restore.set_charset('AL32UTF8');end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13788_20201007105802970031936241.aud.log-expected.json b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13788_20201007105802970031936241.aud.log-expected.json new file mode 100644 index 00000000000..e923a477983 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13788_20201007105802970031936241.aud.log-expected.json @@ -0,0 +1,240 @@ +[ + { + "@timestamp": "2020-10-07T14:58:02.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 577, + "oracle.database_audit.action": "CONNECT", + "oracle.database_audit.action_number": "100", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 261, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13788", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:02.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 885, + "oracle.database_audit.action": "alter session set events '19737 trace name context forever", + "oracle.database_audit.action_number": "42", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 313, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13788", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:02.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1245, + "oracle.database_audit.action": "select decode(archiver, 'FAILED', 1, 0) into :archstuck from v$instance", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 324, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13788", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:02.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1616, + "oracle.database_audit.action": "alter session set events '19737 trace name context off", + "oracle.database_audit.action_number": "42", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 309, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13788", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:02.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1972, + "oracle.database_audit.action": "select sys_context('userenv', 'con_id'), sys_context('userenv', 'cdb_name'), sys_context('userenv', 'con_name'), case when sys_context('userenv', 'is_application_root') = 'YES' then 1 else 0 end into :pdbid, :cdbname, :pdbname, :approot from dual", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 500, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13788", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:02.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 2519, + "oracle.database_audit.action": "select decode(upper(value), 'TRUE', 1, 0) into :parmvalue from v$parameter where lower(name) = '_pdb_name_case_sensitive", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 380, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13788", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:02.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 2946, + "oracle.database_audit.action": "begin dbms_backup_restore.set_charset('AL32UTF8');end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 308, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13788", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + } +] \ No newline at end of file diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13790_20201007105803021897922657.aud.log b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13790_20201007105803021897922657.aud.log new file mode 100644 index 00000000000..8d9d544cea7 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13790_20201007105803021897922657.aud.log @@ -0,0 +1,183 @@ +Audit file /opt/oracle/admin/ORCLCDB/adump/ORCLCDB_ora_13790_20201007105803021897922657.aud +Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production +Version 19.3.0.0.0 +Build label: RDBMS_19.3.0.0.0DBRU_LINUX.X64_190417 +ORACLE_HOME: /opt/oracle/product/19c/dbhome_1 +System name: Linux +Node name: testlab.local +Release: 3.10.0-1127.el7.x86_64 +Version: #1 SMP Tue Mar 31 23:36:51 UTC 2020 +Machine: x86_64 +Instance name: ORCLCDB +Redo thread mounted by this instance: 1 +Oracle process number: 35 +Unix process pid: 13790, image: oracle@testlab.local (TNS V1-V3) + +Wed Oct 7 10:58:03 2020 -04:00 +LENGTH : '261' +ACTION :[7] 'CONNECT' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[3] '100' + +Wed Oct 7 10:58:03 2020 -04:00 +LENGTH : '500' +ACTION :[246] 'select sys_context('userenv', 'con_id'), sys_context('userenv', 'cdb_name'), sys_context('userenv', 'con_name'), case when sys_context('userenv', 'is_application_root') = 'YES' then 1 else 0 end into :pdbid, :cdbname, :pdbname, :approot from dual' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:03 2020 -04:00 +LENGTH : '380' +ACTION :[126] 'select decode(upper(value), 'TRUE', 1, 0) into :parmvalue from v$parameter where lower(name) = '_pdb_name_case_sensitive'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:03 2020 -04:00 +LENGTH : '308' +ACTION :[54] 'begin dbms_backup_restore.set_charset('AL32UTF8');end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:03 2020 -04:00 +LENGTH : '341' +ACTION :[88] 'select distinct my.sid, sex.serial from v$mystat my, x$ksusex sex where sex.sid = my.sid' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:03 2020 -04:00 +LENGTH : '355' +ACTION :[101] 'select instance_name, instance_number, decode(parallel, 'YES', 1, 0) parallel from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:03 2020 -04:00 +LENGTH : '355' +ACTION :[101] 'select instance_name, instance_number, decode(parallel, 'YES', 1, 0) parallel from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:03 2020 -04:00 +LENGTH : '341' +ACTION :[88] 'select distinct my.sid, sex.serial from v$mystat my, x$ksusex sex where sex.sid = my.sid' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:03 2020 -04:00 +LENGTH : '355' +ACTION :[101] 'select instance_name, instance_number, decode(parallel, 'YES', 1, 0) parallel from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:03 2020 -04:00 +LENGTH : '355' +ACTION :[101] 'select instance_name, instance_number, decode(parallel, 'YES', 1, 0) parallel from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:03 2020 -04:00 +LENGTH : '308' +ACTION :[54] 'alter session set remote_dependencies_mode = signature' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '42' + +Wed Oct 7 10:58:03 2020 -04:00 +LENGTH : '386' +ACTION :[132] 'select decode(open_mode, 'MOUNTED', 0, 'READ WRITE', 1, 'READ ONLY', 1, 'READ ONLY WITH APPLY', 1, 0) into :isdbopen from v$database' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13790_20201007105803021897922657.aud.log-expected.json b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13790_20201007105803021897922657.aud.log-expected.json new file mode 100644 index 00000000000..980c8e7a231 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13790_20201007105803021897922657.aud.log-expected.json @@ -0,0 +1,410 @@ +[ + { + "@timestamp": "2020-10-07T14:58:03.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 577, + "oracle.database_audit.action": "CONNECT", + "oracle.database_audit.action_number": "100", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 261, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13790", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:03.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 885, + "oracle.database_audit.action": "select sys_context('userenv', 'con_id'), sys_context('userenv', 'cdb_name'), sys_context('userenv', 'con_name'), case when sys_context('userenv', 'is_application_root') = 'YES' then 1 else 0 end into :pdbid, :cdbname, :pdbname, :approot from dual", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 500, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13790", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:03.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1432, + "oracle.database_audit.action": "select decode(upper(value), 'TRUE', 1, 0) into :parmvalue from v$parameter where lower(name) = '_pdb_name_case_sensitive", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 380, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13790", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:03.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1859, + "oracle.database_audit.action": "begin dbms_backup_restore.set_charset('AL32UTF8');end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 308, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13790", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:03.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 2214, + "oracle.database_audit.action": "select distinct my.sid, sex.serial from v$mystat my, x$ksusex sex where sex.sid = my.sid", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 341, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13790", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:03.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 2602, + "oracle.database_audit.action": "select instance_name, instance_number, decode(parallel, 'YES', 1, 0) parallel from v$instance", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 355, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13790", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:03.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 3004, + "oracle.database_audit.action": "select instance_name, instance_number, decode(parallel, 'YES', 1, 0) parallel from v$instance", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 355, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13790", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:03.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 3406, + "oracle.database_audit.action": "select distinct my.sid, sex.serial from v$mystat my, x$ksusex sex where sex.sid = my.sid", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 341, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13790", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:03.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 3794, + "oracle.database_audit.action": "select instance_name, instance_number, decode(parallel, 'YES', 1, 0) parallel from v$instance", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 355, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13790", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:03.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 4196, + "oracle.database_audit.action": "select instance_name, instance_number, decode(parallel, 'YES', 1, 0) parallel from v$instance", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 355, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13790", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:03.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 4598, + "oracle.database_audit.action": "alter session set remote_dependencies_mode = signature", + "oracle.database_audit.action_number": "42", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 308, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13790", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:03.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 4953, + "oracle.database_audit.action": "select decode(open_mode, 'MOUNTED', 0, 'READ WRITE', 1, 'READ ONLY', 1, 'READ ONLY WITH APPLY', 1, 0) into :isdbopen from v$database", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 386, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13790", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + } +] \ No newline at end of file diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13791_20201007105803053277493103.aud.log b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13791_20201007105803053277493103.aud.log new file mode 100644 index 00000000000..5648fdf8b74 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13791_20201007105803053277493103.aud.log @@ -0,0 +1,113 @@ +Audit file /opt/oracle/admin/ORCLCDB/adump/ORCLCDB_ora_13791_20201007105803053277493103.aud +Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production +Version 19.3.0.0.0 +Build label: RDBMS_19.3.0.0.0DBRU_LINUX.X64_190417 +ORACLE_HOME: /opt/oracle/product/19c/dbhome_1 +System name: Linux +Node name: testlab.local +Release: 3.10.0-1127.el7.x86_64 +Version: #1 SMP Tue Mar 31 23:36:51 UTC 2020 +Machine: x86_64 +Instance name: ORCLCDB +Redo thread mounted by this instance: 1 +Oracle process number: 36 +Unix process pid: 13791, image: oracle@testlab.local (TNS V1-V3) + +Wed Oct 7 10:58:03 2020 -04:00 +LENGTH : '261' +ACTION :[7] 'CONNECT' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[3] '100' + +Wed Oct 7 10:58:03 2020 -04:00 +LENGTH : '500' +ACTION :[246] 'select sys_context('userenv', 'con_id'), sys_context('userenv', 'cdb_name'), sys_context('userenv', 'con_name'), case when sys_context('userenv', 'is_application_root') = 'YES' then 1 else 0 end into :pdbid, :cdbname, :pdbname, :approot from dual' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:03 2020 -04:00 +LENGTH : '380' +ACTION :[126] 'select decode(upper(value), 'TRUE', 1, 0) into :parmvalue from v$parameter where lower(name) = '_pdb_name_case_sensitive'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:03 2020 -04:00 +LENGTH : '341' +ACTION :[88] 'select distinct my.sid, sex.serial from v$mystat my, x$ksusex sex where sex.sid = my.sid' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:03 2020 -04:00 +LENGTH : '355' +ACTION :[101] 'select instance_name, instance_number, decode(parallel, 'YES', 1, 0) parallel from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:03 2020 -04:00 +LENGTH : '355' +ACTION :[101] 'select instance_name, instance_number, decode(parallel, 'YES', 1, 0) parallel from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:03 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select action from gv$session where sid=:1 and serial#=:2 and inst_id=:3' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13791_20201007105803053277493103.aud.log-expected.json b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13791_20201007105803053277493103.aud.log-expected.json new file mode 100644 index 00000000000..4ad53e4b846 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13791_20201007105803053277493103.aud.log-expected.json @@ -0,0 +1,240 @@ +[ + { + "@timestamp": "2020-10-07T14:58:03.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 577, + "oracle.database_audit.action": "CONNECT", + "oracle.database_audit.action_number": "100", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 261, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13791", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:03.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 885, + "oracle.database_audit.action": "select sys_context('userenv', 'con_id'), sys_context('userenv', 'cdb_name'), sys_context('userenv', 'con_name'), case when sys_context('userenv', 'is_application_root') = 'YES' then 1 else 0 end into :pdbid, :cdbname, :pdbname, :approot from dual", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 500, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13791", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:03.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1432, + "oracle.database_audit.action": "select decode(upper(value), 'TRUE', 1, 0) into :parmvalue from v$parameter where lower(name) = '_pdb_name_case_sensitive", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 380, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13791", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:03.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1859, + "oracle.database_audit.action": "select distinct my.sid, sex.serial from v$mystat my, x$ksusex sex where sex.sid = my.sid", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 341, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13791", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:03.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 2247, + "oracle.database_audit.action": "select instance_name, instance_number, decode(parallel, 'YES', 1, 0) parallel from v$instance", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 355, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13791", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:03.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 2649, + "oracle.database_audit.action": "select instance_name, instance_number, decode(parallel, 'YES', 1, 0) parallel from v$instance", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 355, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13791", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:03.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 3051, + "oracle.database_audit.action": "select action from gv$session where sid=:1 and serial#=:2 and inst_id=:3", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 325, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13791", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + } +] \ No newline at end of file diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13792_20201007105804019827529526.aud.log b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13792_20201007105804019827529526.aud.log new file mode 100644 index 00000000000..f20c30a0a3d --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13792_20201007105804019827529526.aud.log @@ -0,0 +1,71 @@ +Audit file /opt/oracle/admin/ORCLCDB/adump/ORCLCDB_ora_13792_20201007105804019827529526.aud +Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production +Version 19.3.0.0.0 +Build label: RDBMS_19.3.0.0.0DBRU_LINUX.X64_190417 +ORACLE_HOME: /opt/oracle/product/19c/dbhome_1 +System name: Linux +Node name: testlab.local +Release: 3.10.0-1127.el7.x86_64 +Version: #1 SMP Tue Mar 31 23:36:51 UTC 2020 +Machine: x86_64 +Instance name: ORCLCDB +Redo thread mounted by this instance: 1 +Oracle process number: 35 +Unix process pid: 13792, image: oracle@testlab.local (TNS V1-V3) + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '261' +ACTION :[7] 'CONNECT' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[3] '100' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '500' +ACTION :[246] 'select sys_context('userenv', 'con_id'), sys_context('userenv', 'cdb_name'), sys_context('userenv', 'con_name'), case when sys_context('userenv', 'is_application_root') = 'YES' then 1 else 0 end into :pdbid, :cdbname, :pdbname, :approot from dual' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '380' +ACTION :[126] 'select decode(upper(value), 'TRUE', 1, 0) into :parmvalue from v$parameter where lower(name) = '_pdb_name_case_sensitive'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '308' +ACTION :[54] 'begin dbms_backup_restore.set_charset('AL32UTF8');end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13792_20201007105804019827529526.aud.log-expected.json b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13792_20201007105804019827529526.aud.log-expected.json new file mode 100644 index 00000000000..70a9036259b --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13792_20201007105804019827529526.aud.log-expected.json @@ -0,0 +1,138 @@ +[ + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 577, + "oracle.database_audit.action": "CONNECT", + "oracle.database_audit.action_number": "100", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 261, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13792", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 885, + "oracle.database_audit.action": "select sys_context('userenv', 'con_id'), sys_context('userenv', 'cdb_name'), sys_context('userenv', 'con_name'), case when sys_context('userenv', 'is_application_root') = 'YES' then 1 else 0 end into :pdbid, :cdbname, :pdbname, :approot from dual", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 500, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13792", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1432, + "oracle.database_audit.action": "select decode(upper(value), 'TRUE', 1, 0) into :parmvalue from v$parameter where lower(name) = '_pdb_name_case_sensitive", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 380, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13792", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1859, + "oracle.database_audit.action": "begin dbms_backup_restore.set_charset('AL32UTF8');end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 308, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13792", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + } +] \ No newline at end of file diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13794_20201007105804045603856206.aud.log b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13794_20201007105804045603856206.aud.log new file mode 100644 index 00000000000..74220d72df3 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13794_20201007105804045603856206.aud.log @@ -0,0 +1,6791 @@ +Audit file /opt/oracle/admin/ORCLCDB/adump/ORCLCDB_ora_13794_20201007105804045603856206.aud +Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production +Version 19.3.0.0.0 +Build label: RDBMS_19.3.0.0.0DBRU_LINUX.X64_190417 +ORACLE_HOME: /opt/oracle/product/19c/dbhome_1 +System name: Linux +Node name: testlab.local +Release: 3.10.0-1127.el7.x86_64 +Version: #1 SMP Tue Mar 31 23:36:51 UTC 2020 +Machine: x86_64 +Instance name: ORCLCDB +Redo thread mounted by this instance: 1 +Oracle process number: 35 +Unix process pid: 13794, image: oracle@testlab.local (TNS V1-V3) + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '261' +ACTION :[7] 'CONNECT' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[3] '100' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '500' +ACTION :[246] 'select sys_context('userenv', 'con_id'), sys_context('userenv', 'cdb_name'), sys_context('userenv', 'con_name'), case when sys_context('userenv', 'is_application_root') = 'YES' then 1 else 0 end into :pdbid, :cdbname, :pdbname, :approot from dual' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '380' +ACTION :[126] 'select decode(upper(value), 'TRUE', 1, 0) into :parmvalue from v$parameter where lower(name) = '_pdb_name_case_sensitive'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '308' +ACTION :[54] 'begin dbms_backup_restore.set_charset('AL32UTF8');end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '341' +ACTION :[88] 'select distinct my.sid, sex.serial from v$mystat my, x$ksusex sex where sex.sid = my.sid' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '355' +ACTION :[101] 'select instance_name, instance_number, decode(parallel, 'YES', 1, 0) parallel from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '355' +ACTION :[101] 'select instance_name, instance_number, decode(parallel, 'YES', 1, 0) parallel from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '341' +ACTION :[88] 'select distinct my.sid, sex.serial from v$mystat my, x$ksusex sex where sex.sid = my.sid' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '355' +ACTION :[101] 'select instance_name, instance_number, decode(parallel, 'YES', 1, 0) parallel from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '355' +ACTION :[101] 'select instance_name, instance_number, decode(parallel, 'YES', 1, 0) parallel from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '308' +ACTION :[54] 'alter session set remote_dependencies_mode = signature' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '42' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '798' +ACTION :[543] 'begin :vsn_min := dbms_backup_restore.protocol_version_number_min; :rel_min := dbms_backup_restore.protocol_release_number_min; :upd_min := dbms_backup_restore.protocol_update_number_min; :cmp_min := 0; :vsn_max := dbms_backup_restore.protocol_version_number_max; :rel_max := dbms_backup_restore.protocol_release_number_max; :upd_max := dbms_backup_restore.protocol_update_number_max; :cmp_max := 0; :pkg_vsn := to_char(:vsn_max, 'fm00')||'.'|| to_char(:rel_max, 'fm00')||'.'|| to_char(:upd_max, 'fm00')||'.'|| to_char(:cmp_max, 'fm00'); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '530' +ACTION :[275] 'begin :cmp_min := dbms_backup_restore.protocol_component_number_min; :cmp_max := dbms_backup_restore.protocol_component_number_max; :pkg_vsn := to_char(:vsn_max, 'fm00')||'.'|| to_char(:rel_max, 'fm00')||'.'|| to_char(:upd_max, 'fm00')||'.'|| to_char(:cmp_max, 'fm00'); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '491' +ACTION :[236] 'declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '538' +ACTION :[283] 'begin sys.dbms_backup_restore.createRmanStatusRow( level => :level, parent_id => :pid, parent_stamp => :pts, status => :status, command_id => :command_id, operation => :operation, row_id => :row_id, row_stamp => :row_stamp, flags => :flags); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '626' +ACTION :[372] 'select db.name, dbinc.resetlogs_time, dbinc.resetlogs_change#, db.dbid, rpad(db.name, 8, 'x'), dbinc.prior_resetlogs_time, dbinc.prior_resetlogs_change#, primary_db_unique_name, db.con_dbid into :dbname, :rltime, :rlscn, :fhdbi, :pdbname, :parent_rltime, :parent_rlscn, :prim_dbuname, :con_dbid from v$database db, v$database_incarnation dbinc where dbinc.status='CURRENT'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '366' +ACTION :[112] 'select nvl(max(cpmid), '0'), nvl(max(cpmid), 0) into :txtparmvalue, :parmvalue from x$kcccp where cpsta in (2,3)' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '342' +ACTION :[89] 'select upper(value) into :parmvalue from v$parameter where lower(name) = 'db_unique_name'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '364' +ACTION :[110] 'select count(*) into :dbstate from v$parameter where lower(name) = '_dummy_instance' and upper(value) = 'TRUE'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '365' +ACTION :[111] 'select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Parallel backup and recovery'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '368' +ACTION :[114] 'select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Incremental backup and recovery'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '352' +ACTION :[99] 'select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Duplexed backups'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '357' +ACTION :[103] 'select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Block Media Recovery'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '370' +ACTION :[116] 'select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Point-in-time tablespace recovery'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '354' +ACTION :[100] 'select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Backup Encryption'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '616' +ACTION :[362] 'select controlfile_type, controlfile_change#, controlfile_sequence#, controlfile_created, decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(database_role, 'SNAPSHOT STANDBY', 1, 0) into :cftype, :cfscn, :cfseq, :cfcretime, :cfoffrrid, :cfsnapstby from v$database, v$controlfile_record_section offr where offr.type = 'OFFLINE RANGE'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '363' +ACTION :[109] 'select count(*) into :curbkup from x$kccdi di where bitand(di.diflg, 4096) = 4096 and bitand(di.difl2, 4) = 4' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '349' +ACTION :[96] 'select count(*) into :dbstate from x$kccrdi where location is not null and bitand(flags, 4) != 0' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '468' +ACTION :[214] 'select nvl(max(al.recid), '0'),nvl(max(al.recid), 0) into :txtparmvalue, :parmvalue from v$archived_log al where al.status in ('X', 'A') and al.is_recovery_dest_file = 'YES' and al.creator = 'RMAN'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '2943' +ACTION :[2688] 'select db.version_time, db.controlfile_change#, db.controlfile_sequence#, dbinc.resetlogs_time, df.last_recid, tf.last_recid, ts.last_recid, rl.last_recid, rm.last_recid, dc.last_recid, al.last_recid, bp.last_recid, do.last_recid, offr.last_recid, pc.last_recid, bs.last_recid, ldbinc.resetlogs_change#, ldbinc.resetlogs_time, ic.last_recid, rt.last_recid, grsp.last_recid, nrsp.last_recid, bcr.last_recid, pdb.last_recid, pic.last_recid, decode(dc.records_used, 0, 0, dc.last_recid - dc.records_used + 1), decode(al.records_used, 0, 0, al.last_recid - al.records_used + 1), decode(bp.records_used, 0, 0, bp.last_recid - bp.records_used + 1), decode(bs.records_used, 0, 0, bs.last_recid - bs.records_used + 1), decode(do.records_used, 0, 0, do.last_recid - do.records_used + 1), decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(pc.records_used, 0, 0, pc.last_recid - pc.records_used + 1) into :vertime, :cfscn, :cfseq, :rltime, :dfhwm, :tfhwm, :tshwm, :rlhwm, :rmhwm, :dchwm, :alhwm, :bphwm, :dohwm, :offrhwm, :pchwm, :bshwm, :lrstscn, :lrsttime, :ichwm, :rthwm, :grsphwm, :nrsphwm, :bcrhwm, :pdbhwm, :pichwm, :dclwm, :allwm, :bplwm, :bslwm, :dolwm, :offrlwm, :pclwm from v$database db, v$controlfile_record_section df, v$controlfile_record_section tf, v$controlfile_record_section ts, v$controlfile_record_section rt, v$controlfile_record_section rl, v$controlfile_record_section rm, v$controlfile_record_section dc, v$controlfile_record_section al, v$controlfile_record_section bp, v$controlfile_record_section do, v$controlfile_record_section offr, v$controlfile_record_section pc, v$controlfile_record_section bs, v$controlfile_record_section ic, v$controlfile_record_section grsp, v$controlfile_record_section nrsp, v$controlfile_record_section bcr, v$controlfile_record_section pdb, v$controlfile_record_section pic, v$database_incarnation dbinc, v$database_incarnation ldbinc where df.type = 'DATAFILE' and tf.type = 'TEMPORARY FILENAME' and ts.type = 'TABLESPACE' and rt.type = 'REDO THREAD' and rl.type = 'REDO LOG' and rm.type = 'RMAN CONFIGURATION' and dc.type = 'DATAFILE COPY' and al.type = 'ARCHIVED LOG' and bp.type = 'BACKUP PIECE' and do.type = 'DELETED OBJECT' and offr.type = 'OFFLINE RANGE' and pc.type = 'PROXY COPY' and bs.type = 'BACKUP SET' and ic.type = 'DATABASE INCARNATION' and grsp.type = 'GUARANTEED RESTORE POINT' and nrsp.type = 'RESTORE POINT' and bcr.type = 'DATABASE BLOCK CORRUPTION' and pdb.type = 'PDB RECORD' and pic.type = 'PDBINC RECORD' and dbinc.incarnation#=db.recovery_target_incarnation# and ldbinc.incarnation#=db.last_open_incarnation#' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '308' +ACTION :[54] 'alter session set remote_dependencies_mode = signature' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '42' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '410' +ACTION :[155] 'declare transclause boolean := FALSE; begin if (:transclause > 0) then transclause := TRUE; end if; dbms_rcvman.resetAll(transclause => transclause); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '3049' +ACTION :[2793] 'begin :success := dbms_rcvman.SUCCESS; :available := dbms_rcvman.AVAILABLE; :unavailable := dbms_rcvman.UNAVAILABLE; :restorable := dbms_rcvman.RESTORABLE; :no_action := dbms_rcvman.NO_ACTION; :BSavailable := dbms_rcvman.BSavailable; :BSunavailable := dbms_rcvman.BSunavailable; :BSdeleted := dbms_rcvman.BSdeleted; :BSexpired := dbms_rcvman.BSexpired; :BSpartial_avail := dbms_rcvman.BSpartial_avail; :BSdatafile_full := dbms_rcvman.BSdatafile_full; :BSdatafile_incr := dbms_rcvman.BSdatafile_incr; :BSarchivelog := dbms_rcvman.BSarchivelog; :BScfile_all := dbms_rcvman.BScfile_all; :BScfile_auto := dbms_rcvman.BScfile_auto; :offlineRange := dbms_rcvman.offlineRangeRec_con_t; :proxyCopy := dbms_rcvman.proxyCopy_con_t; :imageCopy := dbms_rcvman.imageCopy_con_t; :backupSet := dbms_rcvman.backupSet_con_t; :datafile := dbms_rcvman.datafile_con_t; :addredo := dbms_rcvman.addredo_con_t; :avmImageCopy := dbms_rcvman.avmImageCopy_con_t; :fullAct := dbms_rcvman.full_act_t; :incrementalAct := dbms_rcvman.incremental_act_t; :redoAct := dbms_rcvman.redo_act_t; :offRngAct := dbms_rcvman.offlineRange_act_t; :implicitRangeAct := dbms_rcvman.implicitRange_act_t; :cleanRangeAct := dbms_rcvman.cleanRange_act_t; :createDatafileAct := dbms_rcvman.createdatafile_act_t; :getCfCopy := dbms_rcvman.getCfCopy; :getDfCopy := dbms_rcvman.getDfCopy; :getAnyProxy := dbms_rcvman.getAnyProxy; :getCfBackup := dbms_rcvman.getCfBackup; :getSfBackup := dbms_rcvman.getSfBackup; :listCfCopy := dbms_rcvman.listCfCopy; :listDfCopy := dbms_rcvman.listDfCopy; :listCfBackup := dbms_rcvman.listCfBackup; :listSfBackup := dbms_rcvman.listSfBackup; :listDfBackup := dbms_rcvman.listDfBackup; :listAlBackup := dbms_rcvman.listAlBackup; :listDfProxy := dbms_rcvman.listDfProxy; :getRecovAction := dbms_rcvman.getRecovAction; :getAlBackup := dbms_rcvman.getAlBackup; :listAlCopy := dbms_rcvman.listAlCopy; :listBSet := dbms_rcvman.listBSet; :getAllBSet := dbms_rcvman.getAllBSet; :listAlProxy := dbms_rcvman.listAlProxy; :getRangeAlBackup := dbms_rcvman.getRangeAlBackup; :unknownCmd := dbms_rcvman.unknownCmd_t; :recoverCmd := dbms_rcvman.recoverCmd_t; :rcvCopyCmd := dbms_rcvman.rcvCopyCmd_t; :restoreCmd := dbms_rcvman.restoreCmd_t; :blkRestoreCmd := dbms_rcvman.blkRestoreCmd_t; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '616' +ACTION :[362] 'select controlfile_type, controlfile_change#, controlfile_sequence#, controlfile_created, decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(database_role, 'SNAPSHOT STANDBY', 1, 0) into :cftype, :cfscn, :cfseq, :cfcretime, :cfoffrrid, :cfsnapstby from v$database, v$controlfile_record_section offr where offr.type = 'OFFLINE RANGE'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '363' +ACTION :[109] 'select count(*) into :curbkup from x$kccdi di where bitand(di.diflg, 4096) = 4096 and bitand(di.difl2, 4) = 4' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '626' +ACTION :[372] 'select db.name, dbinc.resetlogs_time, dbinc.resetlogs_change#, db.dbid, rpad(db.name, 8, 'x'), dbinc.prior_resetlogs_time, dbinc.prior_resetlogs_change#, primary_db_unique_name, db.con_dbid into :dbname, :rltime, :rlscn, :fhdbi, :pdbname, :parent_rltime, :parent_rlscn, :prim_dbuname, :con_dbid from v$database db, v$database_incarnation dbinc where dbinc.status='CURRENT'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '366' +ACTION :[112] 'select nvl(max(cpmid), '0'), nvl(max(cpmid), 0) into :txtparmvalue, :parmvalue from x$kcccp where cpsta in (2,3)' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '342' +ACTION :[89] 'select upper(value) into :parmvalue from v$parameter where lower(name) = 'db_unique_name'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '364' +ACTION :[110] 'select count(*) into :dbstate from v$parameter where lower(name) = '_dummy_instance' and upper(value) = 'TRUE'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '365' +ACTION :[111] 'select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Parallel backup and recovery'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '368' +ACTION :[114] 'select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Incremental backup and recovery'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '352' +ACTION :[99] 'select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Duplexed backups'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '357' +ACTION :[103] 'select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Block Media Recovery'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '370' +ACTION :[116] 'select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Point-in-time tablespace recovery'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '354' +ACTION :[100] 'select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Backup Encryption'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '676' +ACTION :[421] 'begin dbms_rcvman.setDatabase( db_name => upper(:dbname), reset_scn => :rlscn, reset_time => :rltime, db_id => :fhdbi, db_unique_name => :db_unique_name, site_aware => TRUE, guid => :guid); dbms_rcvman.setCanApplyAnyRedo(TRUE); dbms_rcvman.setCanConvertCf(TRUE); dbms_rcvman.setBigScnAware; if (:canhandletts = 1) then dbms_rcvman.setCanHandleTransportableTbs(TRUE); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '516' +ACTION :[261] 'declare omf_b boolean; begin if (:omf > 0) then omf_b := TRUE; else omf_b := FALSE; end if; sys.dbms_backup_restore.searchFiles(pattern => :pattern, ns => :ns, ccf => TRUE, omf => omf_b, ftype => :ftype, onlyfnm => FALSE, normfnm => TRUE) ; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '319' +ACTION :[66] 'select fname_krbmsft, ftype_krbmsft, flags_krbmsft from x$krbmsft ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:04 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '377' +ACTION :[122] 'begin sys.dbms_backup_restore.processSearchFileTable(catalog => TRUE, implicit => :implicit, forftype => :forftype); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '318' +ACTION :[65] 'select fname_krbmsft, ftype_krbmsft, flags_krbmsft from x$krbmsft' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '348' +ACTION :[95] 'select fname_krbmsft, ftype_krbmsft, flags_krbmsft, dbid_krbmsft, dbname_krbmsft from x$krbmsft' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '616' +ACTION :[362] 'select controlfile_type, controlfile_change#, controlfile_sequence#, controlfile_created, decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(database_role, 'SNAPSHOT STANDBY', 1, 0) into :cftype, :cfscn, :cfseq, :cfcretime, :cfoffrrid, :cfsnapstby from v$database, v$controlfile_record_section offr where offr.type = 'OFFLINE RANGE'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '468' +ACTION :[214] 'select nvl(max(al.recid), '0'),nvl(max(al.recid), 0) into :txtparmvalue, :parmvalue from v$archived_log al where al.status in ('X', 'A') and al.is_recovery_dest_file = 'YES' and al.creator = 'RMAN'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '2943' +ACTION :[2688] 'select db.version_time, db.controlfile_change#, db.controlfile_sequence#, dbinc.resetlogs_time, df.last_recid, tf.last_recid, ts.last_recid, rl.last_recid, rm.last_recid, dc.last_recid, al.last_recid, bp.last_recid, do.last_recid, offr.last_recid, pc.last_recid, bs.last_recid, ldbinc.resetlogs_change#, ldbinc.resetlogs_time, ic.last_recid, rt.last_recid, grsp.last_recid, nrsp.last_recid, bcr.last_recid, pdb.last_recid, pic.last_recid, decode(dc.records_used, 0, 0, dc.last_recid - dc.records_used + 1), decode(al.records_used, 0, 0, al.last_recid - al.records_used + 1), decode(bp.records_used, 0, 0, bp.last_recid - bp.records_used + 1), decode(bs.records_used, 0, 0, bs.last_recid - bs.records_used + 1), decode(do.records_used, 0, 0, do.last_recid - do.records_used + 1), decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(pc.records_used, 0, 0, pc.last_recid - pc.records_used + 1) into :vertime, :cfscn, :cfseq, :rltime, :dfhwm, :tfhwm, :tshwm, :rlhwm, :rmhwm, :dchwm, :alhwm, :bphwm, :dohwm, :offrhwm, :pchwm, :bshwm, :lrstscn, :lrsttime, :ichwm, :rthwm, :grsphwm, :nrsphwm, :bcrhwm, :pdbhwm, :pichwm, :dclwm, :allwm, :bplwm, :bslwm, :dolwm, :offrlwm, :pclwm from v$database db, v$controlfile_record_section df, v$controlfile_record_section tf, v$controlfile_record_section ts, v$controlfile_record_section rt, v$controlfile_record_section rl, v$controlfile_record_section rm, v$controlfile_record_section dc, v$controlfile_record_section al, v$controlfile_record_section bp, v$controlfile_record_section do, v$controlfile_record_section offr, v$controlfile_record_section pc, v$controlfile_record_section bs, v$controlfile_record_section ic, v$controlfile_record_section grsp, v$controlfile_record_section nrsp, v$controlfile_record_section bcr, v$controlfile_record_section pdb, v$controlfile_record_section pic, v$database_incarnation dbinc, v$database_incarnation ldbinc where df.type = 'DATAFILE' and tf.type = 'TEMPORARY FILENAME' and ts.type = 'TABLESPACE' and rt.type = 'REDO THREAD' and rl.type = 'REDO LOG' and rm.type = 'RMAN CONFIGURATION' and dc.type = 'DATAFILE COPY' and al.type = 'ARCHIVED LOG' and bp.type = 'BACKUP PIECE' and do.type = 'DELETED OBJECT' and offr.type = 'OFFLINE RANGE' and pc.type = 'PROXY COPY' and bs.type = 'BACKUP SET' and ic.type = 'DATABASE INCARNATION' and grsp.type = 'GUARANTEED RESTORE POINT' and nrsp.type = 'RESTORE POINT' and bcr.type = 'DATABASE BLOCK CORRUPTION' and pdb.type = 'PDB RECORD' and pic.type = 'PDBINC RECORD' and dbinc.incarnation#=db.recovery_target_incarnation# and ldbinc.incarnation#=db.last_open_incarnation#' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '334' +ACTION :[81] 'select count(*) into :is_farsync FROM v$database where database_role = 'FAR SYNC'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '301' +ACTION :[48] 'SELECT SYS_CONTEXT(:b1 , :b2 ) FROM SYS.DUAL ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '280' +ACTION :[27] 'select count(*) from x$dual' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '285' +ACTION :[32] 'select count(*) from sys.x$kcrmx' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '565' +ACTION :[310] 'declare isomf boolean; isasm boolean; istmplt boolean; begin sys.dbms_backup_restore.isfileNameOMF(fname => :fname, isomf => isomf, isasm => isasm, istmplt => istmplt); if (isomf) then :ret_isomf := 1; end if; if (isasm) then :ret_isasm := 1; end if; if (istmplt) then :ret_istmplt := 1; end if; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '565' +ACTION :[310] 'declare isomf boolean; isasm boolean; istmplt boolean; begin sys.dbms_backup_restore.isfileNameOMF(fname => :fname, isomf => isomf, isasm => isasm, istmplt => istmplt); if (isomf) then :ret_isomf := 1; end if; if (isasm) then :ret_isasm := 1; end if; if (istmplt) then :ret_istmplt := 1; end if; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '565' +ACTION :[310] 'declare isomf boolean; isasm boolean; istmplt boolean; begin sys.dbms_backup_restore.isfileNameOMF(fname => :fname, isomf => isomf, isasm => isasm, istmplt => istmplt); if (isomf) then :ret_isomf := 1; end if; if (isasm) then :ret_isasm := 1; end if; if (istmplt) then :ret_istmplt := 1; end if; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '565' +ACTION :[310] 'declare isomf boolean; isasm boolean; istmplt boolean; begin sys.dbms_backup_restore.isfileNameOMF(fname => :fname, isomf => isomf, isasm => isasm, istmplt => istmplt); if (isomf) then :ret_isomf := 1; end if; if (isasm) then :ret_isasm := 1; end if; if (istmplt) then :ret_istmplt := 1; end if; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '616' +ACTION :[362] 'select controlfile_type, controlfile_change#, controlfile_sequence#, controlfile_created, decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(database_role, 'SNAPSHOT STANDBY', 1, 0) into :cftype, :cfscn, :cfseq, :cfcretime, :cfoffrrid, :cfsnapstby from v$database, v$controlfile_record_section offr where offr.type = 'OFFLINE RANGE'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '363' +ACTION :[109] 'select count(*) into :curbkup from x$kccdi di where bitand(di.diflg, 4096) = 4096 and bitand(di.difl2, 4) = 4' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '349' +ACTION :[96] 'select count(*) into :dbstate from x$kccrdi where location is not null and bitand(flags, 4) != 0' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '468' +ACTION :[214] 'select nvl(max(al.recid), '0'),nvl(max(al.recid), 0) into :txtparmvalue, :parmvalue from v$archived_log al where al.status in ('X', 'A') and al.is_recovery_dest_file = 'YES' and al.creator = 'RMAN'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '2943' +ACTION :[2688] 'select db.version_time, db.controlfile_change#, db.controlfile_sequence#, dbinc.resetlogs_time, df.last_recid, tf.last_recid, ts.last_recid, rl.last_recid, rm.last_recid, dc.last_recid, al.last_recid, bp.last_recid, do.last_recid, offr.last_recid, pc.last_recid, bs.last_recid, ldbinc.resetlogs_change#, ldbinc.resetlogs_time, ic.last_recid, rt.last_recid, grsp.last_recid, nrsp.last_recid, bcr.last_recid, pdb.last_recid, pic.last_recid, decode(dc.records_used, 0, 0, dc.last_recid - dc.records_used + 1), decode(al.records_used, 0, 0, al.last_recid - al.records_used + 1), decode(bp.records_used, 0, 0, bp.last_recid - bp.records_used + 1), decode(bs.records_used, 0, 0, bs.last_recid - bs.records_used + 1), decode(do.records_used, 0, 0, do.last_recid - do.records_used + 1), decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(pc.records_used, 0, 0, pc.last_recid - pc.records_used + 1) into :vertime, :cfscn, :cfseq, :rltime, :dfhwm, :tfhwm, :tshwm, :rlhwm, :rmhwm, :dchwm, :alhwm, :bphwm, :dohwm, :offrhwm, :pchwm, :bshwm, :lrstscn, :lrsttime, :ichwm, :rthwm, :grsphwm, :nrsphwm, :bcrhwm, :pdbhwm, :pichwm, :dclwm, :allwm, :bplwm, :bslwm, :dolwm, :offrlwm, :pclwm from v$database db, v$controlfile_record_section df, v$controlfile_record_section tf, v$controlfile_record_section ts, v$controlfile_record_section rt, v$controlfile_record_section rl, v$controlfile_record_section rm, v$controlfile_record_section dc, v$controlfile_record_section al, v$controlfile_record_section bp, v$controlfile_record_section do, v$controlfile_record_section offr, v$controlfile_record_section pc, v$controlfile_record_section bs, v$controlfile_record_section ic, v$controlfile_record_section grsp, v$controlfile_record_section nrsp, v$controlfile_record_section bcr, v$controlfile_record_section pdb, v$controlfile_record_section pic, v$database_incarnation dbinc, v$database_incarnation ldbinc where df.type = 'DATAFILE' and tf.type = 'TEMPORARY FILENAME' and ts.type = 'TABLESPACE' and rt.type = 'REDO THREAD' and rl.type = 'REDO LOG' and rm.type = 'RMAN CONFIGURATION' and dc.type = 'DATAFILE COPY' and al.type = 'ARCHIVED LOG' and bp.type = 'BACKUP PIECE' and do.type = 'DELETED OBJECT' and offr.type = 'OFFLINE RANGE' and pc.type = 'PROXY COPY' and bs.type = 'BACKUP SET' and ic.type = 'DATABASE INCARNATION' and grsp.type = 'GUARANTEED RESTORE POINT' and nrsp.type = 'RESTORE POINT' and bcr.type = 'DATABASE BLOCK CORRUPTION' and pdb.type = 'PDB RECORD' and pic.type = 'PDBINC RECORD' and dbinc.incarnation#=db.recovery_target_incarnation# and ldbinc.incarnation#=db.last_open_incarnation#' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '363' +ACTION :[109] 'select count(*) into :curbkup from x$kccdi di where bitand(di.diflg, 4096) = 4096 and bitand(di.difl2, 4) = 4' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '626' +ACTION :[372] 'select db.name, dbinc.resetlogs_time, dbinc.resetlogs_change#, db.dbid, rpad(db.name, 8, 'x'), dbinc.prior_resetlogs_time, dbinc.prior_resetlogs_change#, primary_db_unique_name, db.con_dbid into :dbname, :rltime, :rlscn, :fhdbi, :pdbname, :parent_rltime, :parent_rlscn, :prim_dbuname, :con_dbid from v$database db, v$database_incarnation dbinc where dbinc.status='CURRENT'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '366' +ACTION :[112] 'select nvl(max(cpmid), '0'), nvl(max(cpmid), 0) into :txtparmvalue, :parmvalue from x$kcccp where cpsta in (2,3)' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '342' +ACTION :[89] 'select upper(value) into :parmvalue from v$parameter where lower(name) = 'db_unique_name'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '364' +ACTION :[110] 'select count(*) into :dbstate from v$parameter where lower(name) = '_dummy_instance' and upper(value) = 'TRUE'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '365' +ACTION :[111] 'select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Parallel backup and recovery'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '368' +ACTION :[114] 'select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Incremental backup and recovery'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '352' +ACTION :[99] 'select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Duplexed backups'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '357' +ACTION :[103] 'select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Block Media Recovery'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '370' +ACTION :[116] 'select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Point-in-time tablespace recovery'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '354' +ACTION :[100] 'select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Backup Encryption'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '676' +ACTION :[421] 'begin dbms_rcvman.setDatabase( db_name => upper(:dbname), reset_scn => :rlscn, reset_time => :rltime, db_id => :fhdbi, db_unique_name => :db_unique_name, site_aware => TRUE, guid => :guid); dbms_rcvman.setCanApplyAnyRedo(TRUE); dbms_rcvman.setCanConvertCf(TRUE); dbms_rcvman.setBigScnAware; if (:canhandletts = 1) then dbms_rcvman.setCanHandleTransportableTbs(TRUE); end if; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '422' +ACTION :[164] 'declare first boolean; conf# number; begin if (:first > 0) then first := TRUE; else first := FALSE; end if; dbms_rcvman.getConfig(conf#, :name, :value, first); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[4] '1403' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '422' +ACTION :[164] 'declare first boolean; conf# number; begin if (:first > 0) then first := TRUE; else first := FALSE; end if; dbms_rcvman.getConfig(conf#, :name, :value, first); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[4] '1403' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '422' +ACTION :[164] 'declare first boolean; conf# number; begin if (:first > 0) then first := TRUE; else first := FALSE; end if; dbms_rcvman.getConfig(conf#, :name, :value, first); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[4] '1403' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '422' +ACTION :[164] 'declare first boolean; conf# number; begin if (:first > 0) then first := TRUE; else first := FALSE; end if; dbms_rcvman.getConfig(conf#, :name, :value, first); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[4] '1403' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '410' +ACTION :[155] 'declare transclause boolean := FALSE; begin if (:transclause > 0) then transclause := TRUE; end if; dbms_rcvman.resetAll(transclause => transclause); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:05 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '538' +ACTION :[283] 'begin sys.dbms_backup_restore.createRmanStatusRow( level => :level, parent_id => :pid, parent_stamp => :pts, status => :status, command_id => :command_id, operation => :operation, row_id => :row_id, row_stamp => :row_stamp, flags => :flags); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '410' +ACTION :[155] 'declare transclause boolean := FALSE; begin if (:transclause > 0) then transclause := TRUE; end if; dbms_rcvman.resetAll(transclause => transclause); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '302' +ACTION :[48] 'begin dbms_rcvman.translateDataFile(:fno); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '1190' +ACTION :[935] 'declare dfRec dbms_rcvman.dfRec_t; begin dbms_rcvman.getDataFile(dfRec); :1 := dfRec.dfNumber; :2 := dfRec.dfCreationSCN; :3 := dfRec.dfCreationTime; :4 := dfRec.fileName; :5 := dfRec.tsName; :6 := nvl(dfRec.status, 0); :7 := dfRec.blockSize; :8 := 0; :9 := dfRec.blocks; :10 := nvl(dfRec.unrecovSCN, 0); :11 := dfRec.stopSCN; :12 := dfRec.readOnly; :13 := dfRec.rfNumber; :14 := dfRec.tsNumber; :15 := dfRec.inBackup; :16 := dfRec.auxName; :17 := dfRec.encrypt; :18 := dfRec.foreignDbid; :19 := dfRec.pluggedRonly; :20 := dfRec.pluginSCN; :21 := dfRec.pluginRlgSCN; :22 := dfRec.pluginRlgTime; :23 := dfRec.creation_thread; :24 := dfRec.creation_size; :25 := dfRec.pdbId; :26 := dfRec.pdbKey; :27 := dfRec.pdbName; :28 := dfRec.pdbClosed; :29 := dfRec.pdbForeignDbid; :30 := dfRec.pdbForeignCkpScn; :31 := dfRec.noBackupPdb; :32 := dfRec.pdbForeignAfn; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '1193' +ACTION :[935] 'declare dfRec dbms_rcvman.dfRec_t; begin dbms_rcvman.getDataFile(dfRec); :1 := dfRec.dfNumber; :2 := dfRec.dfCreationSCN; :3 := dfRec.dfCreationTime; :4 := dfRec.fileName; :5 := dfRec.tsName; :6 := nvl(dfRec.status, 0); :7 := dfRec.blockSize; :8 := 0; :9 := dfRec.blocks; :10 := nvl(dfRec.unrecovSCN, 0); :11 := dfRec.stopSCN; :12 := dfRec.readOnly; :13 := dfRec.rfNumber; :14 := dfRec.tsNumber; :15 := dfRec.inBackup; :16 := dfRec.auxName; :17 := dfRec.encrypt; :18 := dfRec.foreignDbid; :19 := dfRec.pluggedRonly; :20 := dfRec.pluginSCN; :21 := dfRec.pluginRlgSCN; :22 := dfRec.pluginRlgTime; :23 := dfRec.creation_thread; :24 := dfRec.creation_size; :25 := dfRec.pdbId; :26 := dfRec.pdbKey; :27 := dfRec.pdbName; :28 := dfRec.pdbClosed; :29 := dfRec.pdbForeignDbid; :30 := dfRec.pdbForeignCkpScn; :31 := dfRec.noBackupPdb; :32 := dfRec.pdbForeignAfn; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[4] '1403' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '616' +ACTION :[362] 'select controlfile_type, controlfile_change#, controlfile_sequence#, controlfile_created, decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(database_role, 'SNAPSHOT STANDBY', 1, 0) into :cftype, :cfscn, :cfseq, :cfcretime, :cfoffrrid, :cfsnapstby from v$database, v$controlfile_record_section offr where offr.type = 'OFFLINE RANGE'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '363' +ACTION :[109] 'select count(*) into :curbkup from x$kccdi di where bitand(di.diflg, 4096) = 4096 and bitand(di.difl2, 4) = 4' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '349' +ACTION :[96] 'select count(*) into :dbstate from x$kccrdi where location is not null and bitand(flags, 4) != 0' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '410' +ACTION :[155] 'declare transclause boolean := FALSE; begin if (:transclause > 0) then transclause := TRUE; end if; dbms_rcvman.resetAll(transclause => transclause); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '294' +ACTION :[40] 'begin dbms_rcvman.setTag(:tagval); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '294' +ACTION :[40] 'begin dbms_rcvman.resetDeviceType; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '302' +ACTION :[48] 'begin dbms_rcvman.setDeviceType(:devtype); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '291' +ACTION :[37] 'begin dbms_rcvman.setFrom(NULL); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '297' +ACTION :[43] 'begin dbms_rcvman.setSparseness(NULL); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '565' +ACTION :[310] 'declare allRecords number; begin if :allRecords > 0 then allRecords := dbms_rcvman.TRUE#; else allRecords := dbms_rcvman.FALSE#; end if; dbms_rcvman.setComputeRecoveryActionMasks( containerMask => :containerMask, actionMask => :actionMask, allRecords => allRecords, availableMask => :availableMask); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '309' +ACTION :[55] 'begin dbms_rcvman.setRcvRecBackupAge(:backupAge); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '616' +ACTION :[362] 'select controlfile_type, controlfile_change#, controlfile_sequence#, controlfile_created, decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(database_role, 'SNAPSHOT STANDBY', 1, 0) into :cftype, :cfscn, :cfseq, :cfcretime, :cfoffrrid, :cfsnapstby from v$database, v$controlfile_record_section offr where offr.type = 'OFFLINE RANGE'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '787' +ACTION :[533] 'select decode(bitand(festa, 4096+128), 128, fests, 4096, fecps, 0), decode(bitand(festa, 4096+128), 128, 18446744073709551615, 4096, controlfile_change#, 0), decode(bitand(festa, 4096+128), 128, SYSDATE, 4096, controlfile_time, to_date('01/01/1988', 'MM/DD/YYYY', 'NLS_CALENDAR=Gregorian')), feofs, feonc_scn, to_date(nvl(feonc_tim, '01/01/88 00:01:01'), 'MM/DD/RR HH24:MI:SS', 'NLS_CALENDAR=Gregorian') into :cleanscn, :clean2scn, :clean2time, :offlscn, :onlscn, :onltime from x$kccfe, v$database where fenum = :fno and fedup = 1' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '1446' +ACTION :[1190] 'declare allCopies boolean; begin dbms_rcvman.resetthisBackupAge; if (:allCopies > 0) then allCopies := TRUE; else allCopies := FALSE; end if; :rc := dbms_rcvman.computeRecoveryActions( fno => :fno, crescn => :crescn, df_rlgscn => :rlgscn, df_rlgtime => :rlgtime, df_ckpscn => :ckpscn, offlscn => :offlscn, onlscn => :onlscn, onltime => :onltime, cleanscn => :cleanscn, clean2scn => :clean2scn, clean2time => :clean2time, allowfuzzy => FALSE, partial_rcv => FALSE, cf_scn => :cfscn, cf_cretime => :cfcretime, cf_offrrid => :cfoffrrid, allCopies => allCopies, df_cretime => :cretime, rmanCmd => :rmanCmd, foreignDbid => :foreignDbid, pluggedRonly => :pluggedRonly, pluginSCN => :pluginSCN, pluginRlgSCN => :pluginRlgSCN, pluginRlgTime => :pluginRlgTime, creation_thread => :creation_thread, creation_size => :creation_size, pdbId => :pdbId, pdbForeignDbid => :pdbForeignDbid ); if (:maxact > 0) then dbms_rcvman.trimRecoveryActions( maxActions => :maxact, containerMask => dbms_rcvman.proxyCopy_con_t + dbms_rcvman.imageCopy_con_t + dbms_rcvman.backupSet_con_t, actionMask => dbms_rcvman.full_act_t); end if; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '2412' +ACTION :[2156] 'declare rcvRec dbms_rcvman.rcvRec_t; begin :1 := dbms_rcvman.getRcvRec(funCode => :2, rcvRec => rcvRec, callAgain => :3); IF (rcvRec.type_con = dbms_rcvman.backupSet_con_t) THEN dbms_rcvman.findValidBackupSetRcvRec := rcvRec; END IF; :4 := rcvRec.type_con; :5 := rcvRec.key_con; :6 := rcvRec.recid_con; :7 := rcvRec.stamp_con; :8 := rcvRec.setStamp_con; :9 := rcvRec.setCount_con; :10 := rcvRec.bsRecid_con; :11 := rcvRec.bsStamp_con; :12 := rcvRec.bsKey_con; :13 := rcvRec.bsLevel_con; :14 := rcvRec.bsType_con; :15 := rcvRec.pieceCount_con; :16 := rcvRec.fileName_con; :17 := rcvRec.tag_con; :18 := rcvRec.copyNumber_con; :19 := rcvRec.status_con; :20 := rcvRec.blocks_con; :21 := rcvRec.blockSize_con; :22 := rcvRec.deviceType_con; :23 := rcvRec.compTime_con; :24 := rcvRec.cfCreationTime_con; :25 := rcvRec.pieceNumber_con; :26 := rcvRec.bpCompTime_con; :27 := rcvRec.bpCompressed_con; :28 := rcvRec.multi_section_con; :29 := rcvRec.type_act; :30 := rcvRec.fromScn_act; :31 := rcvRec.toSCN_act; :32 := rcvRec.toTime_act; :33 := rcvRec.rlgSCN_act; :34 := rcvRec.rlgTime_act; :35 := rcvRec.dbincKey_act; :36 := rcvRec.level_act; :37 := rcvRec.section_size_act; :38 := rcvRec.dfNumber_obj; :39 := rcvRec.dfCreationSCN_obj; :40 := rcvRec.cfSequence_obj; :41 := rcvRec.cfDate_obj; :42 := rcvRec.logSequence_obj; :43 := rcvRec.logThread_obj; :44 := rcvRec.logRlgSCN_obj; :45 := rcvRec.logRlgTime_obj; :46 := rcvRec.logLowSCN_obj; :47 := rcvRec.logLowTime_obj; :48 := rcvRec.logNextSCN_obj; :49 := rcvRec.logNextTime_obj; :50 := rcvRec.cfType_obj; :51 := rcvRec.keep_options; :52 := rcvRec.keep_until; :53 := rcvRec.afzSCN_act; :54 := rcvRec.rfzTime_act; :55 := rcvRec.rfzSCN_act; :56 := round(rcvRec.elapseSecs_con); :57 := rcvRec.media_con; :58 := rcvRec.isrdf_con; :59 := rcvRec.logTerminal_obj; :60 := rcvRec.site_key_con; :61 := rcvRec.foreignDbid_obj; :62 := rcvRec.pluggedRonly_obj; :63 := rcvRec.pluginSCN_obj; :64 := rcvRec.pluginRlgSCN_obj; :65 := rcvRec.pluginRlgTime_obj; :66 := rcvRec.sfDbUniqueName_obj; :67 := rcvRec.pdbKey_obj; :68 := rcvRec.sparse_backup_con; :69 := rcvRec.ppl_pdb_id_con; :70 := rcvRec.ppl_cdb_dbid_con; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '378' +ACTION :[123] 'begin dbms_rcvman.translateBackupPieceBsKey( startBskey => :bsKey, tag => :tag, statusMask => :statusMask); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '436' +ACTION :[181] 'begin dbms_rcvman.translateSeekBpBsKey( bsKey => :bsKey, pieceCount => :pieceCount, duplicates => :duplicates, deviceType => :deviceType, copyNumber => :copyNumber); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '1684' +ACTION :[1428] ' declare bpRec dbms_rcvman.bpRec_t; begin dbms_rcvman.getBackupPiece(bpRec => bpRec); if bpRec.compTime is null then bpRec.compTime := dbms_rcvman.stamp2date(bpRec.stamp); end if; if :first = 1 then :last_comp_time := bpRec.compTime; :first := 0; elsif bpRec.compTime > :last_comp_time then :last_comp_time := bpRec.compTime; end if; :recid := bpRec.recid; :stamp := bpRec.stamp; :key := bpRec.key; :setStamp := bpRec.setStamp; :setCount := bpRec.setCount; :bsType := bpRec.bsType; :pieceNumber := bpRec.pieceNumber; :copyNumber := bpRec.copyNumber; :status := bpRec.status; :compTime := bpRec.compTime; :handle := bpRec.handle; :tag := bpRec.tag; :devtype := bpRec.deviceType; :bskey := bpRec.bskey; :media := bpRec.media; :bytes := bpRec.bytes; :compressed := bpRec.compressed; :site_key := bpRec.site_key; :vbkey := bpRec.vb_key; :ba_access := bpRec.ba_access; :ppl_pdb_id := bpRec.ppl_pdb_id; :ppl_cdb_dbid:= bpRec.ppl_cdb_dbid; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '1687' +ACTION :[1428] ' declare bpRec dbms_rcvman.bpRec_t; begin dbms_rcvman.getBackupPiece(bpRec => bpRec); if bpRec.compTime is null then bpRec.compTime := dbms_rcvman.stamp2date(bpRec.stamp); end if; if :first = 1 then :last_comp_time := bpRec.compTime; :first := 0; elsif bpRec.compTime > :last_comp_time then :last_comp_time := bpRec.compTime; end if; :recid := bpRec.recid; :stamp := bpRec.stamp; :key := bpRec.key; :setStamp := bpRec.setStamp; :setCount := bpRec.setCount; :bsType := bpRec.bsType; :pieceNumber := bpRec.pieceNumber; :copyNumber := bpRec.copyNumber; :status := bpRec.status; :compTime := bpRec.compTime; :handle := bpRec.handle; :tag := bpRec.tag; :devtype := bpRec.deviceType; :bskey := bpRec.bskey; :media := bpRec.media; :bytes := bpRec.bytes; :compressed := bpRec.compressed; :site_key := bpRec.site_key; :vbkey := bpRec.vb_key; :ba_access := bpRec.ba_access; :ppl_pdb_id := bpRec.ppl_pdb_id; :ppl_cdb_dbid:= bpRec.ppl_cdb_dbid; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[4] '1403' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '301' +ACTION :[47] 'begin dbms_rcvman.translateBpBsKeyCancel; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '395' +ACTION :[141] 'select fn.fnnam from x$kccfn fn where fn.fnfno = :dfnumber and fn.fntyp = 4 and fn.fnnam is not null and bitand(fn.fnflg, 4) != 4' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '681' +ACTION :[426] 'begin :rc := sys.dbms_backup_restore.validateDataFileCopy( recid => :recid, stamp => :stamp, fname => :fname, dfnumber => :dfnumber, resetlogs_change => :rstscn, creation_change => :crescn, checkpoint_change => :ckpscn, blksize => :blksize, signal => :sigerr, pdbForeignDbid => :pfdbid, pdbForeignCkpScn => :pfckpscn, pdbForeignAfn => :pfafn); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:06 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:41 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:41 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:41 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:41 2020 -04:00 +LENGTH : '641' +ACTION :[386] 'begin sys.dbms_application_info.set_session_longops (rindex => :1, slno => :2, op_name => :3, target => :4, context => :5, sofar => :6, totalwork => :7, target_desc => :8, units => 'Blocks'); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:41 2020 -04:00 +LENGTH : '616' +ACTION :[362] 'select controlfile_type, controlfile_change#, controlfile_sequence#, controlfile_created, decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(database_role, 'SNAPSHOT STANDBY', 1, 0) into :cftype, :cfscn, :cfseq, :cfcretime, :cfoffrrid, :cfsnapstby from v$database, v$controlfile_record_section offr where offr.type = 'OFFLINE RANGE'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:41 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:41 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:41 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:41 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:41 2020 -04:00 +LENGTH : '616' +ACTION :[362] 'select controlfile_type, controlfile_change#, controlfile_sequence#, controlfile_created, decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(database_role, 'SNAPSHOT STANDBY', 1, 0) into :cftype, :cfscn, :cfseq, :cfcretime, :cfoffrrid, :cfsnapstby from v$database, v$controlfile_record_section offr where offr.type = 'OFFLINE RANGE'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:41 2020 -04:00 +LENGTH : '468' +ACTION :[214] 'select nvl(max(al.recid), '0'),nvl(max(al.recid), 0) into :txtparmvalue, :parmvalue from v$archived_log al where al.status in ('X', 'A') and al.is_recovery_dest_file = 'YES' and al.creator = 'RMAN'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:41 2020 -04:00 +LENGTH : '2943' +ACTION :[2688] 'select db.version_time, db.controlfile_change#, db.controlfile_sequence#, dbinc.resetlogs_time, df.last_recid, tf.last_recid, ts.last_recid, rl.last_recid, rm.last_recid, dc.last_recid, al.last_recid, bp.last_recid, do.last_recid, offr.last_recid, pc.last_recid, bs.last_recid, ldbinc.resetlogs_change#, ldbinc.resetlogs_time, ic.last_recid, rt.last_recid, grsp.last_recid, nrsp.last_recid, bcr.last_recid, pdb.last_recid, pic.last_recid, decode(dc.records_used, 0, 0, dc.last_recid - dc.records_used + 1), decode(al.records_used, 0, 0, al.last_recid - al.records_used + 1), decode(bp.records_used, 0, 0, bp.last_recid - bp.records_used + 1), decode(bs.records_used, 0, 0, bs.last_recid - bs.records_used + 1), decode(do.records_used, 0, 0, do.last_recid - do.records_used + 1), decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(pc.records_used, 0, 0, pc.last_recid - pc.records_used + 1) into :vertime, :cfscn, :cfseq, :rltime, :dfhwm, :tfhwm, :tshwm, :rlhwm, :rmhwm, :dchwm, :alhwm, :bphwm, :dohwm, :offrhwm, :pchwm, :bshwm, :lrstscn, :lrsttime, :ichwm, :rthwm, :grsphwm, :nrsphwm, :bcrhwm, :pdbhwm, :pichwm, :dclwm, :allwm, :bplwm, :bslwm, :dolwm, :offrlwm, :pclwm from v$database db, v$controlfile_record_section df, v$controlfile_record_section tf, v$controlfile_record_section ts, v$controlfile_record_section rt, v$controlfile_record_section rl, v$controlfile_record_section rm, v$controlfile_record_section dc, v$controlfile_record_section al, v$controlfile_record_section bp, v$controlfile_record_section do, v$controlfile_record_section offr, v$controlfile_record_section pc, v$controlfile_record_section bs, v$controlfile_record_section ic, v$controlfile_record_section grsp, v$controlfile_record_section nrsp, v$controlfile_record_section bcr, v$controlfile_record_section pdb, v$controlfile_record_section pic, v$database_incarnation dbinc, v$database_incarnation ldbinc where df.type = 'DATAFILE' and tf.type = 'TEMPORARY FILENAME' and ts.type = 'TABLESPACE' and rt.type = 'REDO THREAD' and rl.type = 'REDO LOG' and rm.type = 'RMAN CONFIGURATION' and dc.type = 'DATAFILE COPY' and al.type = 'ARCHIVED LOG' and bp.type = 'BACKUP PIECE' and do.type = 'DELETED OBJECT' and offr.type = 'OFFLINE RANGE' and pc.type = 'PROXY COPY' and bs.type = 'BACKUP SET' and ic.type = 'DATABASE INCARNATION' and grsp.type = 'GUARANTEED RESTORE POINT' and nrsp.type = 'RESTORE POINT' and bcr.type = 'DATABASE BLOCK CORRUPTION' and pdb.type = 'PDB RECORD' and pic.type = 'PDBINC RECORD' and dbinc.incarnation#=db.recovery_target_incarnation# and ldbinc.incarnation#=db.last_open_incarnation#' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:41 2020 -04:00 +LENGTH : '459' +ACTION :[205] 'select /*+ rule */ round(sum(MBYTES_PROCESSED)), round(sum(INPUT_BYTES)), round(sum(OUTPUT_BYTES)) from V$RMAN_STATUS START WITH RECID = :row_id and STAMP = :row_stamp CONNECT BY PRIOR RECID = parent_recid' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:41 2020 -04:00 +LENGTH : '1019' +ACTION :[765] 'SELECT decode(count(distinct device_type) over (partition by RMAN_STATUS_RECID, RMAN_STATUS_STAMP), 1, first_value(device_type) over (partition by RMAN_STATUS_RECID,RMAN_STATUS_STAMP), 0, null,'*') device_type from GV$BACKUP_SYNC_IO where 'OUTPUT' = TYPE and rman_status_recid = :row_id and rman_status_stamp = :row_stamp UNION ALL SELECT decode(count(distinct device_type) over (partition by RMAN_STATUS_RECID,RMAN_STATUS_STAMP), 1, first_value(device_type) over (partition by RMAN_STATUS_RECID,RMAN_STATUS_STAMP), 0, null, '*') device_type from GV$BACKUP_ASYNC_IO where 'OUTPUT' = TYPE and rman_status_recid = :row_id and rman_status_stamp = :row_stamp' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '458' +ACTION :[203] 'begin sys.dbms_backup_restore.commitRmanStatusRow( row_id => :row_id, row_stamp => :row_stamp, mbytes => :mb, status => :status, ibytes => :ib, obytes => :ob, odevtype => :odevtype); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '538' +ACTION :[283] 'begin sys.dbms_backup_restore.createRmanStatusRow( level => :level, parent_id => :pid, parent_stamp => :pts, status => :status, command_id => :command_id, operation => :operation, row_id => :row_id, row_stamp => :row_stamp, flags => :flags); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '363' +ACTION :[109] 'select count(*) into :curbkup from x$kccdi di where bitand(di.diflg, 4096) = 4096 and bitand(di.difl2, 4) = 4' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '349' +ACTION :[96] 'select count(*) into :dbstate from x$kccrdi where location is not null and bitand(flags, 4) != 0' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '468' +ACTION :[214] 'select nvl(max(al.recid), '0'),nvl(max(al.recid), 0) into :txtparmvalue, :parmvalue from v$archived_log al where al.status in ('X', 'A') and al.is_recovery_dest_file = 'YES' and al.creator = 'RMAN'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '2943' +ACTION :[2688] 'select db.version_time, db.controlfile_change#, db.controlfile_sequence#, dbinc.resetlogs_time, df.last_recid, tf.last_recid, ts.last_recid, rl.last_recid, rm.last_recid, dc.last_recid, al.last_recid, bp.last_recid, do.last_recid, offr.last_recid, pc.last_recid, bs.last_recid, ldbinc.resetlogs_change#, ldbinc.resetlogs_time, ic.last_recid, rt.last_recid, grsp.last_recid, nrsp.last_recid, bcr.last_recid, pdb.last_recid, pic.last_recid, decode(dc.records_used, 0, 0, dc.last_recid - dc.records_used + 1), decode(al.records_used, 0, 0, al.last_recid - al.records_used + 1), decode(bp.records_used, 0, 0, bp.last_recid - bp.records_used + 1), decode(bs.records_used, 0, 0, bs.last_recid - bs.records_used + 1), decode(do.records_used, 0, 0, do.last_recid - do.records_used + 1), decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(pc.records_used, 0, 0, pc.last_recid - pc.records_used + 1) into :vertime, :cfscn, :cfseq, :rltime, :dfhwm, :tfhwm, :tshwm, :rlhwm, :rmhwm, :dchwm, :alhwm, :bphwm, :dohwm, :offrhwm, :pchwm, :bshwm, :lrstscn, :lrsttime, :ichwm, :rthwm, :grsphwm, :nrsphwm, :bcrhwm, :pdbhwm, :pichwm, :dclwm, :allwm, :bplwm, :bslwm, :dolwm, :offrlwm, :pclwm from v$database db, v$controlfile_record_section df, v$controlfile_record_section tf, v$controlfile_record_section ts, v$controlfile_record_section rt, v$controlfile_record_section rl, v$controlfile_record_section rm, v$controlfile_record_section dc, v$controlfile_record_section al, v$controlfile_record_section bp, v$controlfile_record_section do, v$controlfile_record_section offr, v$controlfile_record_section pc, v$controlfile_record_section bs, v$controlfile_record_section ic, v$controlfile_record_section grsp, v$controlfile_record_section nrsp, v$controlfile_record_section bcr, v$controlfile_record_section pdb, v$controlfile_record_section pic, v$database_incarnation dbinc, v$database_incarnation ldbinc where df.type = 'DATAFILE' and tf.type = 'TEMPORARY FILENAME' and ts.type = 'TABLESPACE' and rt.type = 'REDO THREAD' and rl.type = 'REDO LOG' and rm.type = 'RMAN CONFIGURATION' and dc.type = 'DATAFILE COPY' and al.type = 'ARCHIVED LOG' and bp.type = 'BACKUP PIECE' and do.type = 'DELETED OBJECT' and offr.type = 'OFFLINE RANGE' and pc.type = 'PROXY COPY' and bs.type = 'BACKUP SET' and ic.type = 'DATABASE INCARNATION' and grsp.type = 'GUARANTEED RESTORE POINT' and nrsp.type = 'RESTORE POINT' and bcr.type = 'DATABASE BLOCK CORRUPTION' and pdb.type = 'PDB RECORD' and pic.type = 'PDBINC RECORD' and dbinc.incarnation#=db.recovery_target_incarnation# and ldbinc.incarnation#=db.last_open_incarnation#' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '410' +ACTION :[155] 'declare transclause boolean := FALSE; begin if (:transclause > 0) then transclause := TRUE; end if; dbms_rcvman.resetAll(transclause => transclause); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '302' +ACTION :[48] 'begin dbms_rcvman.translateDataFile(:fno); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '1190' +ACTION :[935] 'declare dfRec dbms_rcvman.dfRec_t; begin dbms_rcvman.getDataFile(dfRec); :1 := dfRec.dfNumber; :2 := dfRec.dfCreationSCN; :3 := dfRec.dfCreationTime; :4 := dfRec.fileName; :5 := dfRec.tsName; :6 := nvl(dfRec.status, 0); :7 := dfRec.blockSize; :8 := 0; :9 := dfRec.blocks; :10 := nvl(dfRec.unrecovSCN, 0); :11 := dfRec.stopSCN; :12 := dfRec.readOnly; :13 := dfRec.rfNumber; :14 := dfRec.tsNumber; :15 := dfRec.inBackup; :16 := dfRec.auxName; :17 := dfRec.encrypt; :18 := dfRec.foreignDbid; :19 := dfRec.pluggedRonly; :20 := dfRec.pluginSCN; :21 := dfRec.pluginRlgSCN; :22 := dfRec.pluginRlgTime; :23 := dfRec.creation_thread; :24 := dfRec.creation_size; :25 := dfRec.pdbId; :26 := dfRec.pdbKey; :27 := dfRec.pdbName; :28 := dfRec.pdbClosed; :29 := dfRec.pdbForeignDbid; :30 := dfRec.pdbForeignCkpScn; :31 := dfRec.noBackupPdb; :32 := dfRec.pdbForeignAfn; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '1193' +ACTION :[935] 'declare dfRec dbms_rcvman.dfRec_t; begin dbms_rcvman.getDataFile(dfRec); :1 := dfRec.dfNumber; :2 := dfRec.dfCreationSCN; :3 := dfRec.dfCreationTime; :4 := dfRec.fileName; :5 := dfRec.tsName; :6 := nvl(dfRec.status, 0); :7 := dfRec.blockSize; :8 := 0; :9 := dfRec.blocks; :10 := nvl(dfRec.unrecovSCN, 0); :11 := dfRec.stopSCN; :12 := dfRec.readOnly; :13 := dfRec.rfNumber; :14 := dfRec.tsNumber; :15 := dfRec.inBackup; :16 := dfRec.auxName; :17 := dfRec.encrypt; :18 := dfRec.foreignDbid; :19 := dfRec.pluggedRonly; :20 := dfRec.pluginSCN; :21 := dfRec.pluginRlgSCN; :22 := dfRec.pluginRlgTime; :23 := dfRec.creation_thread; :24 := dfRec.creation_size; :25 := dfRec.pdbId; :26 := dfRec.pdbKey; :27 := dfRec.pdbName; :28 := dfRec.pdbClosed; :29 := dfRec.pdbForeignDbid; :30 := dfRec.pdbForeignCkpScn; :31 := dfRec.noBackupPdb; :32 := dfRec.pdbForeignAfn; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[4] '1403' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '363' +ACTION :[109] 'select count(*) into :curbkup from x$kccdi di where bitand(di.diflg, 4096) = 4096 and bitand(di.difl2, 4) = 4' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '349' +ACTION :[96] 'select count(*) into :dbstate from x$kccrdi where location is not null and bitand(flags, 4) != 0' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '410' +ACTION :[155] 'declare transclause boolean := FALSE; begin if (:transclause > 0) then transclause := TRUE; end if; dbms_rcvman.resetAll(transclause => transclause); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '294' +ACTION :[40] 'begin dbms_rcvman.setTag(:tagval); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '294' +ACTION :[40] 'begin dbms_rcvman.resetDeviceType; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '302' +ACTION :[48] 'begin dbms_rcvman.setDeviceType(:devtype); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '291' +ACTION :[37] 'begin dbms_rcvman.setFrom(NULL); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '297' +ACTION :[43] 'begin dbms_rcvman.setSparseness(NULL); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '565' +ACTION :[310] 'declare allRecords number; begin if :allRecords > 0 then allRecords := dbms_rcvman.TRUE#; else allRecords := dbms_rcvman.FALSE#; end if; dbms_rcvman.setComputeRecoveryActionMasks( containerMask => :containerMask, actionMask => :actionMask, allRecords => allRecords, availableMask => :availableMask); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '309' +ACTION :[55] 'begin dbms_rcvman.setRcvRecBackupAge(:backupAge); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '616' +ACTION :[362] 'select controlfile_type, controlfile_change#, controlfile_sequence#, controlfile_created, decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(database_role, 'SNAPSHOT STANDBY', 1, 0) into :cftype, :cfscn, :cfseq, :cfcretime, :cfoffrrid, :cfsnapstby from v$database, v$controlfile_record_section offr where offr.type = 'OFFLINE RANGE'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '787' +ACTION :[533] 'select decode(bitand(festa, 4096+128), 128, fests, 4096, fecps, 0), decode(bitand(festa, 4096+128), 128, 18446744073709551615, 4096, controlfile_change#, 0), decode(bitand(festa, 4096+128), 128, SYSDATE, 4096, controlfile_time, to_date('01/01/1988', 'MM/DD/YYYY', 'NLS_CALENDAR=Gregorian')), feofs, feonc_scn, to_date(nvl(feonc_tim, '01/01/88 00:01:01'), 'MM/DD/RR HH24:MI:SS', 'NLS_CALENDAR=Gregorian') into :cleanscn, :clean2scn, :clean2time, :offlscn, :onlscn, :onltime from x$kccfe, v$database where fenum = :fno and fedup = 1' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '1446' +ACTION :[1190] 'declare allCopies boolean; begin dbms_rcvman.resetthisBackupAge; if (:allCopies > 0) then allCopies := TRUE; else allCopies := FALSE; end if; :rc := dbms_rcvman.computeRecoveryActions( fno => :fno, crescn => :crescn, df_rlgscn => :rlgscn, df_rlgtime => :rlgtime, df_ckpscn => :ckpscn, offlscn => :offlscn, onlscn => :onlscn, onltime => :onltime, cleanscn => :cleanscn, clean2scn => :clean2scn, clean2time => :clean2time, allowfuzzy => FALSE, partial_rcv => FALSE, cf_scn => :cfscn, cf_cretime => :cfcretime, cf_offrrid => :cfoffrrid, allCopies => allCopies, df_cretime => :cretime, rmanCmd => :rmanCmd, foreignDbid => :foreignDbid, pluggedRonly => :pluggedRonly, pluginSCN => :pluginSCN, pluginRlgSCN => :pluginRlgSCN, pluginRlgTime => :pluginRlgTime, creation_thread => :creation_thread, creation_size => :creation_size, pdbId => :pdbId, pdbForeignDbid => :pdbForeignDbid ); if (:maxact > 0) then dbms_rcvman.trimRecoveryActions( maxActions => :maxact, containerMask => dbms_rcvman.proxyCopy_con_t + dbms_rcvman.imageCopy_con_t + dbms_rcvman.backupSet_con_t, actionMask => dbms_rcvman.full_act_t); end if; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '2412' +ACTION :[2156] 'declare rcvRec dbms_rcvman.rcvRec_t; begin :1 := dbms_rcvman.getRcvRec(funCode => :2, rcvRec => rcvRec, callAgain => :3); IF (rcvRec.type_con = dbms_rcvman.backupSet_con_t) THEN dbms_rcvman.findValidBackupSetRcvRec := rcvRec; END IF; :4 := rcvRec.type_con; :5 := rcvRec.key_con; :6 := rcvRec.recid_con; :7 := rcvRec.stamp_con; :8 := rcvRec.setStamp_con; :9 := rcvRec.setCount_con; :10 := rcvRec.bsRecid_con; :11 := rcvRec.bsStamp_con; :12 := rcvRec.bsKey_con; :13 := rcvRec.bsLevel_con; :14 := rcvRec.bsType_con; :15 := rcvRec.pieceCount_con; :16 := rcvRec.fileName_con; :17 := rcvRec.tag_con; :18 := rcvRec.copyNumber_con; :19 := rcvRec.status_con; :20 := rcvRec.blocks_con; :21 := rcvRec.blockSize_con; :22 := rcvRec.deviceType_con; :23 := rcvRec.compTime_con; :24 := rcvRec.cfCreationTime_con; :25 := rcvRec.pieceNumber_con; :26 := rcvRec.bpCompTime_con; :27 := rcvRec.bpCompressed_con; :28 := rcvRec.multi_section_con; :29 := rcvRec.type_act; :30 := rcvRec.fromScn_act; :31 := rcvRec.toSCN_act; :32 := rcvRec.toTime_act; :33 := rcvRec.rlgSCN_act; :34 := rcvRec.rlgTime_act; :35 := rcvRec.dbincKey_act; :36 := rcvRec.level_act; :37 := rcvRec.section_size_act; :38 := rcvRec.dfNumber_obj; :39 := rcvRec.dfCreationSCN_obj; :40 := rcvRec.cfSequence_obj; :41 := rcvRec.cfDate_obj; :42 := rcvRec.logSequence_obj; :43 := rcvRec.logThread_obj; :44 := rcvRec.logRlgSCN_obj; :45 := rcvRec.logRlgTime_obj; :46 := rcvRec.logLowSCN_obj; :47 := rcvRec.logLowTime_obj; :48 := rcvRec.logNextSCN_obj; :49 := rcvRec.logNextTime_obj; :50 := rcvRec.cfType_obj; :51 := rcvRec.keep_options; :52 := rcvRec.keep_until; :53 := rcvRec.afzSCN_act; :54 := rcvRec.rfzTime_act; :55 := rcvRec.rfzSCN_act; :56 := round(rcvRec.elapseSecs_con); :57 := rcvRec.media_con; :58 := rcvRec.isrdf_con; :59 := rcvRec.logTerminal_obj; :60 := rcvRec.site_key_con; :61 := rcvRec.foreignDbid_obj; :62 := rcvRec.pluggedRonly_obj; :63 := rcvRec.pluginSCN_obj; :64 := rcvRec.pluginRlgSCN_obj; :65 := rcvRec.pluginRlgTime_obj; :66 := rcvRec.sfDbUniqueName_obj; :67 := rcvRec.pdbKey_obj; :68 := rcvRec.sparse_backup_con; :69 := rcvRec.ppl_pdb_id_con; :70 := rcvRec.ppl_cdb_dbid_con; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '378' +ACTION :[123] 'begin dbms_rcvman.translateBackupPieceBsKey( startBskey => :bsKey, tag => :tag, statusMask => :statusMask); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '436' +ACTION :[181] 'begin dbms_rcvman.translateSeekBpBsKey( bsKey => :bsKey, pieceCount => :pieceCount, duplicates => :duplicates, deviceType => :deviceType, copyNumber => :copyNumber); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '1684' +ACTION :[1428] ' declare bpRec dbms_rcvman.bpRec_t; begin dbms_rcvman.getBackupPiece(bpRec => bpRec); if bpRec.compTime is null then bpRec.compTime := dbms_rcvman.stamp2date(bpRec.stamp); end if; if :first = 1 then :last_comp_time := bpRec.compTime; :first := 0; elsif bpRec.compTime > :last_comp_time then :last_comp_time := bpRec.compTime; end if; :recid := bpRec.recid; :stamp := bpRec.stamp; :key := bpRec.key; :setStamp := bpRec.setStamp; :setCount := bpRec.setCount; :bsType := bpRec.bsType; :pieceNumber := bpRec.pieceNumber; :copyNumber := bpRec.copyNumber; :status := bpRec.status; :compTime := bpRec.compTime; :handle := bpRec.handle; :tag := bpRec.tag; :devtype := bpRec.deviceType; :bskey := bpRec.bskey; :media := bpRec.media; :bytes := bpRec.bytes; :compressed := bpRec.compressed; :site_key := bpRec.site_key; :vbkey := bpRec.vb_key; :ba_access := bpRec.ba_access; :ppl_pdb_id := bpRec.ppl_pdb_id; :ppl_cdb_dbid:= bpRec.ppl_cdb_dbid; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '1687' +ACTION :[1428] ' declare bpRec dbms_rcvman.bpRec_t; begin dbms_rcvman.getBackupPiece(bpRec => bpRec); if bpRec.compTime is null then bpRec.compTime := dbms_rcvman.stamp2date(bpRec.stamp); end if; if :first = 1 then :last_comp_time := bpRec.compTime; :first := 0; elsif bpRec.compTime > :last_comp_time then :last_comp_time := bpRec.compTime; end if; :recid := bpRec.recid; :stamp := bpRec.stamp; :key := bpRec.key; :setStamp := bpRec.setStamp; :setCount := bpRec.setCount; :bsType := bpRec.bsType; :pieceNumber := bpRec.pieceNumber; :copyNumber := bpRec.copyNumber; :status := bpRec.status; :compTime := bpRec.compTime; :handle := bpRec.handle; :tag := bpRec.tag; :devtype := bpRec.deviceType; :bskey := bpRec.bskey; :media := bpRec.media; :bytes := bpRec.bytes; :compressed := bpRec.compressed; :site_key := bpRec.site_key; :vbkey := bpRec.vb_key; :ba_access := bpRec.ba_access; :ppl_pdb_id := bpRec.ppl_pdb_id; :ppl_cdb_dbid:= bpRec.ppl_cdb_dbid; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[4] '1403' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '301' +ACTION :[47] 'begin dbms_rcvman.translateBpBsKeyCancel; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '395' +ACTION :[141] 'select fn.fnnam from x$kccfn fn where fn.fnfno = :dfnumber and fn.fntyp = 4 and fn.fnnam is not null and bitand(fn.fnflg, 4) != 4' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '681' +ACTION :[426] 'begin :rc := sys.dbms_backup_restore.validateDataFileCopy( recid => :recid, stamp => :stamp, fname => :fname, dfnumber => :dfnumber, resetlogs_change => :rstscn, creation_change => :crescn, checkpoint_change => :ckpscn, blksize => :blksize, signal => :sigerr, pdbForeignDbid => :pfdbid, pdbForeignCkpScn => :pfckpscn, pdbForeignAfn => :pfafn); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '641' +ACTION :[386] 'begin sys.dbms_application_info.set_session_longops (rindex => :1, slno => :2, op_name => :3, target => :4, context => :5, sofar => :6, totalwork => :7, target_desc => :8, units => 'Blocks'); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:42 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '641' +ACTION :[386] 'begin sys.dbms_application_info.set_session_longops (rindex => :1, slno => :2, op_name => :3, target => :4, context => :5, sofar => :6, totalwork => :7, target_desc => :8, units => 'Blocks'); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '616' +ACTION :[362] 'select controlfile_type, controlfile_change#, controlfile_sequence#, controlfile_created, decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(database_role, 'SNAPSHOT STANDBY', 1, 0) into :cftype, :cfscn, :cfseq, :cfcretime, :cfoffrrid, :cfsnapstby from v$database, v$controlfile_record_section offr where offr.type = 'OFFLINE RANGE'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '616' +ACTION :[362] 'select controlfile_type, controlfile_change#, controlfile_sequence#, controlfile_created, decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(database_role, 'SNAPSHOT STANDBY', 1, 0) into :cftype, :cfscn, :cfseq, :cfcretime, :cfoffrrid, :cfsnapstby from v$database, v$controlfile_record_section offr where offr.type = 'OFFLINE RANGE'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '468' +ACTION :[214] 'select nvl(max(al.recid), '0'),nvl(max(al.recid), 0) into :txtparmvalue, :parmvalue from v$archived_log al where al.status in ('X', 'A') and al.is_recovery_dest_file = 'YES' and al.creator = 'RMAN'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '2943' +ACTION :[2688] 'select db.version_time, db.controlfile_change#, db.controlfile_sequence#, dbinc.resetlogs_time, df.last_recid, tf.last_recid, ts.last_recid, rl.last_recid, rm.last_recid, dc.last_recid, al.last_recid, bp.last_recid, do.last_recid, offr.last_recid, pc.last_recid, bs.last_recid, ldbinc.resetlogs_change#, ldbinc.resetlogs_time, ic.last_recid, rt.last_recid, grsp.last_recid, nrsp.last_recid, bcr.last_recid, pdb.last_recid, pic.last_recid, decode(dc.records_used, 0, 0, dc.last_recid - dc.records_used + 1), decode(al.records_used, 0, 0, al.last_recid - al.records_used + 1), decode(bp.records_used, 0, 0, bp.last_recid - bp.records_used + 1), decode(bs.records_used, 0, 0, bs.last_recid - bs.records_used + 1), decode(do.records_used, 0, 0, do.last_recid - do.records_used + 1), decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(pc.records_used, 0, 0, pc.last_recid - pc.records_used + 1) into :vertime, :cfscn, :cfseq, :rltime, :dfhwm, :tfhwm, :tshwm, :rlhwm, :rmhwm, :dchwm, :alhwm, :bphwm, :dohwm, :offrhwm, :pchwm, :bshwm, :lrstscn, :lrsttime, :ichwm, :rthwm, :grsphwm, :nrsphwm, :bcrhwm, :pdbhwm, :pichwm, :dclwm, :allwm, :bplwm, :bslwm, :dolwm, :offrlwm, :pclwm from v$database db, v$controlfile_record_section df, v$controlfile_record_section tf, v$controlfile_record_section ts, v$controlfile_record_section rt, v$controlfile_record_section rl, v$controlfile_record_section rm, v$controlfile_record_section dc, v$controlfile_record_section al, v$controlfile_record_section bp, v$controlfile_record_section do, v$controlfile_record_section offr, v$controlfile_record_section pc, v$controlfile_record_section bs, v$controlfile_record_section ic, v$controlfile_record_section grsp, v$controlfile_record_section nrsp, v$controlfile_record_section bcr, v$controlfile_record_section pdb, v$controlfile_record_section pic, v$database_incarnation dbinc, v$database_incarnation ldbinc where df.type = 'DATAFILE' and tf.type = 'TEMPORARY FILENAME' and ts.type = 'TABLESPACE' and rt.type = 'REDO THREAD' and rl.type = 'REDO LOG' and rm.type = 'RMAN CONFIGURATION' and dc.type = 'DATAFILE COPY' and al.type = 'ARCHIVED LOG' and bp.type = 'BACKUP PIECE' and do.type = 'DELETED OBJECT' and offr.type = 'OFFLINE RANGE' and pc.type = 'PROXY COPY' and bs.type = 'BACKUP SET' and ic.type = 'DATABASE INCARNATION' and grsp.type = 'GUARANTEED RESTORE POINT' and nrsp.type = 'RESTORE POINT' and bcr.type = 'DATABASE BLOCK CORRUPTION' and pdb.type = 'PDB RECORD' and pic.type = 'PDBINC RECORD' and dbinc.incarnation#=db.recovery_target_incarnation# and ldbinc.incarnation#=db.last_open_incarnation#' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '459' +ACTION :[205] 'select /*+ rule */ round(sum(MBYTES_PROCESSED)), round(sum(INPUT_BYTES)), round(sum(OUTPUT_BYTES)) from V$RMAN_STATUS START WITH RECID = :row_id and STAMP = :row_stamp CONNECT BY PRIOR RECID = parent_recid' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '1019' +ACTION :[765] 'SELECT decode(count(distinct device_type) over (partition by RMAN_STATUS_RECID, RMAN_STATUS_STAMP), 1, first_value(device_type) over (partition by RMAN_STATUS_RECID,RMAN_STATUS_STAMP), 0, null,'*') device_type from GV$BACKUP_SYNC_IO where 'OUTPUT' = TYPE and rman_status_recid = :row_id and rman_status_stamp = :row_stamp UNION ALL SELECT decode(count(distinct device_type) over (partition by RMAN_STATUS_RECID,RMAN_STATUS_STAMP), 1, first_value(device_type) over (partition by RMAN_STATUS_RECID,RMAN_STATUS_STAMP), 0, null, '*') device_type from GV$BACKUP_ASYNC_IO where 'OUTPUT' = TYPE and rman_status_recid = :row_id and rman_status_stamp = :row_stamp' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '458' +ACTION :[203] 'begin sys.dbms_backup_restore.commitRmanStatusRow( row_id => :row_id, row_stamp => :row_stamp, mbytes => :mb, status => :status, ibytes => :ib, obytes => :ob, odevtype => :odevtype); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '538' +ACTION :[283] 'begin sys.dbms_backup_restore.createRmanStatusRow( level => :level, parent_id => :pid, parent_stamp => :pts, status => :status, command_id => :command_id, operation => :operation, row_id => :row_id, row_stamp => :row_stamp, flags => :flags); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '363' +ACTION :[109] 'select count(*) into :curbkup from x$kccdi di where bitand(di.diflg, 4096) = 4096 and bitand(di.difl2, 4) = 4' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '349' +ACTION :[96] 'select count(*) into :dbstate from x$kccrdi where location is not null and bitand(flags, 4) != 0' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '468' +ACTION :[214] 'select nvl(max(al.recid), '0'),nvl(max(al.recid), 0) into :txtparmvalue, :parmvalue from v$archived_log al where al.status in ('X', 'A') and al.is_recovery_dest_file = 'YES' and al.creator = 'RMAN'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '2943' +ACTION :[2688] 'select db.version_time, db.controlfile_change#, db.controlfile_sequence#, dbinc.resetlogs_time, df.last_recid, tf.last_recid, ts.last_recid, rl.last_recid, rm.last_recid, dc.last_recid, al.last_recid, bp.last_recid, do.last_recid, offr.last_recid, pc.last_recid, bs.last_recid, ldbinc.resetlogs_change#, ldbinc.resetlogs_time, ic.last_recid, rt.last_recid, grsp.last_recid, nrsp.last_recid, bcr.last_recid, pdb.last_recid, pic.last_recid, decode(dc.records_used, 0, 0, dc.last_recid - dc.records_used + 1), decode(al.records_used, 0, 0, al.last_recid - al.records_used + 1), decode(bp.records_used, 0, 0, bp.last_recid - bp.records_used + 1), decode(bs.records_used, 0, 0, bs.last_recid - bs.records_used + 1), decode(do.records_used, 0, 0, do.last_recid - do.records_used + 1), decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(pc.records_used, 0, 0, pc.last_recid - pc.records_used + 1) into :vertime, :cfscn, :cfseq, :rltime, :dfhwm, :tfhwm, :tshwm, :rlhwm, :rmhwm, :dchwm, :alhwm, :bphwm, :dohwm, :offrhwm, :pchwm, :bshwm, :lrstscn, :lrsttime, :ichwm, :rthwm, :grsphwm, :nrsphwm, :bcrhwm, :pdbhwm, :pichwm, :dclwm, :allwm, :bplwm, :bslwm, :dolwm, :offrlwm, :pclwm from v$database db, v$controlfile_record_section df, v$controlfile_record_section tf, v$controlfile_record_section ts, v$controlfile_record_section rt, v$controlfile_record_section rl, v$controlfile_record_section rm, v$controlfile_record_section dc, v$controlfile_record_section al, v$controlfile_record_section bp, v$controlfile_record_section do, v$controlfile_record_section offr, v$controlfile_record_section pc, v$controlfile_record_section bs, v$controlfile_record_section ic, v$controlfile_record_section grsp, v$controlfile_record_section nrsp, v$controlfile_record_section bcr, v$controlfile_record_section pdb, v$controlfile_record_section pic, v$database_incarnation dbinc, v$database_incarnation ldbinc where df.type = 'DATAFILE' and tf.type = 'TEMPORARY FILENAME' and ts.type = 'TABLESPACE' and rt.type = 'REDO THREAD' and rl.type = 'REDO LOG' and rm.type = 'RMAN CONFIGURATION' and dc.type = 'DATAFILE COPY' and al.type = 'ARCHIVED LOG' and bp.type = 'BACKUP PIECE' and do.type = 'DELETED OBJECT' and offr.type = 'OFFLINE RANGE' and pc.type = 'PROXY COPY' and bs.type = 'BACKUP SET' and ic.type = 'DATABASE INCARNATION' and grsp.type = 'GUARANTEED RESTORE POINT' and nrsp.type = 'RESTORE POINT' and bcr.type = 'DATABASE BLOCK CORRUPTION' and pdb.type = 'PDB RECORD' and pic.type = 'PDBINC RECORD' and dbinc.incarnation#=db.recovery_target_incarnation# and ldbinc.incarnation#=db.last_open_incarnation#' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '410' +ACTION :[155] 'declare transclause boolean := FALSE; begin if (:transclause > 0) then transclause := TRUE; end if; dbms_rcvman.resetAll(transclause => transclause); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '302' +ACTION :[48] 'begin dbms_rcvman.translateDataFile(:fno); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '1190' +ACTION :[935] 'declare dfRec dbms_rcvman.dfRec_t; begin dbms_rcvman.getDataFile(dfRec); :1 := dfRec.dfNumber; :2 := dfRec.dfCreationSCN; :3 := dfRec.dfCreationTime; :4 := dfRec.fileName; :5 := dfRec.tsName; :6 := nvl(dfRec.status, 0); :7 := dfRec.blockSize; :8 := 0; :9 := dfRec.blocks; :10 := nvl(dfRec.unrecovSCN, 0); :11 := dfRec.stopSCN; :12 := dfRec.readOnly; :13 := dfRec.rfNumber; :14 := dfRec.tsNumber; :15 := dfRec.inBackup; :16 := dfRec.auxName; :17 := dfRec.encrypt; :18 := dfRec.foreignDbid; :19 := dfRec.pluggedRonly; :20 := dfRec.pluginSCN; :21 := dfRec.pluginRlgSCN; :22 := dfRec.pluginRlgTime; :23 := dfRec.creation_thread; :24 := dfRec.creation_size; :25 := dfRec.pdbId; :26 := dfRec.pdbKey; :27 := dfRec.pdbName; :28 := dfRec.pdbClosed; :29 := dfRec.pdbForeignDbid; :30 := dfRec.pdbForeignCkpScn; :31 := dfRec.noBackupPdb; :32 := dfRec.pdbForeignAfn; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '1193' +ACTION :[935] 'declare dfRec dbms_rcvman.dfRec_t; begin dbms_rcvman.getDataFile(dfRec); :1 := dfRec.dfNumber; :2 := dfRec.dfCreationSCN; :3 := dfRec.dfCreationTime; :4 := dfRec.fileName; :5 := dfRec.tsName; :6 := nvl(dfRec.status, 0); :7 := dfRec.blockSize; :8 := 0; :9 := dfRec.blocks; :10 := nvl(dfRec.unrecovSCN, 0); :11 := dfRec.stopSCN; :12 := dfRec.readOnly; :13 := dfRec.rfNumber; :14 := dfRec.tsNumber; :15 := dfRec.inBackup; :16 := dfRec.auxName; :17 := dfRec.encrypt; :18 := dfRec.foreignDbid; :19 := dfRec.pluggedRonly; :20 := dfRec.pluginSCN; :21 := dfRec.pluginRlgSCN; :22 := dfRec.pluginRlgTime; :23 := dfRec.creation_thread; :24 := dfRec.creation_size; :25 := dfRec.pdbId; :26 := dfRec.pdbKey; :27 := dfRec.pdbName; :28 := dfRec.pdbClosed; :29 := dfRec.pdbForeignDbid; :30 := dfRec.pdbForeignCkpScn; :31 := dfRec.noBackupPdb; :32 := dfRec.pdbForeignAfn; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[4] '1403' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '363' +ACTION :[109] 'select count(*) into :curbkup from x$kccdi di where bitand(di.diflg, 4096) = 4096 and bitand(di.difl2, 4) = 4' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '349' +ACTION :[96] 'select count(*) into :dbstate from x$kccrdi where location is not null and bitand(flags, 4) != 0' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '410' +ACTION :[155] 'declare transclause boolean := FALSE; begin if (:transclause > 0) then transclause := TRUE; end if; dbms_rcvman.resetAll(transclause => transclause); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '294' +ACTION :[40] 'begin dbms_rcvman.setTag(:tagval); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '294' +ACTION :[40] 'begin dbms_rcvman.resetDeviceType; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '302' +ACTION :[48] 'begin dbms_rcvman.setDeviceType(:devtype); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '291' +ACTION :[37] 'begin dbms_rcvman.setFrom(NULL); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '297' +ACTION :[43] 'begin dbms_rcvman.setSparseness(NULL); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '565' +ACTION :[310] 'declare allRecords number; begin if :allRecords > 0 then allRecords := dbms_rcvman.TRUE#; else allRecords := dbms_rcvman.FALSE#; end if; dbms_rcvman.setComputeRecoveryActionMasks( containerMask => :containerMask, actionMask => :actionMask, allRecords => allRecords, availableMask => :availableMask); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '309' +ACTION :[55] 'begin dbms_rcvman.setRcvRecBackupAge(:backupAge); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '616' +ACTION :[362] 'select controlfile_type, controlfile_change#, controlfile_sequence#, controlfile_created, decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(database_role, 'SNAPSHOT STANDBY', 1, 0) into :cftype, :cfscn, :cfseq, :cfcretime, :cfoffrrid, :cfsnapstby from v$database, v$controlfile_record_section offr where offr.type = 'OFFLINE RANGE'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '787' +ACTION :[533] 'select decode(bitand(festa, 4096+128), 128, fests, 4096, fecps, 0), decode(bitand(festa, 4096+128), 128, 18446744073709551615, 4096, controlfile_change#, 0), decode(bitand(festa, 4096+128), 128, SYSDATE, 4096, controlfile_time, to_date('01/01/1988', 'MM/DD/YYYY', 'NLS_CALENDAR=Gregorian')), feofs, feonc_scn, to_date(nvl(feonc_tim, '01/01/88 00:01:01'), 'MM/DD/RR HH24:MI:SS', 'NLS_CALENDAR=Gregorian') into :cleanscn, :clean2scn, :clean2time, :offlscn, :onlscn, :onltime from x$kccfe, v$database where fenum = :fno and fedup = 1' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '1446' +ACTION :[1190] 'declare allCopies boolean; begin dbms_rcvman.resetthisBackupAge; if (:allCopies > 0) then allCopies := TRUE; else allCopies := FALSE; end if; :rc := dbms_rcvman.computeRecoveryActions( fno => :fno, crescn => :crescn, df_rlgscn => :rlgscn, df_rlgtime => :rlgtime, df_ckpscn => :ckpscn, offlscn => :offlscn, onlscn => :onlscn, onltime => :onltime, cleanscn => :cleanscn, clean2scn => :clean2scn, clean2time => :clean2time, allowfuzzy => FALSE, partial_rcv => FALSE, cf_scn => :cfscn, cf_cretime => :cfcretime, cf_offrrid => :cfoffrrid, allCopies => allCopies, df_cretime => :cretime, rmanCmd => :rmanCmd, foreignDbid => :foreignDbid, pluggedRonly => :pluggedRonly, pluginSCN => :pluginSCN, pluginRlgSCN => :pluginRlgSCN, pluginRlgTime => :pluginRlgTime, creation_thread => :creation_thread, creation_size => :creation_size, pdbId => :pdbId, pdbForeignDbid => :pdbForeignDbid ); if (:maxact > 0) then dbms_rcvman.trimRecoveryActions( maxActions => :maxact, containerMask => dbms_rcvman.proxyCopy_con_t + dbms_rcvman.imageCopy_con_t + dbms_rcvman.backupSet_con_t, actionMask => dbms_rcvman.full_act_t); end if; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '2412' +ACTION :[2156] 'declare rcvRec dbms_rcvman.rcvRec_t; begin :1 := dbms_rcvman.getRcvRec(funCode => :2, rcvRec => rcvRec, callAgain => :3); IF (rcvRec.type_con = dbms_rcvman.backupSet_con_t) THEN dbms_rcvman.findValidBackupSetRcvRec := rcvRec; END IF; :4 := rcvRec.type_con; :5 := rcvRec.key_con; :6 := rcvRec.recid_con; :7 := rcvRec.stamp_con; :8 := rcvRec.setStamp_con; :9 := rcvRec.setCount_con; :10 := rcvRec.bsRecid_con; :11 := rcvRec.bsStamp_con; :12 := rcvRec.bsKey_con; :13 := rcvRec.bsLevel_con; :14 := rcvRec.bsType_con; :15 := rcvRec.pieceCount_con; :16 := rcvRec.fileName_con; :17 := rcvRec.tag_con; :18 := rcvRec.copyNumber_con; :19 := rcvRec.status_con; :20 := rcvRec.blocks_con; :21 := rcvRec.blockSize_con; :22 := rcvRec.deviceType_con; :23 := rcvRec.compTime_con; :24 := rcvRec.cfCreationTime_con; :25 := rcvRec.pieceNumber_con; :26 := rcvRec.bpCompTime_con; :27 := rcvRec.bpCompressed_con; :28 := rcvRec.multi_section_con; :29 := rcvRec.type_act; :30 := rcvRec.fromScn_act; :31 := rcvRec.toSCN_act; :32 := rcvRec.toTime_act; :33 := rcvRec.rlgSCN_act; :34 := rcvRec.rlgTime_act; :35 := rcvRec.dbincKey_act; :36 := rcvRec.level_act; :37 := rcvRec.section_size_act; :38 := rcvRec.dfNumber_obj; :39 := rcvRec.dfCreationSCN_obj; :40 := rcvRec.cfSequence_obj; :41 := rcvRec.cfDate_obj; :42 := rcvRec.logSequence_obj; :43 := rcvRec.logThread_obj; :44 := rcvRec.logRlgSCN_obj; :45 := rcvRec.logRlgTime_obj; :46 := rcvRec.logLowSCN_obj; :47 := rcvRec.logLowTime_obj; :48 := rcvRec.logNextSCN_obj; :49 := rcvRec.logNextTime_obj; :50 := rcvRec.cfType_obj; :51 := rcvRec.keep_options; :52 := rcvRec.keep_until; :53 := rcvRec.afzSCN_act; :54 := rcvRec.rfzTime_act; :55 := rcvRec.rfzSCN_act; :56 := round(rcvRec.elapseSecs_con); :57 := rcvRec.media_con; :58 := rcvRec.isrdf_con; :59 := rcvRec.logTerminal_obj; :60 := rcvRec.site_key_con; :61 := rcvRec.foreignDbid_obj; :62 := rcvRec.pluggedRonly_obj; :63 := rcvRec.pluginSCN_obj; :64 := rcvRec.pluginRlgSCN_obj; :65 := rcvRec.pluginRlgTime_obj; :66 := rcvRec.sfDbUniqueName_obj; :67 := rcvRec.pdbKey_obj; :68 := rcvRec.sparse_backup_con; :69 := rcvRec.ppl_pdb_id_con; :70 := rcvRec.ppl_cdb_dbid_con; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '378' +ACTION :[123] 'begin dbms_rcvman.translateBackupPieceBsKey( startBskey => :bsKey, tag => :tag, statusMask => :statusMask); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '436' +ACTION :[181] 'begin dbms_rcvman.translateSeekBpBsKey( bsKey => :bsKey, pieceCount => :pieceCount, duplicates => :duplicates, deviceType => :deviceType, copyNumber => :copyNumber); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '1684' +ACTION :[1428] ' declare bpRec dbms_rcvman.bpRec_t; begin dbms_rcvman.getBackupPiece(bpRec => bpRec); if bpRec.compTime is null then bpRec.compTime := dbms_rcvman.stamp2date(bpRec.stamp); end if; if :first = 1 then :last_comp_time := bpRec.compTime; :first := 0; elsif bpRec.compTime > :last_comp_time then :last_comp_time := bpRec.compTime; end if; :recid := bpRec.recid; :stamp := bpRec.stamp; :key := bpRec.key; :setStamp := bpRec.setStamp; :setCount := bpRec.setCount; :bsType := bpRec.bsType; :pieceNumber := bpRec.pieceNumber; :copyNumber := bpRec.copyNumber; :status := bpRec.status; :compTime := bpRec.compTime; :handle := bpRec.handle; :tag := bpRec.tag; :devtype := bpRec.deviceType; :bskey := bpRec.bskey; :media := bpRec.media; :bytes := bpRec.bytes; :compressed := bpRec.compressed; :site_key := bpRec.site_key; :vbkey := bpRec.vb_key; :ba_access := bpRec.ba_access; :ppl_pdb_id := bpRec.ppl_pdb_id; :ppl_cdb_dbid:= bpRec.ppl_cdb_dbid; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '1687' +ACTION :[1428] ' declare bpRec dbms_rcvman.bpRec_t; begin dbms_rcvman.getBackupPiece(bpRec => bpRec); if bpRec.compTime is null then bpRec.compTime := dbms_rcvman.stamp2date(bpRec.stamp); end if; if :first = 1 then :last_comp_time := bpRec.compTime; :first := 0; elsif bpRec.compTime > :last_comp_time then :last_comp_time := bpRec.compTime; end if; :recid := bpRec.recid; :stamp := bpRec.stamp; :key := bpRec.key; :setStamp := bpRec.setStamp; :setCount := bpRec.setCount; :bsType := bpRec.bsType; :pieceNumber := bpRec.pieceNumber; :copyNumber := bpRec.copyNumber; :status := bpRec.status; :compTime := bpRec.compTime; :handle := bpRec.handle; :tag := bpRec.tag; :devtype := bpRec.deviceType; :bskey := bpRec.bskey; :media := bpRec.media; :bytes := bpRec.bytes; :compressed := bpRec.compressed; :site_key := bpRec.site_key; :vbkey := bpRec.vb_key; :ba_access := bpRec.ba_access; :ppl_pdb_id := bpRec.ppl_pdb_id; :ppl_cdb_dbid:= bpRec.ppl_cdb_dbid; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[4] '1403' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '301' +ACTION :[47] 'begin dbms_rcvman.translateBpBsKeyCancel; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '395' +ACTION :[141] 'select fn.fnnam from x$kccfn fn where fn.fnfno = :dfnumber and fn.fntyp = 4 and fn.fnnam is not null and bitand(fn.fnflg, 4) != 4' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '681' +ACTION :[426] 'begin :rc := sys.dbms_backup_restore.validateDataFileCopy( recid => :recid, stamp => :stamp, fname => :fname, dfnumber => :dfnumber, resetlogs_change => :rstscn, creation_change => :crescn, checkpoint_change => :ckpscn, blksize => :blksize, signal => :sigerr, pdbForeignDbid => :pfdbid, pdbForeignCkpScn => :pfckpscn, pdbForeignAfn => :pfafn); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '641' +ACTION :[386] 'begin sys.dbms_application_info.set_session_longops (rindex => :1, slno => :2, op_name => :3, target => :4, context => :5, sofar => :6, totalwork => :7, target_desc => :8, units => 'Blocks'); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:57 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:58 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:58 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '641' +ACTION :[386] 'begin sys.dbms_application_info.set_session_longops (rindex => :1, slno => :2, op_name => :3, target => :4, context => :5, sofar => :6, totalwork => :7, target_desc => :8, units => 'Blocks'); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '616' +ACTION :[362] 'select controlfile_type, controlfile_change#, controlfile_sequence#, controlfile_created, decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(database_role, 'SNAPSHOT STANDBY', 1, 0) into :cftype, :cfscn, :cfseq, :cfcretime, :cfoffrrid, :cfsnapstby from v$database, v$controlfile_record_section offr where offr.type = 'OFFLINE RANGE'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '616' +ACTION :[362] 'select controlfile_type, controlfile_change#, controlfile_sequence#, controlfile_created, decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(database_role, 'SNAPSHOT STANDBY', 1, 0) into :cftype, :cfscn, :cfseq, :cfcretime, :cfoffrrid, :cfsnapstby from v$database, v$controlfile_record_section offr where offr.type = 'OFFLINE RANGE'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '468' +ACTION :[214] 'select nvl(max(al.recid), '0'),nvl(max(al.recid), 0) into :txtparmvalue, :parmvalue from v$archived_log al where al.status in ('X', 'A') and al.is_recovery_dest_file = 'YES' and al.creator = 'RMAN'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '2943' +ACTION :[2688] 'select db.version_time, db.controlfile_change#, db.controlfile_sequence#, dbinc.resetlogs_time, df.last_recid, tf.last_recid, ts.last_recid, rl.last_recid, rm.last_recid, dc.last_recid, al.last_recid, bp.last_recid, do.last_recid, offr.last_recid, pc.last_recid, bs.last_recid, ldbinc.resetlogs_change#, ldbinc.resetlogs_time, ic.last_recid, rt.last_recid, grsp.last_recid, nrsp.last_recid, bcr.last_recid, pdb.last_recid, pic.last_recid, decode(dc.records_used, 0, 0, dc.last_recid - dc.records_used + 1), decode(al.records_used, 0, 0, al.last_recid - al.records_used + 1), decode(bp.records_used, 0, 0, bp.last_recid - bp.records_used + 1), decode(bs.records_used, 0, 0, bs.last_recid - bs.records_used + 1), decode(do.records_used, 0, 0, do.last_recid - do.records_used + 1), decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(pc.records_used, 0, 0, pc.last_recid - pc.records_used + 1) into :vertime, :cfscn, :cfseq, :rltime, :dfhwm, :tfhwm, :tshwm, :rlhwm, :rmhwm, :dchwm, :alhwm, :bphwm, :dohwm, :offrhwm, :pchwm, :bshwm, :lrstscn, :lrsttime, :ichwm, :rthwm, :grsphwm, :nrsphwm, :bcrhwm, :pdbhwm, :pichwm, :dclwm, :allwm, :bplwm, :bslwm, :dolwm, :offrlwm, :pclwm from v$database db, v$controlfile_record_section df, v$controlfile_record_section tf, v$controlfile_record_section ts, v$controlfile_record_section rt, v$controlfile_record_section rl, v$controlfile_record_section rm, v$controlfile_record_section dc, v$controlfile_record_section al, v$controlfile_record_section bp, v$controlfile_record_section do, v$controlfile_record_section offr, v$controlfile_record_section pc, v$controlfile_record_section bs, v$controlfile_record_section ic, v$controlfile_record_section grsp, v$controlfile_record_section nrsp, v$controlfile_record_section bcr, v$controlfile_record_section pdb, v$controlfile_record_section pic, v$database_incarnation dbinc, v$database_incarnation ldbinc where df.type = 'DATAFILE' and tf.type = 'TEMPORARY FILENAME' and ts.type = 'TABLESPACE' and rt.type = 'REDO THREAD' and rl.type = 'REDO LOG' and rm.type = 'RMAN CONFIGURATION' and dc.type = 'DATAFILE COPY' and al.type = 'ARCHIVED LOG' and bp.type = 'BACKUP PIECE' and do.type = 'DELETED OBJECT' and offr.type = 'OFFLINE RANGE' and pc.type = 'PROXY COPY' and bs.type = 'BACKUP SET' and ic.type = 'DATABASE INCARNATION' and grsp.type = 'GUARANTEED RESTORE POINT' and nrsp.type = 'RESTORE POINT' and bcr.type = 'DATABASE BLOCK CORRUPTION' and pdb.type = 'PDB RECORD' and pic.type = 'PDBINC RECORD' and dbinc.incarnation#=db.recovery_target_incarnation# and ldbinc.incarnation#=db.last_open_incarnation#' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '459' +ACTION :[205] 'select /*+ rule */ round(sum(MBYTES_PROCESSED)), round(sum(INPUT_BYTES)), round(sum(OUTPUT_BYTES)) from V$RMAN_STATUS START WITH RECID = :row_id and STAMP = :row_stamp CONNECT BY PRIOR RECID = parent_recid' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '1019' +ACTION :[765] 'SELECT decode(count(distinct device_type) over (partition by RMAN_STATUS_RECID, RMAN_STATUS_STAMP), 1, first_value(device_type) over (partition by RMAN_STATUS_RECID,RMAN_STATUS_STAMP), 0, null,'*') device_type from GV$BACKUP_SYNC_IO where 'OUTPUT' = TYPE and rman_status_recid = :row_id and rman_status_stamp = :row_stamp UNION ALL SELECT decode(count(distinct device_type) over (partition by RMAN_STATUS_RECID,RMAN_STATUS_STAMP), 1, first_value(device_type) over (partition by RMAN_STATUS_RECID,RMAN_STATUS_STAMP), 0, null, '*') device_type from GV$BACKUP_ASYNC_IO where 'OUTPUT' = TYPE and rman_status_recid = :row_id and rman_status_stamp = :row_stamp' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '458' +ACTION :[203] 'begin sys.dbms_backup_restore.commitRmanStatusRow( row_id => :row_id, row_stamp => :row_stamp, mbytes => :mb, status => :status, ibytes => :ib, obytes => :ob, odevtype => :odevtype); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '538' +ACTION :[283] 'begin sys.dbms_backup_restore.createRmanStatusRow( level => :level, parent_id => :pid, parent_stamp => :pts, status => :status, command_id => :command_id, operation => :operation, row_id => :row_id, row_stamp => :row_stamp, flags => :flags); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '363' +ACTION :[109] 'select count(*) into :curbkup from x$kccdi di where bitand(di.diflg, 4096) = 4096 and bitand(di.difl2, 4) = 4' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '349' +ACTION :[96] 'select count(*) into :dbstate from x$kccrdi where location is not null and bitand(flags, 4) != 0' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '468' +ACTION :[214] 'select nvl(max(al.recid), '0'),nvl(max(al.recid), 0) into :txtparmvalue, :parmvalue from v$archived_log al where al.status in ('X', 'A') and al.is_recovery_dest_file = 'YES' and al.creator = 'RMAN'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '2943' +ACTION :[2688] 'select db.version_time, db.controlfile_change#, db.controlfile_sequence#, dbinc.resetlogs_time, df.last_recid, tf.last_recid, ts.last_recid, rl.last_recid, rm.last_recid, dc.last_recid, al.last_recid, bp.last_recid, do.last_recid, offr.last_recid, pc.last_recid, bs.last_recid, ldbinc.resetlogs_change#, ldbinc.resetlogs_time, ic.last_recid, rt.last_recid, grsp.last_recid, nrsp.last_recid, bcr.last_recid, pdb.last_recid, pic.last_recid, decode(dc.records_used, 0, 0, dc.last_recid - dc.records_used + 1), decode(al.records_used, 0, 0, al.last_recid - al.records_used + 1), decode(bp.records_used, 0, 0, bp.last_recid - bp.records_used + 1), decode(bs.records_used, 0, 0, bs.last_recid - bs.records_used + 1), decode(do.records_used, 0, 0, do.last_recid - do.records_used + 1), decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(pc.records_used, 0, 0, pc.last_recid - pc.records_used + 1) into :vertime, :cfscn, :cfseq, :rltime, :dfhwm, :tfhwm, :tshwm, :rlhwm, :rmhwm, :dchwm, :alhwm, :bphwm, :dohwm, :offrhwm, :pchwm, :bshwm, :lrstscn, :lrsttime, :ichwm, :rthwm, :grsphwm, :nrsphwm, :bcrhwm, :pdbhwm, :pichwm, :dclwm, :allwm, :bplwm, :bslwm, :dolwm, :offrlwm, :pclwm from v$database db, v$controlfile_record_section df, v$controlfile_record_section tf, v$controlfile_record_section ts, v$controlfile_record_section rt, v$controlfile_record_section rl, v$controlfile_record_section rm, v$controlfile_record_section dc, v$controlfile_record_section al, v$controlfile_record_section bp, v$controlfile_record_section do, v$controlfile_record_section offr, v$controlfile_record_section pc, v$controlfile_record_section bs, v$controlfile_record_section ic, v$controlfile_record_section grsp, v$controlfile_record_section nrsp, v$controlfile_record_section bcr, v$controlfile_record_section pdb, v$controlfile_record_section pic, v$database_incarnation dbinc, v$database_incarnation ldbinc where df.type = 'DATAFILE' and tf.type = 'TEMPORARY FILENAME' and ts.type = 'TABLESPACE' and rt.type = 'REDO THREAD' and rl.type = 'REDO LOG' and rm.type = 'RMAN CONFIGURATION' and dc.type = 'DATAFILE COPY' and al.type = 'ARCHIVED LOG' and bp.type = 'BACKUP PIECE' and do.type = 'DELETED OBJECT' and offr.type = 'OFFLINE RANGE' and pc.type = 'PROXY COPY' and bs.type = 'BACKUP SET' and ic.type = 'DATABASE INCARNATION' and grsp.type = 'GUARANTEED RESTORE POINT' and nrsp.type = 'RESTORE POINT' and bcr.type = 'DATABASE BLOCK CORRUPTION' and pdb.type = 'PDB RECORD' and pic.type = 'PDBINC RECORD' and dbinc.incarnation#=db.recovery_target_incarnation# and ldbinc.incarnation#=db.last_open_incarnation#' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '410' +ACTION :[155] 'declare transclause boolean := FALSE; begin if (:transclause > 0) then transclause := TRUE; end if; dbms_rcvman.resetAll(transclause => transclause); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '302' +ACTION :[48] 'begin dbms_rcvman.translateDataFile(:fno); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '1190' +ACTION :[935] 'declare dfRec dbms_rcvman.dfRec_t; begin dbms_rcvman.getDataFile(dfRec); :1 := dfRec.dfNumber; :2 := dfRec.dfCreationSCN; :3 := dfRec.dfCreationTime; :4 := dfRec.fileName; :5 := dfRec.tsName; :6 := nvl(dfRec.status, 0); :7 := dfRec.blockSize; :8 := 0; :9 := dfRec.blocks; :10 := nvl(dfRec.unrecovSCN, 0); :11 := dfRec.stopSCN; :12 := dfRec.readOnly; :13 := dfRec.rfNumber; :14 := dfRec.tsNumber; :15 := dfRec.inBackup; :16 := dfRec.auxName; :17 := dfRec.encrypt; :18 := dfRec.foreignDbid; :19 := dfRec.pluggedRonly; :20 := dfRec.pluginSCN; :21 := dfRec.pluginRlgSCN; :22 := dfRec.pluginRlgTime; :23 := dfRec.creation_thread; :24 := dfRec.creation_size; :25 := dfRec.pdbId; :26 := dfRec.pdbKey; :27 := dfRec.pdbName; :28 := dfRec.pdbClosed; :29 := dfRec.pdbForeignDbid; :30 := dfRec.pdbForeignCkpScn; :31 := dfRec.noBackupPdb; :32 := dfRec.pdbForeignAfn; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '1193' +ACTION :[935] 'declare dfRec dbms_rcvman.dfRec_t; begin dbms_rcvman.getDataFile(dfRec); :1 := dfRec.dfNumber; :2 := dfRec.dfCreationSCN; :3 := dfRec.dfCreationTime; :4 := dfRec.fileName; :5 := dfRec.tsName; :6 := nvl(dfRec.status, 0); :7 := dfRec.blockSize; :8 := 0; :9 := dfRec.blocks; :10 := nvl(dfRec.unrecovSCN, 0); :11 := dfRec.stopSCN; :12 := dfRec.readOnly; :13 := dfRec.rfNumber; :14 := dfRec.tsNumber; :15 := dfRec.inBackup; :16 := dfRec.auxName; :17 := dfRec.encrypt; :18 := dfRec.foreignDbid; :19 := dfRec.pluggedRonly; :20 := dfRec.pluginSCN; :21 := dfRec.pluginRlgSCN; :22 := dfRec.pluginRlgTime; :23 := dfRec.creation_thread; :24 := dfRec.creation_size; :25 := dfRec.pdbId; :26 := dfRec.pdbKey; :27 := dfRec.pdbName; :28 := dfRec.pdbClosed; :29 := dfRec.pdbForeignDbid; :30 := dfRec.pdbForeignCkpScn; :31 := dfRec.noBackupPdb; :32 := dfRec.pdbForeignAfn; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[4] '1403' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '363' +ACTION :[109] 'select count(*) into :curbkup from x$kccdi di where bitand(di.diflg, 4096) = 4096 and bitand(di.difl2, 4) = 4' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '349' +ACTION :[96] 'select count(*) into :dbstate from x$kccrdi where location is not null and bitand(flags, 4) != 0' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '410' +ACTION :[155] 'declare transclause boolean := FALSE; begin if (:transclause > 0) then transclause := TRUE; end if; dbms_rcvman.resetAll(transclause => transclause); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '294' +ACTION :[40] 'begin dbms_rcvman.setTag(:tagval); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '294' +ACTION :[40] 'begin dbms_rcvman.resetDeviceType; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '302' +ACTION :[48] 'begin dbms_rcvman.setDeviceType(:devtype); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '291' +ACTION :[37] 'begin dbms_rcvman.setFrom(NULL); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '297' +ACTION :[43] 'begin dbms_rcvman.setSparseness(NULL); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '565' +ACTION :[310] 'declare allRecords number; begin if :allRecords > 0 then allRecords := dbms_rcvman.TRUE#; else allRecords := dbms_rcvman.FALSE#; end if; dbms_rcvman.setComputeRecoveryActionMasks( containerMask => :containerMask, actionMask => :actionMask, allRecords => allRecords, availableMask => :availableMask); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '309' +ACTION :[55] 'begin dbms_rcvman.setRcvRecBackupAge(:backupAge); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '616' +ACTION :[362] 'select controlfile_type, controlfile_change#, controlfile_sequence#, controlfile_created, decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(database_role, 'SNAPSHOT STANDBY', 1, 0) into :cftype, :cfscn, :cfseq, :cfcretime, :cfoffrrid, :cfsnapstby from v$database, v$controlfile_record_section offr where offr.type = 'OFFLINE RANGE'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '787' +ACTION :[533] 'select decode(bitand(festa, 4096+128), 128, fests, 4096, fecps, 0), decode(bitand(festa, 4096+128), 128, 18446744073709551615, 4096, controlfile_change#, 0), decode(bitand(festa, 4096+128), 128, SYSDATE, 4096, controlfile_time, to_date('01/01/1988', 'MM/DD/YYYY', 'NLS_CALENDAR=Gregorian')), feofs, feonc_scn, to_date(nvl(feonc_tim, '01/01/88 00:01:01'), 'MM/DD/RR HH24:MI:SS', 'NLS_CALENDAR=Gregorian') into :cleanscn, :clean2scn, :clean2time, :offlscn, :onlscn, :onltime from x$kccfe, v$database where fenum = :fno and fedup = 1' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '1446' +ACTION :[1190] 'declare allCopies boolean; begin dbms_rcvman.resetthisBackupAge; if (:allCopies > 0) then allCopies := TRUE; else allCopies := FALSE; end if; :rc := dbms_rcvman.computeRecoveryActions( fno => :fno, crescn => :crescn, df_rlgscn => :rlgscn, df_rlgtime => :rlgtime, df_ckpscn => :ckpscn, offlscn => :offlscn, onlscn => :onlscn, onltime => :onltime, cleanscn => :cleanscn, clean2scn => :clean2scn, clean2time => :clean2time, allowfuzzy => FALSE, partial_rcv => FALSE, cf_scn => :cfscn, cf_cretime => :cfcretime, cf_offrrid => :cfoffrrid, allCopies => allCopies, df_cretime => :cretime, rmanCmd => :rmanCmd, foreignDbid => :foreignDbid, pluggedRonly => :pluggedRonly, pluginSCN => :pluginSCN, pluginRlgSCN => :pluginRlgSCN, pluginRlgTime => :pluginRlgTime, creation_thread => :creation_thread, creation_size => :creation_size, pdbId => :pdbId, pdbForeignDbid => :pdbForeignDbid ); if (:maxact > 0) then dbms_rcvman.trimRecoveryActions( maxActions => :maxact, containerMask => dbms_rcvman.proxyCopy_con_t + dbms_rcvman.imageCopy_con_t + dbms_rcvman.backupSet_con_t, actionMask => dbms_rcvman.full_act_t); end if; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '2412' +ACTION :[2156] 'declare rcvRec dbms_rcvman.rcvRec_t; begin :1 := dbms_rcvman.getRcvRec(funCode => :2, rcvRec => rcvRec, callAgain => :3); IF (rcvRec.type_con = dbms_rcvman.backupSet_con_t) THEN dbms_rcvman.findValidBackupSetRcvRec := rcvRec; END IF; :4 := rcvRec.type_con; :5 := rcvRec.key_con; :6 := rcvRec.recid_con; :7 := rcvRec.stamp_con; :8 := rcvRec.setStamp_con; :9 := rcvRec.setCount_con; :10 := rcvRec.bsRecid_con; :11 := rcvRec.bsStamp_con; :12 := rcvRec.bsKey_con; :13 := rcvRec.bsLevel_con; :14 := rcvRec.bsType_con; :15 := rcvRec.pieceCount_con; :16 := rcvRec.fileName_con; :17 := rcvRec.tag_con; :18 := rcvRec.copyNumber_con; :19 := rcvRec.status_con; :20 := rcvRec.blocks_con; :21 := rcvRec.blockSize_con; :22 := rcvRec.deviceType_con; :23 := rcvRec.compTime_con; :24 := rcvRec.cfCreationTime_con; :25 := rcvRec.pieceNumber_con; :26 := rcvRec.bpCompTime_con; :27 := rcvRec.bpCompressed_con; :28 := rcvRec.multi_section_con; :29 := rcvRec.type_act; :30 := rcvRec.fromScn_act; :31 := rcvRec.toSCN_act; :32 := rcvRec.toTime_act; :33 := rcvRec.rlgSCN_act; :34 := rcvRec.rlgTime_act; :35 := rcvRec.dbincKey_act; :36 := rcvRec.level_act; :37 := rcvRec.section_size_act; :38 := rcvRec.dfNumber_obj; :39 := rcvRec.dfCreationSCN_obj; :40 := rcvRec.cfSequence_obj; :41 := rcvRec.cfDate_obj; :42 := rcvRec.logSequence_obj; :43 := rcvRec.logThread_obj; :44 := rcvRec.logRlgSCN_obj; :45 := rcvRec.logRlgTime_obj; :46 := rcvRec.logLowSCN_obj; :47 := rcvRec.logLowTime_obj; :48 := rcvRec.logNextSCN_obj; :49 := rcvRec.logNextTime_obj; :50 := rcvRec.cfType_obj; :51 := rcvRec.keep_options; :52 := rcvRec.keep_until; :53 := rcvRec.afzSCN_act; :54 := rcvRec.rfzTime_act; :55 := rcvRec.rfzSCN_act; :56 := round(rcvRec.elapseSecs_con); :57 := rcvRec.media_con; :58 := rcvRec.isrdf_con; :59 := rcvRec.logTerminal_obj; :60 := rcvRec.site_key_con; :61 := rcvRec.foreignDbid_obj; :62 := rcvRec.pluggedRonly_obj; :63 := rcvRec.pluginSCN_obj; :64 := rcvRec.pluginRlgSCN_obj; :65 := rcvRec.pluginRlgTime_obj; :66 := rcvRec.sfDbUniqueName_obj; :67 := rcvRec.pdbKey_obj; :68 := rcvRec.sparse_backup_con; :69 := rcvRec.ppl_pdb_id_con; :70 := rcvRec.ppl_cdb_dbid_con; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '378' +ACTION :[123] 'begin dbms_rcvman.translateBackupPieceBsKey( startBskey => :bsKey, tag => :tag, statusMask => :statusMask); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '436' +ACTION :[181] 'begin dbms_rcvman.translateSeekBpBsKey( bsKey => :bsKey, pieceCount => :pieceCount, duplicates => :duplicates, deviceType => :deviceType, copyNumber => :copyNumber); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '1684' +ACTION :[1428] ' declare bpRec dbms_rcvman.bpRec_t; begin dbms_rcvman.getBackupPiece(bpRec => bpRec); if bpRec.compTime is null then bpRec.compTime := dbms_rcvman.stamp2date(bpRec.stamp); end if; if :first = 1 then :last_comp_time := bpRec.compTime; :first := 0; elsif bpRec.compTime > :last_comp_time then :last_comp_time := bpRec.compTime; end if; :recid := bpRec.recid; :stamp := bpRec.stamp; :key := bpRec.key; :setStamp := bpRec.setStamp; :setCount := bpRec.setCount; :bsType := bpRec.bsType; :pieceNumber := bpRec.pieceNumber; :copyNumber := bpRec.copyNumber; :status := bpRec.status; :compTime := bpRec.compTime; :handle := bpRec.handle; :tag := bpRec.tag; :devtype := bpRec.deviceType; :bskey := bpRec.bskey; :media := bpRec.media; :bytes := bpRec.bytes; :compressed := bpRec.compressed; :site_key := bpRec.site_key; :vbkey := bpRec.vb_key; :ba_access := bpRec.ba_access; :ppl_pdb_id := bpRec.ppl_pdb_id; :ppl_cdb_dbid:= bpRec.ppl_cdb_dbid; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '1687' +ACTION :[1428] ' declare bpRec dbms_rcvman.bpRec_t; begin dbms_rcvman.getBackupPiece(bpRec => bpRec); if bpRec.compTime is null then bpRec.compTime := dbms_rcvman.stamp2date(bpRec.stamp); end if; if :first = 1 then :last_comp_time := bpRec.compTime; :first := 0; elsif bpRec.compTime > :last_comp_time then :last_comp_time := bpRec.compTime; end if; :recid := bpRec.recid; :stamp := bpRec.stamp; :key := bpRec.key; :setStamp := bpRec.setStamp; :setCount := bpRec.setCount; :bsType := bpRec.bsType; :pieceNumber := bpRec.pieceNumber; :copyNumber := bpRec.copyNumber; :status := bpRec.status; :compTime := bpRec.compTime; :handle := bpRec.handle; :tag := bpRec.tag; :devtype := bpRec.deviceType; :bskey := bpRec.bskey; :media := bpRec.media; :bytes := bpRec.bytes; :compressed := bpRec.compressed; :site_key := bpRec.site_key; :vbkey := bpRec.vb_key; :ba_access := bpRec.ba_access; :ppl_pdb_id := bpRec.ppl_pdb_id; :ppl_cdb_dbid:= bpRec.ppl_cdb_dbid; end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[4] '1403' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '301' +ACTION :[47] 'begin dbms_rcvman.translateBpBsKeyCancel; end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '395' +ACTION :[141] 'select fn.fnnam from x$kccfn fn where fn.fnfno = :dfnumber and fn.fntyp = 4 and fn.fnnam is not null and bitand(fn.fnflg, 4) != 4' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '681' +ACTION :[426] 'begin :rc := sys.dbms_backup_restore.validateDataFileCopy( recid => :recid, stamp => :stamp, fname => :fname, dfnumber => :dfnumber, resetlogs_change => :rstscn, creation_change => :crescn, checkpoint_change => :ckpscn, blksize => :blksize, signal => :sigerr, pdbForeignDbid => :pfdbid, pdbForeignCkpScn => :pfckpscn, pdbForeignAfn => :pfafn); end; ' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '641' +ACTION :[386] 'begin sys.dbms_application_info.set_session_longops (rindex => :1, slno => :2, op_name => :3, target => :4, context => :5, sofar => :6, totalwork => :7, target_desc => :8, units => 'Blocks'); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:58:59 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:00 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:00 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:00 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:00 2020 -04:00 +LENGTH : '641' +ACTION :[386] 'begin sys.dbms_application_info.set_session_longops (rindex => :1, slno => :2, op_name => :3, target => :4, context => :5, sofar => :6, totalwork => :7, target_desc => :8, units => 'Blocks'); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:00 2020 -04:00 +LENGTH : '616' +ACTION :[362] 'select controlfile_type, controlfile_change#, controlfile_sequence#, controlfile_created, decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(database_role, 'SNAPSHOT STANDBY', 1, 0) into :cftype, :cfscn, :cfseq, :cfcretime, :cfoffrrid, :cfsnapstby from v$database, v$controlfile_record_section offr where offr.type = 'OFFLINE RANGE'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:59:00 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:59:00 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:59:00 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:00 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:00 2020 -04:00 +LENGTH : '616' +ACTION :[362] 'select controlfile_type, controlfile_change#, controlfile_sequence#, controlfile_created, decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(database_role, 'SNAPSHOT STANDBY', 1, 0) into :cftype, :cfscn, :cfseq, :cfcretime, :cfoffrrid, :cfsnapstby from v$database, v$controlfile_record_section offr where offr.type = 'OFFLINE RANGE'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:59:00 2020 -04:00 +LENGTH : '468' +ACTION :[214] 'select nvl(max(al.recid), '0'),nvl(max(al.recid), 0) into :txtparmvalue, :parmvalue from v$archived_log al where al.status in ('X', 'A') and al.is_recovery_dest_file = 'YES' and al.creator = 'RMAN'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:59:00 2020 -04:00 +LENGTH : '2943' +ACTION :[2688] 'select db.version_time, db.controlfile_change#, db.controlfile_sequence#, dbinc.resetlogs_time, df.last_recid, tf.last_recid, ts.last_recid, rl.last_recid, rm.last_recid, dc.last_recid, al.last_recid, bp.last_recid, do.last_recid, offr.last_recid, pc.last_recid, bs.last_recid, ldbinc.resetlogs_change#, ldbinc.resetlogs_time, ic.last_recid, rt.last_recid, grsp.last_recid, nrsp.last_recid, bcr.last_recid, pdb.last_recid, pic.last_recid, decode(dc.records_used, 0, 0, dc.last_recid - dc.records_used + 1), decode(al.records_used, 0, 0, al.last_recid - al.records_used + 1), decode(bp.records_used, 0, 0, bp.last_recid - bp.records_used + 1), decode(bs.records_used, 0, 0, bs.last_recid - bs.records_used + 1), decode(do.records_used, 0, 0, do.last_recid - do.records_used + 1), decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(pc.records_used, 0, 0, pc.last_recid - pc.records_used + 1) into :vertime, :cfscn, :cfseq, :rltime, :dfhwm, :tfhwm, :tshwm, :rlhwm, :rmhwm, :dchwm, :alhwm, :bphwm, :dohwm, :offrhwm, :pchwm, :bshwm, :lrstscn, :lrsttime, :ichwm, :rthwm, :grsphwm, :nrsphwm, :bcrhwm, :pdbhwm, :pichwm, :dclwm, :allwm, :bplwm, :bslwm, :dolwm, :offrlwm, :pclwm from v$database db, v$controlfile_record_section df, v$controlfile_record_section tf, v$controlfile_record_section ts, v$controlfile_record_section rt, v$controlfile_record_section rl, v$controlfile_record_section rm, v$controlfile_record_section dc, v$controlfile_record_section al, v$controlfile_record_section bp, v$controlfile_record_section do, v$controlfile_record_section offr, v$controlfile_record_section pc, v$controlfile_record_section bs, v$controlfile_record_section ic, v$controlfile_record_section grsp, v$controlfile_record_section nrsp, v$controlfile_record_section bcr, v$controlfile_record_section pdb, v$controlfile_record_section pic, v$database_incarnation dbinc, v$database_incarnation ldbinc where df.type = 'DATAFILE' and tf.type = 'TEMPORARY FILENAME' and ts.type = 'TABLESPACE' and rt.type = 'REDO THREAD' and rl.type = 'REDO LOG' and rm.type = 'RMAN CONFIGURATION' and dc.type = 'DATAFILE COPY' and al.type = 'ARCHIVED LOG' and bp.type = 'BACKUP PIECE' and do.type = 'DELETED OBJECT' and offr.type = 'OFFLINE RANGE' and pc.type = 'PROXY COPY' and bs.type = 'BACKUP SET' and ic.type = 'DATABASE INCARNATION' and grsp.type = 'GUARANTEED RESTORE POINT' and nrsp.type = 'RESTORE POINT' and bcr.type = 'DATABASE BLOCK CORRUPTION' and pdb.type = 'PDB RECORD' and pic.type = 'PDBINC RECORD' and dbinc.incarnation#=db.recovery_target_incarnation# and ldbinc.incarnation#=db.last_open_incarnation#' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:59:00 2020 -04:00 +LENGTH : '459' +ACTION :[205] 'select /*+ rule */ round(sum(MBYTES_PROCESSED)), round(sum(INPUT_BYTES)), round(sum(OUTPUT_BYTES)) from V$RMAN_STATUS START WITH RECID = :row_id and STAMP = :row_stamp CONNECT BY PRIOR RECID = parent_recid' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:59:00 2020 -04:00 +LENGTH : '1019' +ACTION :[765] 'SELECT decode(count(distinct device_type) over (partition by RMAN_STATUS_RECID, RMAN_STATUS_STAMP), 1, first_value(device_type) over (partition by RMAN_STATUS_RECID,RMAN_STATUS_STAMP), 0, null,'*') device_type from GV$BACKUP_SYNC_IO where 'OUTPUT' = TYPE and rman_status_recid = :row_id and rman_status_stamp = :row_stamp UNION ALL SELECT decode(count(distinct device_type) over (partition by RMAN_STATUS_RECID,RMAN_STATUS_STAMP), 1, first_value(device_type) over (partition by RMAN_STATUS_RECID,RMAN_STATUS_STAMP), 0, null, '*') device_type from GV$BACKUP_ASYNC_IO where 'OUTPUT' = TYPE and rman_status_recid = :row_id and rman_status_stamp = :row_stamp' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '458' +ACTION :[203] 'begin sys.dbms_backup_restore.commitRmanStatusRow( row_id => :row_id, row_stamp => :row_stamp, mbytes => :mb, status => :status, ibytes => :ib, obytes => :ob, odevtype => :odevtype); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '641' +ACTION :[386] 'begin sys.dbms_application_info.set_session_longops (rindex => :1, slno => :2, op_name => :3, target => :4, context => :5, sofar => :6, totalwork => :7, target_desc => :8, units => 'Blocks'); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '422' +ACTION :[168] 'select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '325' +ACTION :[72] 'select value into :vcomp_txt from v$parameter where name = 'compatible'' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '720' +ACTION :[465] 'declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + +Wed Oct 7 10:59:01 2020 -04:00 +LENGTH : '466' +ACTION :[211] 'begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[8] '39496799' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '47' + diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13794_20201007105804045603856206.aud.log-expected.json b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13794_20201007105804045603856206.aud.log-expected.json new file mode 100644 index 00000000000..c06bdac6797 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_13794_20201007105804045603856206.aud.log-expected.json @@ -0,0 +1,3402 @@ +[ + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 577, + "oracle.database_audit.action": "CONNECT", + "oracle.database_audit.action_number": "100", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 261, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 885, + "oracle.database_audit.action": "select sys_context('userenv', 'con_id'), sys_context('userenv', 'cdb_name'), sys_context('userenv', 'con_name'), case when sys_context('userenv', 'is_application_root') = 'YES' then 1 else 0 end into :pdbid, :cdbname, :pdbname, :approot from dual", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 500, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1432, + "oracle.database_audit.action": "select decode(upper(value), 'TRUE', 1, 0) into :parmvalue from v$parameter where lower(name) = '_pdb_name_case_sensitive", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 380, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1859, + "oracle.database_audit.action": "begin dbms_backup_restore.set_charset('AL32UTF8');end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 308, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 2214, + "oracle.database_audit.action": "select distinct my.sid, sex.serial from v$mystat my, x$ksusex sex where sex.sid = my.sid", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 341, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 2602, + "oracle.database_audit.action": "select instance_name, instance_number, decode(parallel, 'YES', 1, 0) parallel from v$instance", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 355, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 3004, + "oracle.database_audit.action": "select instance_name, instance_number, decode(parallel, 'YES', 1, 0) parallel from v$instance", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 355, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 3406, + "oracle.database_audit.action": "select distinct my.sid, sex.serial from v$mystat my, x$ksusex sex where sex.sid = my.sid", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 341, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 3794, + "oracle.database_audit.action": "select instance_name, instance_number, decode(parallel, 'YES', 1, 0) parallel from v$instance", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 355, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 4196, + "oracle.database_audit.action": "select instance_name, instance_number, decode(parallel, 'YES', 1, 0) parallel from v$instance", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 355, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 4598, + "oracle.database_audit.action": "alter session set remote_dependencies_mode = signature", + "oracle.database_audit.action_number": "42", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 308, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 4953, + "oracle.database_audit.action": "select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 422, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 5422, + "oracle.database_audit.action": "select value into :vcomp_txt from v$parameter where name = 'compatible", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 325, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 5794, + "oracle.database_audit.action": "declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 720, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 6561, + "oracle.database_audit.action": "begin :vsn_min := dbms_backup_restore.protocol_version_number_min; :rel_min := dbms_backup_restore.protocol_release_number_min; :upd_min := dbms_backup_restore.protocol_update_number_min; :cmp_min := 0; :vsn_max := dbms_backup_restore.protocol_version_number_max; :rel_max := dbms_backup_restore.protocol_release_number_max; :upd_max := dbms_backup_restore.protocol_update_number_max; :cmp_max := 0; :pkg_vsn := to_char(:vsn_max, 'fm00')||'.'|| to_char(:rel_max, 'fm00')||'.'|| to_char(:upd_max, 'fm00')||'.'|| to_char(:cmp_max, 'fm00'); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 798, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 7406, + "oracle.database_audit.action": "begin :cmp_min := dbms_backup_restore.protocol_component_number_min; :cmp_max := dbms_backup_restore.protocol_component_number_max; :pkg_vsn := to_char(:vsn_max, 'fm00')||'.'|| to_char(:rel_max, 'fm00')||'.'|| to_char(:upd_max, 'fm00')||'.'|| to_char(:cmp_max, 'fm00'); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 530, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 7983, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 8521, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 9059, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 9597, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 10135, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 10673, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 11211, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 11749, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 12287, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 12825, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 13363, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 13901, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 14439, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 14977, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 15515, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 16053, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 16591, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 17129, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 17667, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 18205, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 18743, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 19281, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 19819, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 20357, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 20895, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 21433, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 21971, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 22509, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 23047, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 23585, + "oracle.database_audit.action": "declare vsn varchar2(20); begin vsn := dbms_rcvman.getPackageVersion; :pkg_vsn := vsn; if vsn is not null then :pkg_vsnub4 := to_number(substr(vsn,1,2) || substr(vsn,4,2) || substr(vsn,7,2) || nvl(substr(vsn,10,2),'00')); end if; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 491, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 24123, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanStatusRow( level => :level, parent_id => :pid, parent_stamp => :pts, status => :status, command_id => :command_id, operation => :operation, row_id => :row_id, row_stamp => :row_stamp, flags => :flags); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 538, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 24708, + "oracle.database_audit.action": "select db.name, dbinc.resetlogs_time, dbinc.resetlogs_change#, db.dbid, rpad(db.name, 8, 'x'), dbinc.prior_resetlogs_time, dbinc.prior_resetlogs_change#, primary_db_unique_name, db.con_dbid into :dbname, :rltime, :rlscn, :fhdbi, :pdbname, :parent_rltime, :parent_rlscn, :prim_dbuname, :con_dbid from v$database db, v$database_incarnation dbinc where dbinc.status='CURRENT", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 626, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 25381, + "oracle.database_audit.action": "select nvl(max(cpmid), '0'), nvl(max(cpmid), 0) into :txtparmvalue, :parmvalue from x$kcccp where cpsta in (2,3)", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 366, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 25794, + "oracle.database_audit.action": "select upper(value) into :parmvalue from v$parameter where lower(name) = 'db_unique_name", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 342, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 26183, + "oracle.database_audit.action": "select count(*) into :dbstate from v$parameter where lower(name) = '_dummy_instance' and upper(value) = 'TRUE", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 364, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 26594, + "oracle.database_audit.action": "select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Parallel backup and recovery", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 365, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 27006, + "oracle.database_audit.action": "select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Incremental backup and recovery", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 368, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 27421, + "oracle.database_audit.action": "select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Duplexed backups", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 352, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 27820, + "oracle.database_audit.action": "select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Block Media Recovery", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 357, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 28224, + "oracle.database_audit.action": "select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Point-in-time tablespace recovery", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 370, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 28641, + "oracle.database_audit.action": "select decode(value, 'TRUE', 1, 0) into :dbstate from v$option where parameter = 'Backup Encryption", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 354, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 29042, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 466, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 29555, + "oracle.database_audit.action": "select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 422, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 30024, + "oracle.database_audit.action": "select value into :vcomp_txt from v$parameter where name = 'compatible", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 325, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 30396, + "oracle.database_audit.action": "declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 720, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 31163, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 466, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 31676, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 466, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 32189, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 466, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 32702, + "oracle.database_audit.action": "select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 422, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 33171, + "oracle.database_audit.action": "select value into :vcomp_txt from v$parameter where name = 'compatible", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 325, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 33543, + "oracle.database_audit.action": "declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 720, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 34310, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 466, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 34823, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 466, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 35336, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 466, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 35849, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 466, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 36362, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 466, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 36875, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 466, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 37388, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 466, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 37901, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 466, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 38414, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 466, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 38927, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 466, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 39440, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 466, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 39953, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 466, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 40466, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 466, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 40979, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 466, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 41492, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 466, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 42005, + "oracle.database_audit.action": "select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 422, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 42474, + "oracle.database_audit.action": "select value into :vcomp_txt from v$parameter where name = 'compatible", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 325, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 42846, + "oracle.database_audit.action": "declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 720, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 43613, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 466, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 44126, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 466, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 44639, + "oracle.database_audit.action": "select controlfile_type, controlfile_change#, controlfile_sequence#, controlfile_created, decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(database_role, 'SNAPSHOT STANDBY', 1, 0) into :cftype, :cfscn, :cfseq, :cfcretime, :cfoffrrid, :cfsnapstby from v$database, v$controlfile_record_section offr where offr.type = 'OFFLINE RANGE", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 616, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 45302, + "oracle.database_audit.action": "select count(*) into :curbkup from x$kccdi di where bitand(di.diflg, 4096) = 4096 and bitand(di.difl2, 4) = 4", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 363, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 45712, + "oracle.database_audit.action": "select count(*) into :dbstate from x$kccrdi where location is not null and bitand(flags, 4) != 0", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 349, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 46108, + "oracle.database_audit.action": "select nvl(max(al.recid), '0'),nvl(max(al.recid), 0) into :txtparmvalue, :parmvalue from v$archived_log al where al.status in ('X', 'A') and al.is_recovery_dest_file = 'YES' and al.creator = 'RMAN", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 468, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 46623, + "oracle.database_audit.action": "select db.version_time, db.controlfile_change#, db.controlfile_sequence#, dbinc.resetlogs_time, df.last_recid, tf.last_recid, ts.last_recid, rl.last_recid, rm.last_recid, dc.last_recid, al.last_recid, bp.last_recid, do.last_recid, offr.last_recid, pc.last_recid, bs.last_recid, ldbinc.resetlogs_change#, ldbinc.resetlogs_time, ic.last_recid, rt.last_recid, grsp.last_recid, nrsp.last_recid, bcr.last_recid, pdb.last_recid, pic.last_recid, decode(dc.records_used, 0, 0, dc.last_recid - dc.records_used + 1), decode(al.records_used, 0, 0, al.last_recid - al.records_used + 1), decode(bp.records_used, 0, 0, bp.last_recid - bp.records_used + 1), decode(bs.records_used, 0, 0, bs.last_recid - bs.records_used + 1), decode(do.records_used, 0, 0, do.last_recid - do.records_used + 1), decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(pc.records_used, 0, 0, pc.last_recid - pc.records_used + 1) into :vertime, :cfscn, :cfseq, :rltime, :dfhwm, :tfhwm, :tshwm, :rlhwm, :rmhwm, :dchwm, :alhwm, :bphwm, :dohwm, :offrhwm, :pchwm, :bshwm, :lrstscn, :lrsttime, :ichwm, :rthwm, :grsphwm, :nrsphwm, :bcrhwm, :pdbhwm, :pichwm, :dclwm, :allwm, :bplwm, :bslwm, :dolwm, :offrlwm, :pclwm from v$database db, v$controlfile_record_section df, v$controlfile_record_section tf, v$controlfile_record_section ts, v$controlfile_record_section rt, v$controlfile_record_section rl, v$controlfile_record_section rm, v$controlfile_record_section dc, v$controlfile_record_section al, v$controlfile_record_section bp, v$controlfile_record_section do, v$controlfile_record_section offr, v$controlfile_record_section pc, v$controlfile_record_section bs, v$controlfile_record_section ic, v$controlfile_record_section grsp, v$controlfile_record_section nrsp, v$controlfile_record_section bcr, v$controlfile_record_section pdb, v$controlfile_record_section pic, v$database_incarnation dbinc, v$database_incarnation ldbinc where df.type = 'DATAFILE' and tf.type = 'TEMPORARY FILENAME' and ts.type = 'TABLESPACE' and rt.type = 'REDO THREAD' and rl.type = 'REDO LOG' and rm.type = 'RMAN CONFIGURATION' and dc.type = 'DATAFILE COPY' and al.type = 'ARCHIVED LOG' and bp.type = 'BACKUP PIECE' and do.type = 'DELETED OBJECT' and offr.type = 'OFFLINE RANGE' and pc.type = 'PROXY COPY' and bs.type = 'BACKUP SET' and ic.type = 'DATABASE INCARNATION' and grsp.type = 'GUARANTEED RESTORE POINT' and nrsp.type = 'RESTORE POINT' and bcr.type = 'DATABASE BLOCK CORRUPTION' and pdb.type = 'PDB RECORD' and pic.type = 'PDBINC RECORD' and dbinc.incarnation#=db.recovery_target_incarnation# and ldbinc.incarnation#=db.last_open_incarnation#", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 2943, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 49614, + "oracle.database_audit.action": "select decode(status, 'OPEN', 1, 0), decode(archiver, 'FAILED', 1, 0), decode(database_status, 'SUSPENDED', 1, 0) into :status, :archstuck, :dbsuspended from v$instance", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 422, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 50083, + "oracle.database_audit.action": "select value into :vcomp_txt from v$parameter where name = 'compatible", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 325, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 50455, + "oracle.database_audit.action": "declare dot1st number; dot2nd number; dot3rd number; comptxt varchar2(255) := :vcomp_txt; begin comptxt := comptxt || '.0.0'; dot1st := instr(comptxt, '.', 1, 1); dot2nd := instr(comptxt, '.', 1, 2); dot3rd := instr(comptxt, '.', 1, 3); comptxt := lpad(substr(comptxt, 1, dot1st - 1), 2, '0') || lpad(substr(comptxt, dot1st + 1, dot2nd - dot1st - 1), 2, '0') || lpad(substr(comptxt, dot2nd + 1, dot3rd - dot2nd - 1), 2, '0');:vcomp_ub4 := to_number(comptxt); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 720, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 51222, + "oracle.database_audit.action": "begin sys.dbms_backup_restore.createRmanOutputRow( l0row_id => :l0row_id, l0row_stamp => :l0row_stamp, row_id => :row_id, row_stamp => :row_stamp, txt => :txt, sameline => :i_sameline); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 466, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 51735, + "oracle.database_audit.action": "alter session set remote_dependencies_mode = signature", + "oracle.database_audit.action_number": "42", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 308, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 52090, + "oracle.database_audit.action": "declare transclause boolean := FALSE; begin if (:transclause > 0) then transclause := TRUE; end if; dbms_rcvman.resetAll(transclause => transclause); end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 410, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 52547, + "oracle.database_audit.action": "begin :success := dbms_rcvman.SUCCESS; :available := dbms_rcvman.AVAILABLE; :unavailable := dbms_rcvman.UNAVAILABLE; :restorable := dbms_rcvman.RESTORABLE; :no_action := dbms_rcvman.NO_ACTION; :BSavailable := dbms_rcvman.BSavailable; :BSunavailable := dbms_rcvman.BSunavailable; :BSdeleted := dbms_rcvman.BSdeleted; :BSexpired := dbms_rcvman.BSexpired; :BSpartial_avail := dbms_rcvman.BSpartial_avail; :BSdatafile_full := dbms_rcvman.BSdatafile_full; :BSdatafile_incr := dbms_rcvman.BSdatafile_incr; :BSarchivelog := dbms_rcvman.BSarchivelog; :BScfile_all := dbms_rcvman.BScfile_all; :BScfile_auto := dbms_rcvman.BScfile_auto; :offlineRange := dbms_rcvman.offlineRangeRec_con_t; :proxyCopy := dbms_rcvman.proxyCopy_con_t; :imageCopy := dbms_rcvman.imageCopy_con_t; :backupSet := dbms_rcvman.backupSet_con_t; :datafile := dbms_rcvman.datafile_con_t; :addredo := dbms_rcvman.addredo_con_t; :avmImageCopy := dbms_rcvman.avmImageCopy_con_t; :fullAct := dbms_rcvman.full_act_t; :incrementalAct := dbms_rcvman.incremental_act_t; :redoAct := dbms_rcvman.redo_act_t; :offRngAct := dbms_rcvman.offlineRange_act_t; :implicitRangeAct := dbms_rcvman.implicitRange_act_t; :cleanRangeAct := dbms_rcvman.cleanRange_act_t; :createDatafileAct := dbms_rcvman.createdatafile_act_t; :getCfCopy := dbms_rcvman.getCfCopy; :getDfCopy := dbms_rcvman.getDfCopy; :getAnyProxy := dbms_rcvman.getAnyProxy; :getCfBackup := dbms_rcvman.getCfBackup; :getSfBackup := dbms_rcvman.getSfBackup; :listCfCopy := dbms_rcvman.listCfCopy; :listDfCopy := dbms_rcvman.listDfCopy; :listCfBackup := dbms_rcvman.listCfBackup; :listSfBackup := dbms_rcvman.listSfBackup; :listDfBackup := dbms_rcvman.listDfBackup; :listAlBackup := dbms_rcvman.listAlBackup; :listDfProxy := dbms_rcvman.listDfProxy; :getRecovAction := dbms_rcvman.getRecovAction; :getAlBackup := dbms_rcvman.getAlBackup; :listAlCopy := dbms_rcvman.listAlCopy; :listBSet := dbms_rcvman.listBSet; :getAllBSet := dbms_rcvman.getAllBSet; :listAlProxy := dbms_rcvman.listAlProxy; :getRangeAlBackup := dbms_rcvman.getRangeAlBackup; :unknownCmd := dbms_rcvman.unknownCmd_t; :recoverCmd := dbms_rcvman.recoverCmd_t; :rcvCopyCmd := dbms_rcvman.rcvCopyCmd_t; :restoreCmd := dbms_rcvman.restoreCmd_t; :blkRestoreCmd := dbms_rcvman.blkRestoreCmd_t; end;", + "oracle.database_audit.action_number": "47", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 3049, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T14:58:04.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 55644, + "oracle.database_audit.action": "select controlfile_type, controlfile_change#, controlfile_sequence#, controlfile_created, decode(offr.records_used, 0, 0, offr.last_recid - offr.records_used + 1), decode(database_role, 'SNAPSHOT STANDBY', 1, 0) into :cftype, :cfscn, :cfseq, :cfcretime, :cfoffrrid, :cfsnapstby from v$database, v$controlfile_record_section offr where offr.type = 'OFFLINE RANGE", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "39496799", + "oracle.database_audit.length": 616, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "13794", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + } +] \ No newline at end of file diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_9667_20201007130533504494345257.aud.log b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_9667_20201007130533504494345257.aud.log new file mode 100644 index 00000000000..f2127854517 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_9667_20201007130533504494345257.aud.log @@ -0,0 +1,57 @@ +Audit file /opt/oracle/admin/ORCLCDB/adump/ORCLCDB_ora_9667_20201007130533504494345257.aud +Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production +Version 19.3.0.0.0 +Build label: RDBMS_19.3.0.0.0DBRU_LINUX.X64_190417 +ORACLE_HOME: /opt/oracle/product/19c/dbhome_1 +System name: Linux +Node name: testlab.local +Release: 3.10.0-1127.19.1.el7.x86_64 +Version: #1 SMP Tue Aug 25 17:23:54 UTC 2020 +Machine: x86_64 +Instance name: ORCLCDB +Redo thread mounted by this instance: 0 +Oracle process number: 34 +Unix process pid: 9667, image: oracle@testlab.local (TNS V1-V3) + +Wed Oct 7 13:05:33 2020 -04:00 +LENGTH : '253' +ACTION :[7] 'CONNECT' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[0] '' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[3] '100' + +Wed Oct 7 13:05:33 2020 -04:00 +LENGTH : '527' +ACTION :[281] 'SELECT DECODE(null,'','Total System Global Area','') NAME_COL_PLUS_SHOW_SGA, SUM(VALUE), DECODE (null,'', 'bytes','') units_col_plus_show_sga FROM V$SGA UNION ALL SELECT NAME NAME_COL_PLUS_SHOW_SGA , VALUE, DECODE (null,'', 'bytes','') units_col_plus_show_sga FROM V$SGA' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[0] '' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[1] '3' + +Wed Oct 7 13:05:42 2020 -04:00 +LENGTH : '279' +ACTION :[22] 'ALTER DATABASE MOUNT' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '35' + diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_9667_20201007130533504494345257.aud.log-expected.json b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_9667_20201007130533504494345257.aud.log-expected.json new file mode 100644 index 00000000000..1f74989b244 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_9667_20201007130533504494345257.aud.log-expected.json @@ -0,0 +1,102 @@ +[ + { + "@timestamp": "2020-10-07T17:05:33.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 587, + "oracle.database_audit.action": "CONNECT", + "oracle.database_audit.action_number": "100", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.length": 253, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "9667", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T17:05:33.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 887, + "oracle.database_audit.action": "SELECT DECODE(null,'','Total System Global Area','') NAME_COL_PLUS_SHOW_SGA, SUM(VALUE), DECODE (null,'', 'bytes','') units_col_plus_show_sga FROM V$SGA UNION ALL SELECT NAME NAME_COL_PLUS_SHOW_SGA , VALUE, DECODE (null,'', 'bytes','') units_col_plus_show_sga FROM V$SGA", + "oracle.database_audit.action_number": "3", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.length": 527, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "9667", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T17:05:42.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 1461, + "oracle.database_audit.action": "ALTER DATABASE MOUNT", + "oracle.database_audit.action_number": "35", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 279, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "9667", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + } +] \ No newline at end of file diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_9680_20201007130542916949215077.aud.log b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_9680_20201007130542916949215077.aud.log new file mode 100644 index 00000000000..db690b825c4 --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_9680_20201007130542916949215077.aud.log @@ -0,0 +1,43 @@ +Audit file /opt/oracle/admin/ORCLCDB/adump/ORCLCDB_ora_9680_20201007130542916949215077.aud +Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production +Version 19.3.0.0.0 +Build label: RDBMS_19.3.0.0.0DBRU_LINUX.X64_190417 +ORACLE_HOME: /opt/oracle/product/19c/dbhome_1 +System name: Linux +Node name: testlab.local +Release: 3.10.0-1127.19.1.el7.x86_64 +Version: #1 SMP Tue Aug 25 17:23:54 UTC 2020 +Machine: x86_64 +Instance name: ORCLCDB +Redo thread mounted by this instance: 1 +Oracle process number: 34 +Unix process pid: 9680, image: oracle@testlab.local (TNS V1-V3) + +Wed Oct 7 13:05:42 2020 -04:00 +LENGTH : '264' +ACTION :[7] 'CONNECT' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[3] '100' + +Wed Oct 7 13:06:08 2020 -04:00 +LENGTH : '276' +ACTION :[19] 'ALTER DATABASE OPEN' +DATABASE USER:[1] '/' +PRIVILEGE :[6] 'SYSDBA' +CLIENT USER:[6] 'oracle' +CLIENT TERMINAL:[5] 'pts/0' +STATUS:[1] '0' +DBID:[10] '2824230686' +SESSIONID:[10] '4294967295' +USERHOST:[13] 'testlab.local' +CLIENT ADDRESS:[0] '' +ACTION NUMBER:[2] '35' + diff --git a/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_9680_20201007130542916949215077.aud.log-expected.json b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_9680_20201007130542916949215077.aud.log-expected.json new file mode 100644 index 00000000000..636249f281e --- /dev/null +++ b/x-pack/filebeat/module/oracle/database_audit/test/ORCLCDB_ora_9680_20201007130542916949215077.aud.log-expected.json @@ -0,0 +1,70 @@ +[ + { + "@timestamp": "2020-10-07T17:05:42.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 580, + "oracle.database_audit.action": "CONNECT", + "oracle.database_audit.action_number": "100", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 264, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "9680", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + }, + { + "@timestamp": "2020-10-07T17:06:08.000Z", + "client.user.name": "oracle", + "event.action": "database_audit", + "event.category": "database", + "event.dataset": "oracle.database_audit", + "event.kind": "event", + "event.module": "oracle", + "event.outcome": "success", + "event.timezone": "-04:00", + "event.type": "access", + "fileset.name": "database_audit", + "host.user.roles": "SYSDBA", + "input.type": "log", + "log.flags": [ + "multiline" + ], + "log.offset": 891, + "oracle.database_audit.action": "ALTER DATABASE OPEN", + "oracle.database_audit.action_number": "35", + "oracle.database_audit.client.terminal": "pts/0", + "oracle.database_audit.database.id": "2824230686", + "oracle.database_audit.length": 276, + "oracle.database_audit.session_id": "4294967295", + "oracle.database_audit.status": "0", + "process.pid": "9680", + "server.address": "testlab.local", + "server.domain": "testlab.local", + "server.user.name": "/", + "service.type": "oracle", + "tags": [ + "oracle-database-audit" + ] + } +] \ No newline at end of file diff --git a/x-pack/filebeat/module/oracle/fields.go b/x-pack/filebeat/module/oracle/fields.go new file mode 100644 index 00000000000..8caf1eecf73 --- /dev/null +++ b/x-pack/filebeat/module/oracle/fields.go @@ -0,0 +1,23 @@ +// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one +// or more contributor license agreements. Licensed under the Elastic License; +// you may not use this file except in compliance with the Elastic License. + +// Code generated by beats/dev-tools/cmd/asset/asset.go - DO NOT EDIT. + +package oracle + +import ( + "github.com/elastic/beats/v7/libbeat/asset" +) + +func init() { + if err := asset.SetFields("filebeat", "oracle", asset.ModuleFieldsPri, AssetOracle); err != nil { + panic(err) + } +} + +// AssetOracle returns asset data. +// This is the base64 encoded gzipped contents of module/oracle. +func AssetOracle() string { + return "eJy0llGP4zQQx9/3U4xOPIDUjY7XPiDlrhyqBLeILTwhrab2JLHOsbNjuyXfHtmOQ7oqtIjgt43t//xmPPPfPsIXGrdgGYWmBwCvvKYtPJW/JTnBavDKmi189wAA0x78ZGVIRxpFWrpt2nsEgz0t9OLy40BbaNmGYfpyRTWuT0kJGrZ9iaJt66rpwDLQMphEj0d09IJBKj9vXwscF5MmdLSFI3lcfP8bqLhyrtBYhgHZKdMWvt0UG1LshLu4+ZZ4Se08+uAutgrxFxrPluWbvX/gi2smqRPJc5Kv5mPXGcg5Zc2LehvrP3DsjVQCPTnwXSnLFAf2OzChPxLf4BJakfGVJ+6VQb0iXAN4QqXxqGmTAHMoKKGS+Ca9NP2B/aAJ3g1+fHcfMErJ5FZ81ENHsP8Z6qwLlmFne1QGgiMJx3GRwn2EwRGvixcVgYMxcSoWFbUMwhpDIl4Gb9NeGdUbsPOx9XGLdOZOZfQWMPiOjE+Ne4NtYHVSmlpal2uWzX4VXQp9hvNvsW8QkvE8Vv/fTIvAHF84z3aKNo31BtA51ZrMTSi66ZBnVBqYhGVZpXwXlyslwdFrICNoEgLlwHXIscnJn4kMNMrQY8uoonq+nfUcoJHA1AaNfLlzb5t11vn1qvUxD0AUhR5FpwylgDdoME3Kul2VNWEgbiz3JEEGLnM6vcAp2gIcOuVA2KDlhfcdKR1lPMNrIB7vSuElv+F6mdQ5C+UAY38QKwEn1IGAaWBycXJLUpPdFGOaM89dJywzucEaGS9EaLDNxcVxoBhIZY36193+8FJ/POyfPj+Dj/82Kvj0V4E25d63798DU0PsYuf/+PTD0+d7m2/NQZ1/BCgZi9IoYhCoRchmcu7IXNpJfHWmuFnB3i/q44rz7D7sdyCsDr0ptfrtq119qD/Uz98nIZAqFQF5hJOi843ENZnWd1dz1ta0/y7hX+aaRzBvPepiIbaB4xg9K5l8etDYQQt/mNq+WI4ROsjJ45JhpR6hs44DnKW+/t18swHVAJpxA+jTWTJy7qKl+sOfAQAA///miyyb" +} diff --git a/x-pack/filebeat/module/oracle/module.yml b/x-pack/filebeat/module/oracle/module.yml new file mode 100644 index 00000000000..ed97d539c09 --- /dev/null +++ b/x-pack/filebeat/module/oracle/module.yml @@ -0,0 +1 @@ +--- diff --git a/x-pack/filebeat/modules.d/oracle.yml.disabled b/x-pack/filebeat/modules.d/oracle.yml.disabled new file mode 100644 index 00000000000..0a7819e55de --- /dev/null +++ b/x-pack/filebeat/modules.d/oracle.yml.disabled @@ -0,0 +1,13 @@ +# Module: oracle +# Docs: https://www.elastic.co/guide/en/beats/filebeat/master/filebeat-module-oracle.html + +- module: oracle + database_audit: + enabled: true + + # Set which input to use between syslog or file (default). + #var.input: file + + # Set paths for the log files when file input is used. + # Should only be used together with file input + # var.paths: /home/user/oracleauditlogs/*.aud