Re: Ultimate DB Server
Christopher Kings-Lynne <chriskl@familyhealth.com.au>
From: "Christopher Kings-Lynne" <chriskl@familyhealth.com.au>
To: "Christopher Kings-Lynne" <chriskl@familyhealth.com.au>, "Mike Rogers" <temp6453@hotmail.com>, <pgsql-hackers@postgresql.org>, "Jean-Michel POURE" <jm.poure@freesurf.fr>
Date: 2001-10-29T02:40:20Z
Lists: pgsql-hackers, pgsql-general
Doh! I messed up my example! The first table was supposed to be transactional. > I don't get how you can have different tables being transactional in your > database?? > > ie. What on earth does this do? (pseudo) > create table blah transactional; > create table hum not_transactional; > > begin; > insert into blah values (1); > insert into hum values (2); > rollback; > > ????? Chris