Re: [HACKERS] DDL triggers [was Re: [GENERAL] database constraints]

2004-10-07 Thread Gavin Sherry
On Thu, 7 Oct 2004, David Fetter wrote: > On Thu, Oct 07, 2004 at 11:47:55AM +0700, David Garamond wrote: > > Joshua D. Drake wrote: > > >>This brings up an interesting idea. What if it were possible to set > > >>some kind of rules on DDL at database creation time? For example, I'd > > >>like to

Re: [GENERAL] postmaster confiugration and hardware configuration

2001-03-05 Thread Gavin Sherry
postgres documentation. > > Regards, > Eko Pranoto > Database Administrator of Health Care Information System Project > Rumah Sakit Pertamina Jaya > Indonesia Gavin Sherry Alcove Systems Engineering. ---(end of broadcast)--

Re: [GENERAL] length of insert stmt?

2001-03-08 Thread Gavin Sherry
Chris, You seem to have hit the 8Kb row limit. You can fix this by editing include/config.h and changing BLCKSZ. The maximum is 32Kb. Note that this is redundant in 7.1 Gavin Sherry Alcove Systems Engineering. ---(end of broadcast)--- TIP 3: if

Re: [GENERAL] Money...

2001-03-11 Thread Gavin Sherry
k harder than Oracle on the same hardware. (If you're a code-cutter, then you can tweak the source to suit your application too -- woohoo!) Thanks Gavin Sherry Alcove Systems Engineering. ---(end of broadcast)--- TIP 6: Have you searched our list archives? http://www.postgresql.org/search.mpl

Re: [GENERAL] concurrent updates problem

2001-03-19 Thread Gavin Sherry
You should not be experiencing this if you are using transactions. Gavin On Mon, 19 Mar 2001 [EMAIL PROTECTED] wrote: > I have on a web application > update threads set views = views + 1 where forum_id = 1 and thread_id = > 1 > just to record view for that page - stupid I know but people want