http://www.devx.com/dbzone/Article/22119 One much-lauded feature of PostgreSQL is transactions. Transactions in a database help prevent accidental data loss or misrepresentation.
"For example, let's say you want to delete records from a table. In PostgreSQL the command is: template1=# DELETE FROM foo; "However, the above command will delete all of the records in the table. This is probably not what you want, andâunless you were using transactionsâthe only way to get the data back would be from a backup. Using transactions, getting the data back is simple........... _______________________________________________ LUG mailing list [EMAIL PROTECTED] http://kym.net/mailman/listinfo/lug %LUG is generously hosted by INFOCOM http://www.infocom.co.ug/
