Skip to content

Instantly share code, notes, and snippets.

View vbaidak's full-sized avatar

Vladyslav Baidak vbaidak

  • Kyiv, Kyiv City, Ukraine
View GitHub Profile
@vbaidak
vbaidak / oracle.md
Last active April 11, 2022 09:13
Oracle HowTo

Checking UNDO Tablespaces per PDB:

SELECT b.name, a.con_id, a.tablespace_name, a.status FROM cdb_tablespaces a,v$pdbs b WHERE  a.tablespace_name LIKE 'UNDO%' and a.con_id=b.con_id;

Disabling Local UNDO Tablespaces for PDB (must be sysdba)

show con_name