Hi.
If I understood correctly, this blog describes how to create second instance
that is linked to first (the same service acount user)?
But, I want to know whether it is possible to have second instance completely
independent, not influencing each other?
Regards,
Zlatko
- Original Message
Hello
PostgreSQL can run with more independent clusters. These clusters can
be related to one binary files or to more (different versions of
postgresql) files. Every cluster has own configuration. Databases
from one cluster share users, locales, etc.
Windows installer build first cluster automa
On Fri, Jul 20, 2007 at 09:24:05AM +0200, Zlatko Matić wrote:
> Hi.
> If I understood correctly, this blog describes how to create second instance
> that is linked to first (the same service acount user)?
> But, I want to know whether it is possible to have second instance completely
> independen
Zlatko Matić wrote:
Hi. If I understood correctly, this blog describes how to create
second instance that is linked to first (the same service acount
user)? But, I want to know whether it is possible to have second
instance completely independent, not influencing each other?
Yes, just make sure
Hi all.
I'm new to this list and, first of all, I'm a new user of PostgreSQL.
The version I'm using is 8.2.3 and I've the necessity to retrieve, using an
application, the ID of a modified (INSERT, UPDATE, DELETE) record of a
triggered table. I wasn't able to find out a way to obtain the required I
Luca Ciciriello wrote:
Hi all.
I'm new to this list and, first of all, I'm a new user of PostgreSQL.
The version I'm using is 8.2.3 and I've the necessity to retrieve, using an
application, the ID of a modified (INSERT, UPDATE, DELETE) record of a
triggered table. I wasn't able to find out a way
Hello.
I use following statements for temporarily disable triggers and enable them
again:
--Disable triggers.
UPDATE "pg_class" SET "reltriggers" = 0 WHERE "relname" = 'orders';
--Enable triggers.
UPDATE pg_class SET reltriggers = (
SELECT count(*) FROM pg_trigger where pg_class.oid = tgreli
I think i've found a solution, i will do this :
CREATE FUNCTION save_bytea_on_system(bytea) RETURNS varchar AS $$
use File::Temp ();
$fh = new File::Temp();
binmode($fh);
my $data = $_[0];
$data =~ s{\\(\\|[0-7]{3})}{$1 eq "\\" ? $1 : chr(oct($1))}ge;
$fname = $fh->filename;
Uwe C. Schroeder wrote:
On Saturday 07 July 2007, Lew wrote:
So if your RDBMS sorts NULLs after all other values, then from
select start_date from show_date
order by
case when start_date > CURRENT_DATE then start_date end desc,
case when start_date <= CURRENT_DATE then start_date end asc
Keaton Adams wrote:
I am being asked by management when PostgreSQL 8.3 will become generally
available. Is there an updated timeline for 8.3?
You know the answer is supposed to be "when it's ready" but we all know
Management doesn't like that kind of an answer.
Of course, you could just p
We have a system that sends back information by using the RAISE NOTICE.
I've taken two lines out of it and put them here to illustrate the
idea. You may have to play with it to get it right:
NotifyList = 'The OID is: ' || CAST(new.oid as varchar(10)) || ';';
RAISE NOTICE '%',NotifyList;
Luc
I want to do something like this:
ALTER TABLE companies ADD CONSTRAINT fk_companies_item_id
FOREIGN KEY (item_id, 'Company')
REFERENCES item_bases(item_id, item_type)
INITIALLY DEFERRED
I could add a column to companies that is always set to "Company" but
On Fri, Jul 20, 2007 at 08:57:25AM -0500, Perry Smith wrote:
> I want to do something like this:
>
> ALTER TABLE companies ADD CONSTRAINT fk_companies_item_id
> FOREIGN KEY (item_id, 'Company')
> REFERENCES item_bases(item_id, item_type)
> INITIALLY DEFERRED
On Jul 20, 2007, at 9:06 AM, Michael Fuhr wrote:
On Fri, Jul 20, 2007 at 08:57:25AM -0500, Perry Smith wrote:
I want to do something like this:
ALTER TABLE companies ADD CONSTRAINT fk_companies_item_id
FOREIGN KEY (item_id, 'Company')
REFERENCES item_bases(item_id, it
I followed instructions from the blog, but when applying initdb command I have
the following error: "initdb: file "C:/Program
Files/PostgreSQL/8.2/share/postgres.bki" does not exist. This means you have a
corrupted installation or identified the wrong directory with the invocation
option -L.".
Hi,
We're trying to figure out why we're getting poor query performance on a
particular database running on a 64 bit Solaris box. The info for the poor
database is:
Red Hat Enterprise Linux AS release 4 (Nahant Update 2) Linux vl-sfv40z-001
2.6.9-22.0.2.ELsmp #1 SMP Thu Jan 5 17:11:56 EST 200
In response to Brian Maguire <[EMAIL PROTECTED]>:
> Hi,
>
> We're trying to figure out why we're getting poor query performance on a
> particular database running on a 64 bit Solaris box. The info for the poor
> database is:
>
> Red Hat Enterprise Linux AS release 4 (Nahant Update 2) Linux vl
The attached PHP script is a derived test case based on an actual problem
we've been seeing in our application.
The result of this script is a crashed (sig 11) backend on pg 8.2.4.
I've now reproduced this on two different systems, a large server with
1G of shared_buffers and many other performa
Bill Moran <[EMAIL PROTECTED]> writes:
> I'm now full of mystery and wonder. It would appear as if the
> underlying problem has something to do with PHP, but why should this
> cause a backend process to crash?
I'd bet on PHP submitting the query via extended query protocol
(PQexecParams or equiva
On Friday 20 July 2007 12:51:47 Tom Lane wrote:
> Can someone make a reproducer that uses
> PQexecParams?
Does JDBC apply?
jan
--
--
Jan de Visser [EMAIL PROTECTED]
Baruk Khazad! Khazad ai-menu!
---
In response to Tom Lane <[EMAIL PROTECTED]>:
> Bill Moran <[EMAIL PROTECTED]> writes:
> > I'm now full of mystery and wonder. It would appear as if the
> > underlying problem has something to do with PHP, but why should this
> > cause a backend process to crash?
>
> I'd bet on PHP submitting the
Bill Moran <[EMAIL PROTECTED]> writes:
> In response to Tom Lane <[EMAIL PROTECTED]>:
>> I'd bet on PHP submitting the query via extended query protocol
>> (PQexecParams or equivalent) instead of plain ol PQexec which is what
>> psql uses.
> Doesn't appear that way.
OK, it seemed like a good firs
This message bounced from psql-odbc (I suppose because I am not subscribed
there), so I am hoping some kindly soul here will help me!
Hi developers,
In attempting to build psqlodbc from source, I receive the following error
in configure after invoking it by
/configure --with-unixodbc=/usr/l
On 7/20/07, Bill Moran <[EMAIL PROTECTED]> wrote:
In response to Tom Lane <[EMAIL PROTECTED]>:
> Bill Moran <[EMAIL PROTECTED]> writes:
> > I'm now full of mystery and wonder. It would appear as if the
> > underlying problem has something to do with PHP, but why should this
> > cause a backend
Hello,
This is a reminder to everyone that we hare have a PDXPGDay at the
Oregon Convention Center on July 22nd. The schedule can be found here:
http://pdxgroups.pbwiki.com/PDXPUG%20PostgreSQL%20Day
http://developer.postgresql.org/index.php/OSCON2007#PostgreSQL_Day_July_22
We are also having
Hello,
My current list for volunteers is:
* Alvaro Herrera
* Josh Berkus
* Joshua D. Drake
* Chris Travers
* David Fetter
* Michael Alan Brewer
* Robert Bernier
* Selena Decklemann (part time) (PDXPUG)
* Gabrielle 1-2pm Wednesday (PDXPUG)
Am I missing anyone?
Joshua D. Drake
--
=== The
On Thu, Jul 19, 2007 at 03:13:27PM -0700, Ben wrote:
> What corner case reduces 2pc from "guaranteed" to "very high probability"?
> Is the worry if somebody leaves transactions in a prepared state for
> weeks, only to find that deadlock issues has arrisen at final commit time?
That's not the wor
In response to "Scott Marlowe" <[EMAIL PROTECTED]>:
> On 7/20/07, Bill Moran <[EMAIL PROTECTED]> wrote:
> > In response to Tom Lane <[EMAIL PROTECTED]>:
> >
> > > Bill Moran <[EMAIL PROTECTED]> writes:
> > > > I'm now full of mystery and wonder. It would appear as if the
> > > > underlying proble
In response to Bill Moran <[EMAIL PROTECTED]>:
> In response to "Scott Marlowe" <[EMAIL PROTECTED]>:
[snip]
> I'm starting to wonder if the OS could be sending the sig 11?
>
> ... time warp ...
>
> Yup, that was it. The OS was limiting the amount of memory a single
> process could use via kern.
Bill Moran <[EMAIL PROTECTED]> writes:
> Oddly, the query succeeds if it's fed into psql.
> I'm now full of mystery and wonder. It would appear as if the
> underlying problem has something to do with PHP, but why should this
> cause a backend process to crash?
Ah, I see it. Your PHP script is s
Joshua D. Drake wrote:
Hello,
This is a reminder to everyone that we hare have a PDXPGDay at the
Oregon Convention Center on July 22nd. The schedule can be found here:
http://pdxgroups.pbwiki.com/PDXPUG%20PostgreSQL%20Day
http://developer.postgresql.org/index.php/OSCON2007#PostgreSQL_Day_July
On Wed, Jul 18, 2007 at 11:02:51PM +0100, Richard Huxton wrote:
> Francisco Reyes wrote:
> >As far as I know, currently one can set the search path globally, or on
> >a per role bases.
> >
> >I was wondering if it could be possible to have a per database search_path.
> >I believe this would be not
Hi all.
Maybe mine is a stupid question, but I'd like to know the answer if
possible.
In an inner join involving a 16M+ rows table and a 100+ rows table
performances got drastically improved by 100+ times by replacing a
UNIQUE-NOT NULL index with a PRIMARY KEY on the very same columns in
the ver
On Jul 20, 2007, at 17:54 , Vincenzo Romano wrote:
In an inner join involving a 16M+ rows table and a 100+ rows table
performances got drastically improved by 100+ times by replacing a
UNIQUE-NOT NULL index with a PRIMARY KEY on the very same columns in
the very same order. The query has not be
On Jul 20, 2007, at 6:37 , Tom Allison wrote:
x.0 to x.1 is a lot of relatively easy things to address from a
major point release.
From 8.0 to 8.1 is a major release for PostgreSQL. 8.0, 8.1, and 8.2
are all major releases. "Point" releases for PostgreSQL are, for
example, from 8.0.1 to
On Fri, 2007-07-20 at 09:27 -0500, Perry Smith wrote:
> On Jul 20, 2007, at 9:06 AM, Michael Fuhr wrote:
>
> > On Fri, Jul 20, 2007 at 08:57:25AM -0500, Perry Smith wrote:
> >> I want to do something like this:
> >>
> >> ALTER TABLE companies ADD CONSTRAINT fk_companies_item_id
> >> F
On Jul 20, 2007, at 7:01 PM, Jeff Davis wrote:
On Fri, 2007-07-20 at 09:27 -0500, Perry Smith wrote:
On Jul 20, 2007, at 9:06 AM, Michael Fuhr wrote:
On Fri, Jul 20, 2007 at 08:57:25AM -0500, Perry Smith wrote:
I want to do something like this:
ALTER TABLE companies ADD CONSTRAINT fk_compa
On Fri, 2007-07-20 at 15:26 -0400, Andrew Sullivan wrote:
> On Thu, Jul 19, 2007 at 03:13:27PM -0700, Ben wrote:
> > What corner case reduces 2pc from "guaranteed" to "very high probability"?
> > Is the worry if somebody leaves transactions in a prepared state for
> > weeks, only to find that dea
On Fri, 2007-07-20 at 19:18 -0500, Perry Smith wrote:
> > The relational model handles inheritance and polymorphism very well if
> > you don't store types as values.
>
> What if I have just an id for an item? This will happen when another
> table references an item. How do I know what type it
On 2007-07-20, Bill Moran <[EMAIL PROTECTED]> wrote:
> It just occurred to me that there's another wildcard in this one.
> The 8.1 system I tested was on FreeBSD 5.5, while both 8.2 systems
> were running on FreeBSD 6.2. I wonder if FreeBSD has changed
> which signal gets sent on memory exhaustion
Hi.
Umm, I don't understand your build environment well
However, The following examination may help to find a problem.
-- long_test.c - start ---
long longval () { return (long) (sizeof (long)); }
unsigned long ulongval () { return (long) (sizeof (long)); }
#include
#include
int
main ()
{
On Jul 20, 2007, at 19:37 , Jeff Davis wrote:
I only mentioned it because in 8.3 it will be useful for general
use. I
don't know what's changing about it between now and then, but it's
becoming "un-deprecated".
AFAIK, nothing's changed in the actual constraint trigger code: it's
just a do
Luca Ferrari <[EMAIL PROTECTED]> writes:
>> src/backend/optimizer/README
> I've read this yesterday, very interesting, but I'm looking for something
> similar related to geqo. I mean, is there any presentation/demo that
> step-y-step explains how geqo could take decisions?
There's not a lot, bu
On 7/20/07, Michael Glaesemann <[EMAIL PROTECTED]> wrote:
On Jul 20, 2007, at 17:54 , Vincenzo Romano wrote:
> In an inner join involving a 16M+ rows table and a 100+ rows table
> performances got drastically improved by 100+ times by replacing a
> UNIQUE-NOT NULL index with a PRIMARY KEY on th
"Josh Tolley" <[EMAIL PROTECTED]> writes:
> Might it just be that the original UNIQUE + NOT NULL index was bloated
> or otherwise degraded, and reindexing it would have resulted in the
> same performance gain? That's just a guess.
Yeah. There is precious little difference between UNIQUE+NOT NULL
Which data type is smaller and will lead to better query performance -
smallint or char?
46 matches
Mail list logo