This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- REMOVE QUOTA FROM FLASHBACK DATA ARCHIVE WITH SPECIFYING NO QUOTA CLAUSE | |
| SQL> ALTER FLASHBACK ARCHIVE FDA_TEST MODIFY TABLESPACE USERS_TEST ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| s.sowner AS | |
| owner, | |
| s.vname AS | |
| mview_name, | |
| s.tname AS | |
| container_name, | |
| s.query_txt AS | |
| query, | |
| s.query_len |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Execution Plan | |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | |
| | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time | | |
| -------------------------------------------------------------------------------------------------------------------- | |
| | 0 | SELECT STATEMENT | | 1 | 260 | 171 (5)| 00:00:01 | | |
| | 1 | TABLE ACCESS BY INDEX ROWID BATCHED | SNAP$ | 3 | 366 | 0 (0)| 00:00:01 | | |
| |* 2 | INDEX RANGE SCAN | I_SNAP2 | 1 | | 0 (0)| 00:00:01 | | |
| | 3 | SORT AGGREGATE | | 1 | 16 | | | | |
| |* 4 | FILTER | | | | | | | |
| | 5 | TABL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SQL> alter system set events '10978 trace name context forever, level 128'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| ( | |
| SELECT | |
| MIN(time_dp) | |
| FROM | |
| sys.smon_scn_time | |
| WHERE | |
| ( scn_wrp * 4294967296 + scn_bas ) > ( | |
| SELECT | |
| MIN(t.spare3) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SQL> CREATE INDEX SYS.SMON_SCN_TIME_TIM_IDX_TEMP ON SYS.SMON_SCN_TIME | |
| (SCN_WRP * 4294967296 + SCN_BAS) | |
| LOGGING | |
| TABLESPACE SYSAUX | |
| PCTFREE 10 | |
| INITRANS 2 | |
| MAXTRANS 255 | |
| STORAGE ( | |
| INITIAL 64K | |
| NEXT 1M |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Execution Plan | |
| ---------------------------------------------------------- | |
| Plan hash value: 1875754335 | |
| -------------------------------------------------------------------------------------------------------------------------- | |
| | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time | | |
| -------------------------------------------------------------------------------------------------------------------------- | |
| | 0 | SELECT STATEMENT | | 1 | 112 | 17 (0)| 00:00:01 | | |
| | 1 | SORT AGGREGATE | | 1 | 21 | | | | |
| | 2 | TABLE ACCESS BY INDEX ROWID BATCHED | SMON_SCN_TIME | 97 | 2037 | 6 (0)| 00:00:01 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2023-05-21T17:18:03.998348+03:00 | |
| PARSE ERROR: ospid=28682, error=923 for statement: | |
| Additional information: hd=0x6ae210f0 phd=0x8bdc7d18 flg=0x28 cisid=0 sid=0 ciuid=0 uid=0 sqlid=d431n9ajscp24 | |
| ...Current username=SYS | |
| ...Application: sqlplus@blt01.localdomain (TNS V1-V3) Action: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SQL> select kglhdpar, kglhdadr, kglobt03, kglnaobj from sys.x$kglob where kglobt03='d431n9ajscp24' | |
| KGLHDPAR KGLHDADR KGLOBT03 KGLNAOBJ | |
| ---------------- ---------------- --------------- -------------------------------------------------- | |
| 000000008BDC7D18 000000006AE210F0 d431n9ajscp24 select 1923 | |
| 000000008BDC7D18 000000008BDC7D18 d431n9ajscp24 select 1923 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alter system set events '10035 cursordump(1)'; |