[GENERAL] Re: PostgreSQL General Digest V1 #156

2000-05-17 Thread Paul Condon
> I don't know the internals of PostgreSQL, but logically INTERSECT is a join, but with an automatic default generation of the WHERE clause. As such, there should not be any difference in performance on tables that are large enough to mask small differences in the time it takes to parse the co

[GENERAL] Re: Revisited: Transactions, insert unique.

2000-04-25 Thread Paul Condon
I have not researched this issue thoroughly, or even superficially, but I understand that PostgreSQL has something called multi-version concurrency control (MVCC). This is, I'm told, a GOOD THING, and I believe it. But the documentation and tutorials on MVCC are far too terse for me to feel comfor

Re: [GENERAL] 50 MB Table

2000-03-07 Thread Paul Condon
t's very slow. > It takes about 20 seconds for the above query. I even uppercased all the > names, hoping tht would help. I wondered if I'd used the wrong index > type (btree), or if there were some flags that would help. Is there a > way to bust the indexes out alpha on the firs

Re: [GENERAL] 50 MB Table

2000-03-06 Thread Paul Condon
JB wrote: > I have a 50 MB +- table in postgres. The data is normalized so there's > not much I can do about the size. The tuples are about 512 bytes so > there's a pile of 'em. I need searching on of several fields, a couple > in particular are text fields that needs 'LIKE'. The problem is, the