PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Comment appliquer la fonctionnalité PostgreSQL UNLOGGED à une table existante ?

PostgreSQL 9.5+ permet de définir une table existante comme LOGGED / NON CONNEXION avec ALTER TABLE commande... mieux détaillée ici .

For e.g. 
ALTER TABLE table_test SET LOGGED;
ALTER TABLE table_test SET UNLOGGED;