Y
Hacker News
new
|
ask
|
show
|
jobs
by
flossly
14 hours ago
Years ago I heard Oracle's db had an edge on PG when it comes to DELETEs. I guess that's still the case...
2 comments
mike_hearn
2 hours ago
Oracle has ALTER TABLE [name] MOVE ONLINE INCLUDING ROWS [predicates]. This is basically what you want - it keeps only the data matching the predicate, it's efficient and it works without disrupting the app. That might be the edge you heard about.
link
asgeirn
2 hours ago
Also ALTER TABLE DROP PARTITION
link