Database / Mnesia intermediate to advanced Interview questions
What is mnesia:del_table_copy/2 used for?
mnesia:del_table_copy(Table, Node) updates the schema to stop treating the given node as a
replica of the specified table, and reclaims whatever storage (memory and/or disk) that copy was using on that
node — a schema-level operation, run as part of deliberate cluster maintenance rather than everyday
application logic.
mnesia:transaction(fun() -> mnesia:del_table_copy(archive_log, 'old_node@host') end).
Because this changes replication topology, it's schema-affecting and typically done during planned
maintenance windows rather than as part of routine request handling — the same caution that applies to
add_table_copy/3 or change_table_copy_type/3 applies here: verify the table still has
sufficient remaining replicas for your durability/availability needs before removing this one.
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
