Einzelnen Beitrag anzeigen

Benutzerbild von smallie
smallie

Registriert seit: 8. Jan 2013
19 Beiträge
 
Delphi 10.3 Rio
 
#4

AW: Updates eines CLOB Feldes belegen unerwartet viel Datenträgerplatz (Oracle)

  Alt 16. Feb 2023, 15:48
Nur ein truncate auf die Tabelle hilft anscheinend.
Hmm. Könnte die High Water Mark sein.

Schon mal damit probiert?

Zitat:
-- Shrink a LOB segment (basicfile only until 21c).
ALTER TABLE table_name MODIFY LOB(lob_column) (SHRINK SPACE);
ALTER TABLE table_name MODIFY LOB(lob_column) (SHRINK SPACE CASCADE);

https://oracle-base.com/articles/mis...k-space-online
"There are two hard things in computer science: cache invalidation, naming things, and off-by-one errors."
  Mit Zitat antworten Zitat