|
|
|
|
|
by takeda
2236 days ago
|
|
> I also really appreciate the transactional TRUNCATE - I pretty much never use it but at least in Postgres I never have to worry about someone else trying to run one and wiping state unexpectedly. as long as auto commit is not enabled. These goodies are possible, because of PostgreSQL's MVCC which requires running vacuum. Nothing is for free unfortunately. |
|
MSSQL just handles doing that cleanup silently in the background while exposing basically no no configuration except a trace flag that can turn it off.