<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-759</id>
	<title>Nabble - PostgreSQL</title>
	<updated>2009-11-10T22:08:28Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/PostgreSQL-f759.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PostgreSQL-f759.html" />
	<subtitle type="html">&lt;a href=&quot;http://www.postgresql.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;PostgreSQL&lt;/a&gt;&amp;nbsp;is a powerful, open source relational database system. It has a proven architecture that has earned it a strong reputation for reliability, data integrity, and correctness.
&lt;br&gt;It has native programming interfaces for C/C++, Java, .Net, Perl, Python, Ruby, Tcl, ODBC, among others, and exceptional documentation.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26296583</id>
	<title>total execution time as reported by auto_explain</title>
	<published>2009-11-10T22:08:28Z</published>
	<updated>2009-11-10T22:08:28Z</updated>
	<author>
		<name>Jaime Casanova-2</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I was using auto_explain to log plans (with analyze option on) from
&lt;br&gt;queries that take more than 500ms, something i found i little odd is
&lt;br&gt;that the duration says 779ms but actual time says 269ms (almost 3
&lt;br&gt;times lower), maybe some kind of instrumentation cleanup can explain
&lt;br&gt;this?
&lt;br&gt;&lt;br&gt;2009-11-10 10:32:41 GMTLOG: &amp;nbsp;duration: 779.938 ms &amp;nbsp;plan:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Sort &amp;nbsp;(cost=1943.99..1967.38 rows=9355 width=466) (actual
&lt;br&gt;time=235.655..269.061 rows=4997 loops=1)
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Atentamente,
&lt;br&gt;Jaime Casanova
&lt;br&gt;Soporte y capacitación de PostgreSQL
&lt;br&gt;Asesoría y desarrollo de sistemas
&lt;br&gt;Guayaquil - Ecuador
&lt;br&gt;Cel. +59387171157
&lt;br&gt;&lt;br /&gt;2009-11-10 10:32:41 GMTLOG: &amp;nbsp;duration: 779.938 ms &amp;nbsp;plan:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Sort &amp;nbsp;(cost=1943.99..1967.38 rows=9355 width=466) (actual time=235.655..269.061 rows=4997 loops=1)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Sort Key: (upper(ltrim((b.nombre)::text)))
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Sort Method: &amp;nbsp;quicksort &amp;nbsp;Memory: 3000kB
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -&amp;gt; &amp;nbsp;Hash Left Join &amp;nbsp;(cost=8.18..1326.95 rows=9355 width=466) (actual time=0.516..161.361 rows=4997 loops=1)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Hash Cond: (CASE btrim((b.marca)::text) WHEN ''::text THEN NULL::bpchar ELSE b.marca END = c.codigo)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -&amp;gt; &amp;nbsp;Seq Scan on fcproduc b &amp;nbsp;(cost=0.00..1130.73 rows=9355 width=216) (actual time=0.194..65.821 rows=4997 loops=1)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Filter: (upper((nombre)::text) ~~ '%1%'::text)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -&amp;gt; &amp;nbsp;Hash &amp;nbsp;(cost=8.16..8.16 rows=2 width=261) (actual time=0.153..0.153 rows=1 loops=1)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -&amp;gt; &amp;nbsp;Bitmap Heap Scan on dbtablas c &amp;nbsp;(cost=3.27..8.16 rows=2 width=261) (actual time=0.125..0.129 rows=1 loops=1)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Recheck Cond: (tipo = 'MAR'::bpchar)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -&amp;gt; &amp;nbsp;Bitmap Index Scan on dbtablas_pkey &amp;nbsp;(cost=0.00..3.27 rows=2 width=0) (actual time=0.074..0.074 rows=1 loops=1)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Index Cond: (tipo = 'MAR'::bpchar)
&lt;br&gt;2009-11-10 10:32:41 GMTSTATEMENT: &amp;nbsp;select b.codigo,b.nombre,b.ubicacion,b.grupo,b.P_IVA,b.PRECIO,b.PRECIO_2,b.PRECIO_3,b.PRECIO_4,b.PRECIO_5,c.nombre AS marca,b.codigo_a 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FROM fcproduc b 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;LEFT OUTER JOIN dbtablas c ON c.codigo = case TRIM(b.marca) when '' then null else b.marca end and c.tipo = 'MAR' &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;WHERE UPPER(b.NOMBRE) LIKE UPPER('%1%') order by UPPER(LTRIM(b.nombre))
&lt;br&gt;&lt;br /&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-hackers mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26296583&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-hackers@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-hackers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---hackers-f780.html&quot; embed=&quot;fixTarget[780]&quot; target=&quot;_top&quot; &gt;PostgreSQL - hackers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/total-execution-time-as-reported-by-auto_explain-tp26296583p26296583.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26296573</id>
	<title>Numeric Type and VB/ODBC</title>
	<published>2009-11-10T22:07:16Z</published>
	<updated>2009-11-10T22:07:16Z</updated>
	<author>
		<name>getitright</name>
	</author>
	<content type="html">This may not be the right group, if so, just let me know.
&lt;br&gt;&lt;br&gt;I have a table with a type [numeric].
&lt;br&gt;&lt;br&gt;When executing queries, I get the data which happens to
&lt;br&gt;be (6.5) in this case, but my VB6 function which traps
&lt;br&gt;for nulls (below) returns a null.
&lt;br&gt;&lt;br&gt;If I change it to type [real]. No problems
&lt;br&gt;&lt;br&gt;&lt;br&gt;Function IsNothing(varToTest As Variant) As Integer
&lt;br&gt;' &amp;nbsp;Tests for a &amp;quot;logical&amp;quot; nothing based on data type
&lt;br&gt;' &amp;nbsp;Empty and Null = Nothing
&lt;br&gt;' &amp;nbsp;Number = 0 is Nothing
&lt;br&gt;' &amp;nbsp;Zero length string is Nothing
&lt;br&gt;' &amp;nbsp;Date/Time is never Nothing
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; IsNothing = True
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Select Case VarType(varToTest)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Case vbEmpty
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Exit Function
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Case vbNull
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Exit Function
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Case vbBoolean
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; If varToTest Then IsNothing = False
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Case vbByte, vbInteger, vbLong, vbSingle, vbDouble, vbCurrency
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; If varToTest &amp;lt;&amp;gt; 0 Then IsNothing = False
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Case vbDate
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; IsNothing = False
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Case vbString
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; If (Len(varToTest) &amp;lt;&amp;gt; 0 And varToTest &amp;lt;&amp;gt; &amp;quot; &amp;quot;) Then IsNothing =
&lt;br&gt;False
&lt;br&gt;&amp;nbsp; &amp;nbsp; End Select
&lt;br&gt;&lt;br&gt;End Function
&lt;br&gt;&lt;br&gt;&lt;br&gt;Bret Stern
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-general mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26296573&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-general@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-general&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-general&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---general-f768.html&quot; embed=&quot;fixTarget[768]&quot; target=&quot;_top&quot; &gt;PostgreSQL - general&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Numeric-Type-and-VB-ODBC-tp26296573p26296573.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26296167</id>
	<title>Patch committers</title>
	<published>2009-11-10T21:06:22Z</published>
	<updated>2009-11-10T21:06:22Z</updated>
	<author>
		<name>Bruce Momjian-5</name>
	</author>
	<content type="html">Robert Haas wrote:
&lt;br&gt;&amp;gt; The next CommitFest is scheduled to start in a week. &amp;nbsp;So far, it
&lt;br&gt;&amp;gt; doesn't look too bad, though a lot could change between now and then.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I would personally prefer not to be involved in the management of the
&lt;br&gt;&amp;gt; next CommitFest. &amp;nbsp;Having done all of the July CommitFest and a good
&lt;br&gt;&amp;gt; chunk of the September CommitFest, I am feeling a bit burned out.
&lt;br&gt;&lt;br&gt;This brings up a concern I have --- that the number of patch
&lt;br&gt;committers/managers is decreasing while our patch volume is increasing. 
&lt;br&gt;Consider that Heikki is working mostly on Hot Standby and Streaming
&lt;br&gt;Replication, Alvaro isn't as involved in applying patches, Neil Conway
&lt;br&gt;isn't involved with Postgres anymore, I am in a 42-day travel period,
&lt;br&gt;and Robert Haas is feeling burnt-out --- that is not a pretty sight.
&lt;br&gt;&lt;br&gt;Much of the patch burden is falling on Tom. &amp;nbsp;Now, Tom isn't complaining,
&lt;br&gt;but I am concerned about placing too much of a burden on him. &amp;nbsp;I know we
&lt;br&gt;are growing new patch reviewers who will eventually be able to review
&lt;br&gt;_and_ apply patches on their own, but getting them to that point is
&lt;br&gt;going to take time.
&lt;br&gt;&lt;br&gt;I have no real answers, but I am concerned. &amp;nbsp;I have talked to many of
&lt;br&gt;you privately about this to get your input.
&lt;br&gt;&lt;br&gt;On a brighter note, I was able to read three weeks of back-logged emails
&lt;br&gt;(3k emails) in the past two days because our community is now very good
&lt;br&gt;at resolving the greatly increased email volume of bug reports and
&lt;br&gt;questions.
&lt;br&gt;&lt;br&gt;I can definitely say that the quality and volume of our email support to
&lt;br&gt;users had advanced significantly in the past year. &amp;nbsp;It seems that a
&lt;br&gt;similar increase in patch application support is going to take longer to
&lt;br&gt;materialize.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp; Bruce Momjian &amp;nbsp;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26296167&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bruce@...&lt;/a&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://momjian.us&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://momjian.us&lt;/a&gt;&lt;br&gt;&amp;nbsp; EnterpriseDB &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://enterprisedb.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://enterprisedb.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; + If your life is a hard drive, Christ can be your backup. +
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-hackers mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26296167&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-hackers@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-hackers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---hackers-f780.html&quot; embed=&quot;fixTarget[780]&quot; target=&quot;_top&quot; &gt;PostgreSQL - hackers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Patch-committers-tp26296167p26296167.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26296111</id>
	<title>Re: speakers mailing list</title>
	<published>2009-11-10T20:57:51Z</published>
	<updated>2009-11-10T20:57:51Z</updated>
	<author>
		<name>Joshua D. Drake</name>
	</author>
	<content type="html">On Tue, 2009-11-10 at 13:25 +0200, Peter Eisentraut wrote:
&lt;br&gt;&amp;gt; On mån, 2009-11-09 at 15:10 -0800, Joshua D. Drake wrote:
&lt;br&gt;&amp;gt; &amp;gt; I think advocacy is a bad idea for this. It should go to the
&lt;br&gt;&amp;gt; &amp;gt; respective PUG or region list.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; It would depend on the scale of the conference, probably. &amp;nbsp;The Wales
&lt;br&gt;&amp;gt; Python User Group perhaps doesn't have to post to advocacy, but the
&lt;br&gt;&amp;gt; South American ParrotCon perhaps could.
&lt;br&gt;&lt;br&gt;Even then, I wonder if it makes more sense to then just have a sa- list?
&lt;br&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-www mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26296111&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-www@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-www&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-www&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---www-f778.html&quot; embed=&quot;fixTarget[778]&quot; target=&quot;_top&quot; &gt;PostgreSQL - www&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/speakers-mailing-list-tp26271699p26296111.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26295961</id>
	<title>Re: ORDB and dot-notation query</title>
	<published>2009-11-10T20:36:50Z</published>
	<updated>2009-11-10T20:36:50Z</updated>
	<author>
		<name>Tom Lane-2</name>
	</author>
	<content type="html">&amp;quot;ALLs.org&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26295961&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt;&amp;gt; writes:
&lt;br&gt;&amp;gt; select * from clients WHERE
&lt;br&gt;&amp;gt; address.country.tld = 'de'
&lt;br&gt;&lt;br&gt;&amp;gt; address and country are custom table and TYPE
&lt;br&gt;&lt;br&gt;&amp;gt; I receive error:
&lt;br&gt;&amp;gt; ERROR: schema &amp;quot;adress&amp;quot; does not exist*
&lt;br&gt;&lt;br&gt;Yup, because the SQL standard says that a.b.c means column c in table b
&lt;br&gt;in schema a. &amp;nbsp;You need to write
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (address.country).tld
&lt;br&gt;to get the parser started in the right direction.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; regards, tom lane
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-sql mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26295961&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-sql@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-sql&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-sql&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---sql-f777.html&quot; embed=&quot;fixTarget[777]&quot; target=&quot;_top&quot; &gt;PostgreSQL - sql&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ORDB-and-dot-notation-query-tp26295774p26295961.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26295895</id>
	<title>Re: ORDB and dot-notation query</title>
	<published>2009-11-10T20:27:06Z</published>
	<updated>2009-11-10T20:27:06Z</updated>
	<author>
		<name>ALLs.org</name>
	</author>
	<content type="html">This is tipfeler when writing mail, but in database it is 100% ok like below:&lt;br&gt;I&amp;#39;m also using Windows version, can this be reason of problem?&lt;br&gt;&lt;br&gt;When exec query:&lt;br&gt;&lt;br&gt;select * from clients WHERE&lt;br&gt;adress.country.tld = &amp;#39;de&amp;#39;&lt;br&gt;
&lt;br&gt;adress and country are custom table and TYPE &lt;br&gt;&lt;br&gt;I receive error:&lt;br&gt;&lt;br&gt;&lt;i&gt;SQL error:&lt;br&gt;
ERROR: schema &amp;quot;adress&amp;quot; does not exist&lt;/i&gt;&lt;br&gt;&lt;br&gt;Thanks&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Wed, Nov 11, 2009 at 5:15 AM, Richard Broersma &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26295895&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;richard.broersma@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;On Tue, Nov 10, 2009 at 8:11 PM, ALLs.org &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26295895&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;

&lt;br&gt;
&amp;gt; I have problem with ORDB.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; When exec query:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; select * from clients WHERE&lt;br&gt;
&amp;gt; address.country.tld = &amp;#39;de&amp;#39;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; address and country are custom table and TYPE&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; I receive error:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; SQL error:&lt;br&gt;
&amp;gt; ERROR: schema &amp;quot;adress&amp;quot; does not exist&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Do somebody have some problem and how to fix this?&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;Are you sure that you didn&amp;#39;t just misspell address?&lt;br&gt;
&lt;font color=&quot;#888888&quot;&gt;&lt;br&gt;
&lt;br&gt;
--&lt;br&gt;
Regards,&lt;br&gt;
Richard Broersma Jr.&lt;br&gt;
&lt;br&gt;
Visit the Los Angeles PostgreSQL Users Group (LAPUG)&lt;br&gt;
&lt;a href=&quot;http://pugs.postgresql.org/lapug&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://pugs.postgresql.org/lapug&lt;/a&gt;&lt;br&gt;
&lt;/font&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---sql-f777.html&quot; embed=&quot;fixTarget[777]&quot; target=&quot;_top&quot; &gt;PostgreSQL - sql&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ORDB-and-dot-notation-query-tp26295774p26295895.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26295803</id>
	<title>Re: ORDB and dot-notation query</title>
	<published>2009-11-10T20:15:48Z</published>
	<updated>2009-11-10T20:15:48Z</updated>
	<author>
		<name>Richard Broersma</name>
	</author>
	<content type="html">On Tue, Nov 10, 2009 at 8:11 PM, ALLs.org &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26295803&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I have problem with ORDB.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; When exec query:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; select * from clients WHERE
&lt;br&gt;&amp;gt; address.country.tld = 'de'
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; address and country are custom table and TYPE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I receive error:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; SQL error:
&lt;br&gt;&amp;gt; ERROR: schema &amp;quot;adress&amp;quot; does not exist
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Do somebody have some problem and how to fix this?
&lt;/div&gt;&lt;br&gt;Are you sure that you didn't just misspell address?
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Regards,
&lt;br&gt;Richard Broersma Jr.
&lt;br&gt;&lt;br&gt;Visit the Los Angeles PostgreSQL Users Group (LAPUG)
&lt;br&gt;&lt;a href=&quot;http://pugs.postgresql.org/lapug&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pugs.postgresql.org/lapug&lt;/a&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-sql mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26295803&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-sql@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-sql&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-sql&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---sql-f777.html&quot; embed=&quot;fixTarget[777]&quot; target=&quot;_top&quot; &gt;PostgreSQL - sql&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ORDB-and-dot-notation-query-tp26295774p26295803.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26295795</id>
	<title>Re: Parsing config files in a directory</title>
	<published>2009-11-10T20:14:45Z</published>
	<updated>2009-11-10T20:14:45Z</updated>
	<author>
		<name>Josh Berkus</name>
	</author>
	<content type="html">On 11/10/09 5:59 AM, Bruce Momjian wrote:
&lt;br&gt;&amp;gt; Simon Riggs wrote:
&lt;br&gt;&amp;gt;&amp;gt; All of this *also* applies to shared_preload_libraries. We also need to
&lt;br&gt;&amp;gt;&amp;gt; be able to specify new load libraries without editing the same darn
&lt;br&gt;&amp;gt;&amp;gt; parameter.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; And to search_path, though that's even more complex because the order of
&lt;br&gt;&amp;gt; the entries is significant.
&lt;br&gt;&lt;br&gt;Let's NOT start that discussion again.
&lt;br&gt;&lt;br&gt;--Josh Berkus
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-hackers mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26295795&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-hackers@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-hackers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---hackers-f780.html&quot; embed=&quot;fixTarget[780]&quot; target=&quot;_top&quot; &gt;PostgreSQL - hackers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Parsing-config-files-in-a-directory-tp26039126p26295795.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26295774</id>
	<title>ORDB and dot-notation query</title>
	<published>2009-11-10T20:11:24Z</published>
	<updated>2009-11-10T20:11:24Z</updated>
	<author>
		<name>ALLs.org</name>
	</author>
	<content type="html">Hi,&lt;br&gt;&lt;br&gt;I have problem with ORDB.&lt;br&gt;&lt;br&gt;When exec query:&lt;br&gt;&lt;br&gt;select * from clients WHERE&lt;br&gt;address.country.tld = &amp;#39;de&amp;#39;&lt;br&gt;&lt;br&gt;address and country are custom table and TYPE &lt;br&gt;&lt;br&gt;I receive error:&lt;br&gt;&lt;br&gt;&lt;i&gt;SQL error:&lt;br&gt;
ERROR: schema &amp;quot;adress&amp;quot; does not exist&lt;/i&gt;&lt;br&gt;&lt;br&gt;Do somebody have some problem and how to fix this?&lt;br&gt;&lt;br&gt;Thanks
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---sql-f777.html&quot; embed=&quot;fixTarget[777]&quot; target=&quot;_top&quot; &gt;PostgreSQL - sql&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ORDB-and-dot-notation-query-tp26295774p26295774.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26295322</id>
	<title>Deadlock on the same object?</title>
	<published>2009-11-10T19:03:13Z</published>
	<updated>2009-11-10T19:03:13Z</updated>
	<author>
		<name>ITAGAKI Takahiro-2</name>
	</author>
	<content type="html">I encountered the following log in 8.4.1 and HEAD. The deadlock occured
&lt;br&gt;on the same object (relation 17498 of database 17497). Is it reasonable?
&lt;br&gt;&lt;br&gt;ERROR: &amp;nbsp;deadlock detected
&lt;br&gt;DETAIL: Process 6313 waits for ExclusiveLock on relation 17498 of database 17497; blocked by process 6312.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Process 6312 waits for ExclusiveLock on relation 17498 of database 17497; blocked by process 6313.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Process 6313: SELECT test()
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Process 6312: SELECT test()
&lt;br&gt;HINT: &amp;nbsp;See server log for query details.
&lt;br&gt;CONTEXT: &amp;nbsp;SQL function &amp;quot;test&amp;quot; statement 1
&lt;br&gt;STATEMENT: &amp;nbsp;SELECT test()
&lt;br&gt;&lt;br&gt;(relation 17498 is table 'a')
&lt;br&gt;&lt;br&gt;&lt;br&gt;A reproducible test set is:
&lt;br&gt;----
&lt;br&gt;CREATE TABLE a (i integer PRIMARY KEY);
&lt;br&gt;CREATE TABLE b (i integer REFERENCES a(i));
&lt;br&gt;&lt;br&gt;CREATE FUNCTION test() RETURNS VOID AS
&lt;br&gt;$$
&lt;br&gt;LOCK a IN EXCLUSIVE MODE;
&lt;br&gt;LOCK b IN EXCLUSIVE MODE;
&lt;br&gt;DELETE FROM a;
&lt;br&gt;$$
&lt;br&gt;LANGUAGE sql STRICT;
&lt;br&gt;----
&lt;br&gt;&lt;br&gt;# Repeat the following commands in shell.
&lt;br&gt;psql -c &amp;quot;SELECT test()&amp;quot; &amp;
&lt;br&gt;psql -c &amp;quot;SELECT test()&amp;quot; &amp;
&lt;br&gt;psql -c &amp;quot;SELECT test()&amp;quot; &amp;
&lt;br&gt;wait
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;---
&lt;br&gt;ITAGAKI Takahiro
&lt;br&gt;NTT Open Source Software Center
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-hackers mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26295322&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-hackers@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-hackers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---hackers-f780.html&quot; embed=&quot;fixTarget[780]&quot; target=&quot;_top&quot; &gt;PostgreSQL - hackers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Deadlock-on-the-same-object--tp26295322p26295322.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26294984</id>
	<title>Re: pg_dump native format will not restore correctly</title>
	<published>2009-11-10T18:18:30Z</published>
	<updated>2009-11-10T18:18:30Z</updated>
	<author>
		<name>Scot Kreienkamp-2</name>
	</author>
	<content type="html">&lt;br&gt;I'm still not buying the theory that the dump/restore method has
&lt;br&gt;something to do with it. &amp;nbsp;You might try the test yourself: run
&lt;br&gt;pg_restore's output into a text file and compare with the text dump.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; regards, tom lane
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Haven't figured out exactly why yet, but I did find the difference as to
&lt;br&gt;why text based restore works for me but native format doesn't. &amp;nbsp;In the
&lt;br&gt;text based restore permissions are granted to all restored tables and
&lt;br&gt;the schema itself. &amp;nbsp;Using the native format permissions are granted to
&lt;br&gt;restored tables, but NOT the schema, which makes all the tables in the
&lt;br&gt;restored schema inaccessible to all but the postgres user. &amp;nbsp;This is of
&lt;br&gt;course when restoring only the schema and its contents, not the entire
&lt;br&gt;database. &amp;nbsp;
&lt;br&gt;&lt;br&gt;My text based method does a dump to a file from the production database
&lt;br&gt;immediately prior to the restore, then cats the file to psql for the
&lt;br&gt;restore. &amp;nbsp;My native format restore I'm simply restoring from last nights
&lt;br&gt;native format backup of the database and using the schema only switch to
&lt;br&gt;pg_restore. &amp;nbsp;Not sure if that makes the difference or not.
&lt;br&gt;&lt;br&gt;Thanks for the help in trying to figure this out. &amp;nbsp;I'm still looking
&lt;br&gt;into it.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Scot Kreienkamp
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-general mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26294984&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-general@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-general&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-general&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---general-f768.html&quot; embed=&quot;fixTarget[768]&quot; target=&quot;_top&quot; &gt;PostgreSQL - general&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/----pgsql-partitioning-------------------------tp26194286p26294984.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26294817</id>
	<title>libpqtypes - libpqtypes: Update changelog</title>
	<published>2009-11-10T17:57:56Z</published>
	<updated>2009-11-10T17:57:56Z</updated>
	<author>
		<name>User Achernow</name>
	</author>
	<content type="html">Log Message:
&lt;br&gt;-----------
&lt;br&gt;Update changelog
&lt;br&gt;&lt;br&gt;Modified Files:
&lt;br&gt;--------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; libpqtypes:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ChangeLog (r1.43 -&amp;gt; r1.44)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;a href=&quot;http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/libpqtypes/libpqtypes/ChangeLog?r1=1.43&amp;r2=1.44&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/libpqtypes/libpqtypes/ChangeLog?r1=1.43&amp;r2=1.44&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-committers mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26294817&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-committers@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-committers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-committers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---committers-f779.html&quot; embed=&quot;fixTarget[779]&quot; target=&quot;_top&quot; &gt;PostgreSQL - committers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libpqtypes---libpqtypes%3A-Update-changelog-tp26294817p26294817.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26294800</id>
	<title>libpqtypes - libpqtypes: Leaking type handlers in events.c during</title>
	<published>2009-11-10T17:55:44Z</published>
	<updated>2009-11-10T17:55:44Z</updated>
	<author>
		<name>User Achernow</name>
	</author>
	<content type="html">Log Message:
&lt;br&gt;-----------
&lt;br&gt;Leaking type handlers in events.c during PGEVT_CONNRESET error case.
&lt;br&gt;&lt;br&gt;Modified Files:
&lt;br&gt;--------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; libpqtypes/src:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; events.c (r1.11 -&amp;gt; r1.12)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;a href=&quot;http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/libpqtypes/libpqtypes/src/events.c?r1=1.11&amp;r2=1.12&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/libpqtypes/libpqtypes/src/events.c?r1=1.11&amp;r2=1.12&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-committers mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26294800&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-committers@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-committers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-committers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---committers-f779.html&quot; embed=&quot;fixTarget[779]&quot; target=&quot;_top&quot; &gt;PostgreSQL - committers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libpqtypes---libpqtypes%3A-Leaking-type-handlers-in-events.c-during-tp26294800p26294800.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26294342</id>
	<title>Re: I need information about PG-Day</title>
	<published>2009-11-10T17:04:21Z</published>
	<updated>2009-11-10T17:04:21Z</updated>
	<author>
		<name>Alvaro Herrera-7</name>
	</author>
	<content type="html">Josh Berkus escribió:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Really? &amp;nbsp;Then I'll be contacting our SPI liaison. &amp;nbsp;The Cuba guys are
&lt;br&gt;&amp;gt; &amp;gt; taking care of the lodging and such, so that's not a problem for me, but
&lt;br&gt;&amp;gt; &amp;gt; the airplane fares are a different story.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; SPI or pgUS would need to talk to attorneys about that.
&lt;br&gt;&lt;br&gt;Please do.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Alvaro Herrera &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.CommandPrompt.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.CommandPrompt.com/&lt;/a&gt;&lt;br&gt;The PostgreSQL Company - Command Prompt, Inc.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-advocacy mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26294342&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-advocacy@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-advocacy&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-advocacy&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---advocacy-f762.html&quot; embed=&quot;fixTarget[762]&quot; target=&quot;_top&quot; &gt;PostgreSQL - advocacy&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/I-need-information-about-PG-Day-tp26078936p26294342.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26294190</id>
	<title>Re: I need information about PG-Day</title>
	<published>2009-11-10T16:48:11Z</published>
	<updated>2009-11-10T16:48:11Z</updated>
	<author>
		<name>selena deckelmann-2</name>
	</author>
	<content type="html">On Tue, Nov 10, 2009 at 11:21 AM, Bruce Momjian &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26294190&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bruce@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; I would be glad to speak in Cuba if asked.
&lt;br&gt;&lt;br&gt;Me too!
&lt;br&gt;&lt;br&gt;Thanks for sharing the research, Bruce!
&lt;br&gt;&lt;br&gt;-selena
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&lt;a href=&quot;http://chesnok.com/daily&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://chesnok.com/daily&lt;/a&gt;&amp;nbsp;- me
&lt;br&gt;&lt;a href=&quot;http://endpoint.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://endpoint.com&lt;/a&gt;&amp;nbsp;- work
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-advocacy mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26294190&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-advocacy@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-advocacy&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-advocacy&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---advocacy-f762.html&quot; embed=&quot;fixTarget[762]&quot; target=&quot;_top&quot; &gt;PostgreSQL - advocacy&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/I-need-information-about-PG-Day-tp26078936p26294190.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26294023</id>
	<title>Database tuning at Duke</title>
	<published>2009-11-10T16:31:48Z</published>
	<updated>2009-11-10T16:31:48Z</updated>
	<author>
		<name>Greg Smith-21</name>
	</author>
	<content type="html">There's two papers published recently at Duke that I just found, both of 
&lt;br&gt;which use PostgreSQL as part of their research:
&lt;br&gt;&lt;br&gt;Automated SQL Tuning through Trial and (Sometimes) Error: &amp;nbsp;
&lt;br&gt;&lt;a href=&quot;http://www.cs.duke.edu/~shivnath/papers/dbtest09z.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.duke.edu/~shivnath/papers/dbtest09z.pdf&lt;/a&gt;&lt;br&gt;Tuning Database Configuration Parameters with iTuned: &amp;nbsp;
&lt;br&gt;&lt;a href=&quot;http://www.cs.duke.edu/~shivnath/papers/ituned.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cs.duke.edu/~shivnath/papers/ituned.pdf&lt;/a&gt;&lt;br&gt;&lt;br&gt;The second has a number of interesting graphs showing how changing two 
&lt;br&gt;postgresql.conf parameters at a time interact with one another. &amp;nbsp;There's 
&lt;br&gt;also a set of graphs comparing the default postgresql.conf performance 
&lt;br&gt;with what you get using the guidelines suggested by an earlier version 
&lt;br&gt;of &lt;a href=&quot;http://wiki.postgresql.org/wiki/Tuning_Your_PostgreSQL_Server&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.postgresql.org/wiki/Tuning_Your_PostgreSQL_Server&lt;/a&gt;&amp;nbsp;and 
&lt;br&gt;some of the documents on that section of the wiki. &amp;nbsp;Check out &amp;nbsp;page 10, 
&lt;br&gt;the &amp;quot;M&amp;quot; column represents that manual tuning against the leftmost &amp;quot;D&amp;quot; 
&lt;br&gt;which is the stock postgresql.conf settings.
&lt;br&gt;&lt;br&gt;I was a bit confused at first about the environment because of how the 
&lt;br&gt;paper is organized, here's the bit that clarifies it: &amp;nbsp;&amp;quot;The database 
&lt;br&gt;size with indexes is around 4GB. The physical memory (RAM) given to the 
&lt;br&gt;database is 1GB to create a realistic scenario where the database is 4x 
&lt;br&gt;the amount of RAM.&amp;quot; &amp;nbsp;That RAM limit was constrained with a Solaris 
&lt;br&gt;zone. &amp;nbsp;They multiplied the 1GB x 20% to get a standard &amp;quot;rule-based&amp;quot; 
&lt;br&gt;setting of shared_buffers of 200MB (based on the guidelines on the wiki 
&lt;br&gt;at the time--that suggestion is now 25%).
&lt;br&gt;&lt;br&gt;Note that much of the improvement shown in their better tuned versions 
&lt;br&gt;there results from increases to shared_buffers (peaking at 40%=400MB) 
&lt;br&gt;and work_mem beyond the recommendations given in the tuning guide. &amp;nbsp;That 
&lt;br&gt;is unsurprising as those are aimed more to be reasonable starting values 
&lt;br&gt;rather than suggested as truly optimal. &amp;nbsp;work_mem is particular is 
&lt;br&gt;dangerous to suggest raising really high without knowing what types of 
&lt;br&gt;queries are going to be run. &amp;nbsp;There's been plenty of commentary on this 
&lt;br&gt;list suggesting optimal shared_buffers is closer to 50% of RAM than 25% 
&lt;br&gt;for some workloads, so their results showing peak performance at 40% fit 
&lt;br&gt;right in the middle of community lore.
&lt;br&gt;&lt;br&gt;I'm now in contact with the authors and asked them to let me know whey 
&lt;br&gt;publish the entire post-optimization postgresql.conf, I'll let the list 
&lt;br&gt;know when that's available. &amp;nbsp;I'm quite curious to see what the final 
&lt;br&gt;settings that gave the best results looked like.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Greg Smith &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26294023&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;greg@...&lt;/a&gt; &amp;nbsp; &amp;nbsp;Baltimore, MD
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-performance mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26294023&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-performance@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-performance&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-performance&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---performance-f774.html&quot; embed=&quot;fixTarget[774]&quot; target=&quot;_top&quot; &gt;PostgreSQL - performance&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Database-tuning-at-Duke-tp26294023p26294023.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26293962</id>
	<title>Re: Pros / cons for indexing a small table</title>
	<published>2009-11-10T16:26:29Z</published>
	<updated>2009-11-10T16:26:29Z</updated>
	<author>
		<name>Kris Kewley</name>
	</author>
	<content type="html">On point 2.
&lt;br&gt;&lt;br&gt;When adding an index u need to consider how u will be querying the &amp;nbsp;
&lt;br&gt;table.
&lt;br&gt;&lt;br&gt;In the example provided indicating that column Id was added for best &amp;nbsp;
&lt;br&gt;practice is in my opinion incorrect.
&lt;br&gt;&lt;br&gt;Index is added to avoid full sequential table scan. Could be wrong but &amp;nbsp;
&lt;br&gt;Id as you have defined its use is going to have 0 positive impact &amp;nbsp;
&lt;br&gt;unless u plan to reference it in where clause.
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;Kris
&lt;br&gt;&lt;br&gt;On 10-Nov-09, at 6:25, Rikard Bosnjakovic &amp;nbsp;
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26293962&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rikard.bosnjakovic@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I'm having a simple table for managing hit counts on WWW. The table
&lt;br&gt;&amp;gt; was setup some year ago using this:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; CREATE TABLE hit_counts (
&lt;br&gt;&amp;gt; &amp;nbsp;page varchar(255),
&lt;br&gt;&amp;gt; &amp;nbsp;hits integer,
&lt;br&gt;&amp;gt; &amp;nbsp;last_visit timestamp,
&lt;br&gt;&amp;gt; &amp;nbsp;id serial primary key
&lt;br&gt;&amp;gt; );
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; When updating a hit, I use this PHP-code:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;$q = &amp;quot;SELECT hits FROM hit_counters WHERE page='$this_uri'&amp;quot;;
&lt;br&gt;&amp;gt; &amp;nbsp;$res = pg_query($db, $q);
&lt;br&gt;&amp;gt; &amp;nbsp;if (pg_num_rows($res) == 0) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;$q = &amp;quot;INSERT INTO hit_counters (page) VALUES ('$this_uri')&amp;quot;;
&lt;br&gt;&amp;gt; &amp;nbsp;} else {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;$row = pg_fetch_object($res);
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;$hits = $row-&amp;gt;hits;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;$hits++;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;$q = &amp;quot;UPDATE hit_counters SET last_visit = (SELECT
&lt;br&gt;&amp;gt; localtimestamp(0)), hits = $hits WHERE page='$this_uri'&amp;quot;;
&lt;br&gt;&amp;gt; &amp;nbsp;}
&lt;br&gt;&amp;gt; &amp;nbsp;pg_query($db, $q);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; In other words, if the actual page is not in the table it is inserted.
&lt;br&gt;&amp;gt; Otherwise the &amp;quot;hits&amp;quot; is increased by one. The id-column is never used,
&lt;br&gt;&amp;gt; I simply appended it because of &amp;quot;good practise&amp;quot; using a primary key
&lt;br&gt;&amp;gt; for all my tables.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Now, my questions are:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 1. Since the id-column is never used, I will probably drop it to save
&lt;br&gt;&amp;gt; some space. Or, is there any point in keeping it?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2. From what I've read in the manual and what other people have told
&lt;br&gt;&amp;gt; me, creating an index can speed up table accessing. I tried by adding
&lt;br&gt;&amp;gt; an index to the page-column in the above table. Then by using ANALYZE
&lt;br&gt;&amp;gt; and EXPLAIN, the cost got reduced from 259 to 6 which I guess is a
&lt;br&gt;&amp;gt; pretty big save although I'm not sure what the value really is. Is
&lt;br&gt;&amp;gt; creating an index on 'page' the best way to speed up this particular
&lt;br&gt;&amp;gt; table?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 3. The page-column is queried using full length strings (no regexps or
&lt;br&gt;&amp;gt; wildcards). Will there be any performance issues if I have the
&lt;br&gt;&amp;gt; page-column indexed and then run wildcard-queries on it? What I mean
&lt;br&gt;&amp;gt; is, if I run wildcard-queries on this indexed column, will the index
&lt;br&gt;&amp;gt; be of any use at all?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; - Rikard
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; Sent via pgsql-novice mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26293962&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-novice@...&lt;/a&gt;)
&lt;br&gt;&amp;gt; To make changes to your subscription:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-novice&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-novice&lt;/a&gt;&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-novice mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26293962&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-novice@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-novice&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-novice&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---novice-f772.html&quot; embed=&quot;fixTarget[772]&quot; target=&quot;_top&quot; &gt;PostgreSQL - novice&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pros---cons-for-indexing-a-small-table-tp26281887p26293962.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26293942</id>
	<title>Re: I need information about PG-Day</title>
	<published>2009-11-10T16:24:37Z</published>
	<updated>2009-11-10T16:24:37Z</updated>
	<author>
		<name>Josh Berkus</name>
	</author>
	<content type="html">&lt;br&gt;&amp;gt; Really? &amp;nbsp;Then I'll be contacting our SPI liaison. &amp;nbsp;The Cuba guys are
&lt;br&gt;&amp;gt; taking care of the lodging and such, so that's not a problem for me, but
&lt;br&gt;&amp;gt; the airplane fares are a different story.
&lt;br&gt;&lt;br&gt;SPI or pgUS would need to talk to attorneys about that.
&lt;br&gt;&lt;br&gt;--Josh Berkus
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-advocacy mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26293942&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-advocacy@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-advocacy&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-advocacy&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---advocacy-f762.html&quot; embed=&quot;fixTarget[762]&quot; target=&quot;_top&quot; &gt;PostgreSQL - advocacy&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/I-need-information-about-PG-Day-tp26078936p26293942.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26293166</id>
	<title>Re: [GENERAL] PostgreSQL 8.3.8 on AIX5.3 : compilation failed</title>
	<published>2009-11-10T15:15:19Z</published>
	<updated>2009-11-10T15:15:19Z</updated>
	<author>
		<name>Tom Lane-2</name>
	</author>
	<content type="html">&amp;quot;Albe Laurenz&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26293166&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;laurenz.albe@...&lt;/a&gt;&amp;gt; writes:
&lt;br&gt;&amp;gt; The problem is that both _LARGE_FILES and _LARGE_FILE_API are #defined
&lt;br&gt;&amp;gt; in this case, which makes #include &amp;lt;unistd.h&amp;gt; fail.
&lt;br&gt;&amp;gt; Does anyone have an idea how to best fix this problem in the
&lt;br&gt;&amp;gt; source tree? I'm willing to implement and test.
&lt;br&gt;&lt;br&gt;I've committed changes for this in CVS, please verify it fixes your
&lt;br&gt;problem.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; regards, tom lane
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-hackers mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26293166&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-hackers@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-hackers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---hackers-f780.html&quot; embed=&quot;fixTarget[780]&quot; target=&quot;_top&quot; &gt;PostgreSQL - hackers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A--GENERAL--PostgreSQL-8.3.8-on-AIX5.3-%3A-compilation-failed-tp26281855p26293166.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26293174</id>
	<title>Re: [HACKERS] PostgreSQL 8.3.8 on AIX5.3 : compilation failed</title>
	<published>2009-11-10T15:15:19Z</published>
	<updated>2009-11-10T15:15:19Z</updated>
	<author>
		<name>Tom Lane-2</name>
	</author>
	<content type="html">&amp;quot;Albe Laurenz&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26293174&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;laurenz.albe@...&lt;/a&gt;&amp;gt; writes:
&lt;br&gt;&amp;gt; The problem is that both _LARGE_FILES and _LARGE_FILE_API are #defined
&lt;br&gt;&amp;gt; in this case, which makes #include &amp;lt;unistd.h&amp;gt; fail.
&lt;br&gt;&amp;gt; Does anyone have an idea how to best fix this problem in the
&lt;br&gt;&amp;gt; source tree? I'm willing to implement and test.
&lt;br&gt;&lt;br&gt;I've committed changes for this in CVS, please verify it fixes your
&lt;br&gt;problem.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; regards, tom lane
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-general mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26293174&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-general@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-general&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-general&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---general-f768.html&quot; embed=&quot;fixTarget[768]&quot; target=&quot;_top&quot; &gt;PostgreSQL - general&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PostgreSQL-8.3.8-on-AIX5.3-%3A-compilation-failed-tp26263099p26293174.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26293133</id>
	<title>pgsql: Do not build psql's flex module on its own, but instead include</title>
	<published>2009-11-10T15:12:52Z</published>
	<updated>2009-11-10T15:12:52Z</updated>
	<author>
		<name>Tom Lane-3</name>
	</author>
	<content type="html">Log Message:
&lt;br&gt;-----------
&lt;br&gt;Do not build psql's flex module on its own, but instead include it in
&lt;br&gt;mainloop.c. &amp;nbsp;This ensures that postgres_fe.h is read before including
&lt;br&gt;any system headers, which is necessary to avoid problems on some platforms
&lt;br&gt;where we make nondefault selections of feature macros for stdio.h or
&lt;br&gt;other headers. &amp;nbsp;We have had this policy for flex modules in the backend
&lt;br&gt;for many years, but for some reason it was not applied to psql.
&lt;br&gt;Per trouble report from Alexandra Roy and diagnosis by Albe Laurenz.
&lt;br&gt;&lt;br&gt;Tags:
&lt;br&gt;----
&lt;br&gt;REL8_0_STABLE
&lt;br&gt;&lt;br&gt;Modified Files:
&lt;br&gt;--------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; pgsql/src/bin/psql:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Makefile (r1.52.4.1 -&amp;gt; r1.52.4.2)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;a href=&quot;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/Makefile?r1=1.52.4.1&amp;r2=1.52.4.2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/Makefile?r1=1.52.4.1&amp;r2=1.52.4.2&lt;/a&gt;)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mainloop.c (r1.66 -&amp;gt; r1.66.4.1)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;a href=&quot;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/mainloop.c?r1=1.66&amp;r2=1.66.4.1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/mainloop.c?r1=1.66&amp;r2=1.66.4.1&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-committers mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26293133&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-committers@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-committers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-committers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---committers-f779.html&quot; embed=&quot;fixTarget[779]&quot; target=&quot;_top&quot; &gt;PostgreSQL - committers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/pgsql%3A-Do-not-build-psql%27s-flex-module-on-its-own%2C-but-instead-include-tp26293133p26293133.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26293131</id>
	<title>pgsql: Do not build psql's flex module on its own, but instead include</title>
	<published>2009-11-10T15:12:44Z</published>
	<updated>2009-11-10T15:12:44Z</updated>
	<author>
		<name>Tom Lane-3</name>
	</author>
	<content type="html">Log Message:
&lt;br&gt;-----------
&lt;br&gt;Do not build psql's flex module on its own, but instead include it in
&lt;br&gt;mainloop.c. &amp;nbsp;This ensures that postgres_fe.h is read before including
&lt;br&gt;any system headers, which is necessary to avoid problems on some platforms
&lt;br&gt;where we make nondefault selections of feature macros for stdio.h or
&lt;br&gt;other headers. &amp;nbsp;We have had this policy for flex modules in the backend
&lt;br&gt;for many years, but for some reason it was not applied to psql.
&lt;br&gt;Per trouble report from Alexandra Roy and diagnosis by Albe Laurenz.
&lt;br&gt;&lt;br&gt;Tags:
&lt;br&gt;----
&lt;br&gt;REL8_1_STABLE
&lt;br&gt;&lt;br&gt;Modified Files:
&lt;br&gt;--------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; pgsql/src/bin/psql:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Makefile (r1.54 -&amp;gt; r1.54.2.1)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;a href=&quot;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/Makefile?r1=1.54&amp;r2=1.54.2.1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/Makefile?r1=1.54&amp;r2=1.54.2.1&lt;/a&gt;)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mainloop.c (r1.68 -&amp;gt; r1.68.2.1)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;a href=&quot;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/mainloop.c?r1=1.68&amp;r2=1.68.2.1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/mainloop.c?r1=1.68&amp;r2=1.68.2.1&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-committers mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26293131&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-committers@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-committers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-committers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---committers-f779.html&quot; embed=&quot;fixTarget[779]&quot; target=&quot;_top&quot; &gt;PostgreSQL - committers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/pgsql%3A-Do-not-build-psql%27s-flex-module-on-its-own%2C-but-instead-include-tp26293131p26293131.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26293130</id>
	<title>pgsql: Do not build psql's flex module on its own, but instead include</title>
	<published>2009-11-10T15:12:37Z</published>
	<updated>2009-11-10T15:12:37Z</updated>
	<author>
		<name>Tom Lane-3</name>
	</author>
	<content type="html">Log Message:
&lt;br&gt;-----------
&lt;br&gt;Do not build psql's flex module on its own, but instead include it in
&lt;br&gt;mainloop.c. &amp;nbsp;This ensures that postgres_fe.h is read before including
&lt;br&gt;any system headers, which is necessary to avoid problems on some platforms
&lt;br&gt;where we make nondefault selections of feature macros for stdio.h or
&lt;br&gt;other headers. &amp;nbsp;We have had this policy for flex modules in the backend
&lt;br&gt;for many years, but for some reason it was not applied to psql.
&lt;br&gt;Per trouble report from Alexandra Roy and diagnosis by Albe Laurenz.
&lt;br&gt;&lt;br&gt;Tags:
&lt;br&gt;----
&lt;br&gt;REL8_2_STABLE
&lt;br&gt;&lt;br&gt;Modified Files:
&lt;br&gt;--------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; pgsql/src/bin/psql:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Makefile (r1.57 -&amp;gt; r1.57.2.1)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;a href=&quot;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/Makefile?r1=1.57&amp;r2=1.57.2.1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/Makefile?r1=1.57&amp;r2=1.57.2.1&lt;/a&gt;)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mainloop.c (r1.84 -&amp;gt; r1.84.2.1)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;a href=&quot;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/mainloop.c?r1=1.84&amp;r2=1.84.2.1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/mainloop.c?r1=1.84&amp;r2=1.84.2.1&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-committers mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26293130&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-committers@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-committers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-committers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---committers-f779.html&quot; embed=&quot;fixTarget[779]&quot; target=&quot;_top&quot; &gt;PostgreSQL - committers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/pgsql%3A-Do-not-build-psql%27s-flex-module-on-its-own%2C-but-instead-include-tp26293130p26293130.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26293128</id>
	<title>pgsql: Do not build psql's flex module on its own, but instead include</title>
	<published>2009-11-10T15:12:29Z</published>
	<updated>2009-11-10T15:12:29Z</updated>
	<author>
		<name>Tom Lane-3</name>
	</author>
	<content type="html">Log Message:
&lt;br&gt;-----------
&lt;br&gt;Do not build psql's flex module on its own, but instead include it in
&lt;br&gt;mainloop.c. &amp;nbsp;This ensures that postgres_fe.h is read before including
&lt;br&gt;any system headers, which is necessary to avoid problems on some platforms
&lt;br&gt;where we make nondefault selections of feature macros for stdio.h or
&lt;br&gt;other headers. &amp;nbsp;We have had this policy for flex modules in the backend
&lt;br&gt;for many years, but for some reason it was not applied to psql.
&lt;br&gt;Per trouble report from Alexandra Roy and diagnosis by Albe Laurenz.
&lt;br&gt;&lt;br&gt;Tags:
&lt;br&gt;----
&lt;br&gt;REL8_3_STABLE
&lt;br&gt;&lt;br&gt;Modified Files:
&lt;br&gt;--------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; pgsql/src/bin/psql:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Makefile (r1.60 -&amp;gt; r1.60.2.1)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;a href=&quot;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/Makefile?r1=1.60&amp;r2=1.60.2.1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/Makefile?r1=1.60&amp;r2=1.60.2.1&lt;/a&gt;)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mainloop.c (r1.87 -&amp;gt; r1.87.2.1)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;a href=&quot;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/mainloop.c?r1=1.87&amp;r2=1.87.2.1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/mainloop.c?r1=1.87&amp;r2=1.87.2.1&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-committers mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26293128&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-committers@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-committers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-committers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---committers-f779.html&quot; embed=&quot;fixTarget[779]&quot; target=&quot;_top&quot; &gt;PostgreSQL - committers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/pgsql%3A-Do-not-build-psql%27s-flex-module-on-its-own%2C-but-instead-include-tp26293128p26293128.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26293125</id>
	<title>pgsql: Do not build psql's flex module on its own, but instead include</title>
	<published>2009-11-10T15:12:21Z</published>
	<updated>2009-11-10T15:12:21Z</updated>
	<author>
		<name>Tom Lane-3</name>
	</author>
	<content type="html">Log Message:
&lt;br&gt;-----------
&lt;br&gt;Do not build psql's flex module on its own, but instead include it in
&lt;br&gt;mainloop.c. &amp;nbsp;This ensures that postgres_fe.h is read before including
&lt;br&gt;any system headers, which is necessary to avoid problems on some platforms
&lt;br&gt;where we make nondefault selections of feature macros for stdio.h or
&lt;br&gt;other headers. &amp;nbsp;We have had this policy for flex modules in the backend
&lt;br&gt;for many years, but for some reason it was not applied to psql.
&lt;br&gt;Per trouble report from Alexandra Roy and diagnosis by Albe Laurenz.
&lt;br&gt;&lt;br&gt;Tags:
&lt;br&gt;----
&lt;br&gt;REL8_4_STABLE
&lt;br&gt;&lt;br&gt;Modified Files:
&lt;br&gt;--------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; pgsql/src/bin/psql:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Makefile (r1.63 -&amp;gt; r1.63.2.1)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;a href=&quot;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/Makefile?r1=1.63&amp;r2=1.63.2.1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/Makefile?r1=1.63&amp;r2=1.63.2.1&lt;/a&gt;)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mainloop.c (r1.95 -&amp;gt; r1.95.2.1)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;a href=&quot;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/mainloop.c?r1=1.95&amp;r2=1.95.2.1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/mainloop.c?r1=1.95&amp;r2=1.95.2.1&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-committers mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26293125&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-committers@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-committers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-committers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---committers-f779.html&quot; embed=&quot;fixTarget[779]&quot; target=&quot;_top&quot; &gt;PostgreSQL - committers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/pgsql%3A-Do-not-build-psql%27s-flex-module-on-its-own%2C-but-instead-include-tp26293125p26293125.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26293122</id>
	<title>pgsql: Do not build psql's flex module on its own, but instead include</title>
	<published>2009-11-10T15:12:13Z</published>
	<updated>2009-11-10T15:12:13Z</updated>
	<author>
		<name>Tom Lane-3</name>
	</author>
	<content type="html">Log Message:
&lt;br&gt;-----------
&lt;br&gt;Do not build psql's flex module on its own, but instead include it in
&lt;br&gt;mainloop.c. &amp;nbsp;This ensures that postgres_fe.h is read before including
&lt;br&gt;any system headers, which is necessary to avoid problems on some platforms
&lt;br&gt;where we make nondefault selections of feature macros for stdio.h or
&lt;br&gt;other headers. &amp;nbsp;We have had this policy for flex modules in the backend
&lt;br&gt;for many years, but for some reason it was not applied to psql.
&lt;br&gt;Per trouble report from Alexandra Roy and diagnosis by Albe Laurenz.
&lt;br&gt;&lt;br&gt;Modified Files:
&lt;br&gt;--------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; pgsql/src/bin/psql:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Makefile (r1.66 -&amp;gt; r1.67)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;a href=&quot;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/Makefile?r1=1.66&amp;r2=1.67&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/Makefile?r1=1.66&amp;r2=1.67&lt;/a&gt;)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mainloop.c (r1.95 -&amp;gt; r1.96)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;a href=&quot;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/mainloop.c?r1=1.95&amp;r2=1.96&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/mainloop.c?r1=1.95&amp;r2=1.96&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-committers mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26293122&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-committers@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-committers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-committers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---committers-f779.html&quot; embed=&quot;fixTarget[779]&quot; target=&quot;_top&quot; &gt;PostgreSQL - committers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/pgsql%3A-Do-not-build-psql%27s-flex-module-on-its-own%2C-but-instead-include-tp26293122p26293122.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26292824</id>
	<title>Missing pgagent on 1.10.0 FreeBSD port?</title>
	<published>2009-11-10T14:40:12Z</published>
	<updated>2009-11-10T14:40:12Z</updated>
	<author>
		<name>Benjamin Krajmalnik</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:x=&quot;urn:schemas-microsoft-com:office:excel&quot; xmlns:p=&quot;urn:schemas-microsoft-com:office:powerpoint&quot; xmlns:a=&quot;urn:schemas-microsoft-com:office:access&quot; xmlns:dt=&quot;uuid:C2F41010-65B3-11d1-A29F-00AA00C14882&quot; xmlns:s=&quot;uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882&quot; xmlns:rs=&quot;urn:schemas-microsoft-com:rowset&quot; xmlns:Z=&quot;urn:schemas-microsoft-com:&quot; xmlns:b=&quot;urn:schemas-microsoft-com:office:publisher&quot; xmlns:ss=&quot;urn:schemas-microsoft-com:office:spreadsheet&quot; xmlns:c=&quot;urn:schemas-microsoft-com:office:component:spreadsheet&quot; xmlns:odc=&quot;urn:schemas-microsoft-com:office:odc&quot; xmlns:oa=&quot;urn:schemas-microsoft-com:office:activation&quot; xmlns:html=&quot;http://www.w3.org/TR/REC-html40&quot; xmlns:q=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:rtc=&quot;http://microsoft.com/officenet/conferencing&quot; xmlns:D=&quot;DAV:&quot; xmlns:Repl=&quot;http://schemas.microsoft.com/repl/&quot; xmlns:mt=&quot;http://schemas.microsoft.com/sharepoint/soap/meetings/&quot; xmlns:x2=&quot;http://schemas.microsoft.com/office/excel/2003/xml&quot; xmlns:ppda=&quot;http://www.passport.com/NameSpace.xsd&quot; xmlns:ois=&quot;http://schemas.microsoft.com/sharepoint/soap/ois/&quot; xmlns:dir=&quot;http://schemas.microsoft.com/sharepoint/soap/directory/&quot; xmlns:ds=&quot;http://www.w3.org/2000/09/xmldsig#&quot; xmlns:dsp=&quot;http://schemas.microsoft.com/sharepoint/dsp&quot; xmlns:udc=&quot;http://schemas.microsoft.com/data/udc&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:sub=&quot;http://schemas.microsoft.com/sharepoint/soap/2002/1/alerts/&quot; xmlns:ec=&quot;http://www.w3.org/2001/04/xmlenc#&quot; xmlns:sp=&quot;http://schemas.microsoft.com/sharepoint/&quot; xmlns:sps=&quot;http://schemas.microsoft.com/sharepoint/soap/&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xmlns:udcs=&quot;http://schemas.microsoft.com/data/udc/soap&quot; xmlns:udcxf=&quot;http://schemas.microsoft.com/data/udc/xmlfile&quot; xmlns:udcp2p=&quot;http://schemas.microsoft.com/data/udc/parttopart&quot; xmlns:wf=&quot;http://schemas.microsoft.com/sharepoint/soap/workflow/&quot; xmlns:dsss=&quot;http://schemas.microsoft.com/office/2006/digsig-setup&quot; xmlns:dssi=&quot;http://schemas.microsoft.com/office/2006/digsig&quot; xmlns:mdssi=&quot;http://schemas.openxmlformats.org/package/2006/digital-signature&quot; xmlns:mver=&quot;http://schemas.openxmlformats.org/markup-compatibility/2006&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns:mrels=&quot;http://schemas.openxmlformats.org/package/2006/relationships&quot; xmlns:spwp=&quot;http://microsoft.com/sharepoint/webpartpages&quot; xmlns:ex12t=&quot;http://schemas.microsoft.com/exchange/services/2006/types&quot; xmlns:ex12m=&quot;http://schemas.microsoft.com/exchange/services/2006/messages&quot; xmlns:pptsl=&quot;http://schemas.microsoft.com/sharepoint/soap/SlideLibrary/&quot; xmlns:spsl=&quot;http://microsoft.com/webservices/SharePointPortalServer/PublishedLinksService&quot; xmlns:st=&quot;&amp;#1;&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;META HTTP-EQUIV=&quot;Content-Type&quot; CONTENT=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=EN-US link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;It appears that pgagent is missing from the FreeBSD port of
pgAdmin3 1.10.0.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;Can someone confirm this?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;I just built a new test environment and unfortunately
pgagent does not appear to be installed when installing pgAdmin.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;TIA&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---pgadmin-support-f784.html&quot; embed=&quot;fixTarget[784]&quot; target=&quot;_top&quot; &gt;PostgreSQL - pgadmin support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Missing-pgagent-on-1.10.0-FreeBSD-port--tp26292824p26292824.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26292618</id>
	<title>Re: [GENERAL] PostgreSQL 8.3.8 on AIX5.3 : compilation failed</title>
	<published>2009-11-10T14:36:50Z</published>
	<updated>2009-11-10T14:36:50Z</updated>
	<author>
		<name>Tom Lane-2</name>
	</author>
	<content type="html">Alvaro Herrera &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292618&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;alvherre@...&lt;/a&gt;&amp;gt; writes:
&lt;br&gt;&amp;gt; Tom Lane wrote:
&lt;br&gt;&amp;gt;&amp;gt; In most of the other cases the #include is done in an associated .y
&lt;br&gt;&amp;gt;&amp;gt; file, but there is none in psql. &amp;nbsp;Anyone have a thought which of
&lt;br&gt;&amp;gt;&amp;gt; psql's .c files would be the most appropriate host?
&lt;br&gt;&lt;br&gt;&amp;gt; mainloop.c?
&lt;br&gt;&lt;br&gt;Yeah, that's about the same conclusion I had come to --- that's
&lt;br&gt;the principal caller so it's the closest analog to what we do
&lt;br&gt;elsewhere.
&lt;br&gt;&lt;br&gt;Will fix.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; regards, tom lane
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-hackers mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292618&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-hackers@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-hackers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---hackers-f780.html&quot; embed=&quot;fixTarget[780]&quot; target=&quot;_top&quot; &gt;PostgreSQL - hackers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A--GENERAL--PostgreSQL-8.3.8-on-AIX5.3-%3A-compilation-failed-tp26281855p26292618.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26292616</id>
	<title>Re: [HACKERS] PostgreSQL 8.3.8 on AIX5.3 : compilation failed</title>
	<published>2009-11-10T14:36:50Z</published>
	<updated>2009-11-10T14:36:50Z</updated>
	<author>
		<name>Tom Lane-2</name>
	</author>
	<content type="html">Alvaro Herrera &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292616&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;alvherre@...&lt;/a&gt;&amp;gt; writes:
&lt;br&gt;&amp;gt; Tom Lane wrote:
&lt;br&gt;&amp;gt;&amp;gt; In most of the other cases the #include is done in an associated .y
&lt;br&gt;&amp;gt;&amp;gt; file, but there is none in psql. &amp;nbsp;Anyone have a thought which of
&lt;br&gt;&amp;gt;&amp;gt; psql's .c files would be the most appropriate host?
&lt;br&gt;&lt;br&gt;&amp;gt; mainloop.c?
&lt;br&gt;&lt;br&gt;Yeah, that's about the same conclusion I had come to --- that's
&lt;br&gt;the principal caller so it's the closest analog to what we do
&lt;br&gt;elsewhere.
&lt;br&gt;&lt;br&gt;Will fix.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; regards, tom lane
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-general mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292616&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-general@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-general&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-general&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---general-f768.html&quot; embed=&quot;fixTarget[768]&quot; target=&quot;_top&quot; &gt;PostgreSQL - general&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PostgreSQL-8.3.8-on-AIX5.3-%3A-compilation-failed-tp26263099p26292616.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26292422</id>
	<title>Re: Incremental Backups in postgres</title>
	<published>2009-11-10T14:25:15Z</published>
	<updated>2009-11-10T14:25:15Z</updated>
	<author>
		<name>akp geek</name>
	</author>
	<content type="html">&lt;div&gt;I have set up the replication using Bucardo. This is just an additional set up&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;regards&lt;br&gt;&lt;br&gt;&lt;/div&gt;
&lt;div class=&quot;gmail_quote&quot;&gt;On Tue, Nov 10, 2009 at 5:09 PM, silly8888 &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292422&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;silly8888@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote style=&quot;BORDER-LEFT: #ccc 1px solid; MARGIN: 0px 0px 0px 0.8ex; PADDING-LEFT: 1ex&quot; class=&quot;gmail_quote&quot;&gt;How about using replication instead of incremental backups?&lt;br&gt;
&lt;div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div class=&quot;h5&quot;&gt;&lt;br&gt;On Tue, Nov 10, 2009 at 4:56 PM, Alan Hodgson &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292422&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ahodgson@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt; On Tuesday 10 November 2009, akp geek &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292422&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;akpgeek@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;
&amp;gt;&amp;gt; So Is it always good to have the backup using PG_dump instead of PITR or&lt;br&gt;&amp;gt;&amp;gt; a combination of both&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; I like to do both. Ongoing PITR, daily base backups (by updating an rsync&lt;br&gt;
&amp;gt; copy), and weekly pg_dumps that in turn go to tape.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; PITR gives a very recent restore point in the event of server loss. As&lt;br&gt;&amp;gt; previously mentioned, the full (custom) backups let you restore individual&lt;br&gt;
&amp;gt; tables. They&amp;#39;re also a lot smaller than base backups + WAL logs.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; --&lt;br&gt;&amp;gt; &amp;quot;No animals were harmed in the recording of this episode. We tried but that&lt;br&gt;&amp;gt; damn monkey was just too fast.&amp;quot;&lt;br&gt;
&amp;gt;&lt;br&gt;&amp;gt; --&lt;br&gt;&amp;gt; Sent via pgsql-general mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292422&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-general@...&lt;/a&gt;)&lt;br&gt;&amp;gt; To make changes to your subscription:&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-general&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-general&lt;/a&gt;&lt;br&gt;
&amp;gt;&lt;br&gt;&lt;br&gt;--&lt;br&gt;Sent via pgsql-general mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292422&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-general@...&lt;/a&gt;)&lt;br&gt;To make changes to your subscription:&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-general&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-general&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---general-f768.html&quot; embed=&quot;fixTarget[768]&quot; target=&quot;_top&quot; &gt;PostgreSQL - general&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Incremental-Backups-in-postgres-tp26277490p26292422.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26292286</id>
	<title>Re: BUG #5178: make check fails because of locale en_AU.US-ASCII</title>
	<published>2009-11-10T14:15:34Z</published>
	<updated>2009-11-10T14:15:34Z</updated>
	<author>
		<name>Tom Lane-2</name>
	</author>
	<content type="html">Peter Eisentraut &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292286&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;peter_e@...&lt;/a&gt;&amp;gt; writes:
&lt;br&gt;&amp;gt; On tis, 2009-11-10 at 20:45 +0000, Boh Yap wrote:
&lt;br&gt;&amp;gt;&amp;gt; could not determine encoding for locale &amp;quot;en_AU.US-ASCII&amp;quot;: codeset is
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;US-ASCII&amp;quot;
&lt;br&gt;&lt;br&gt;&amp;gt; Try using a different locale.
&lt;br&gt;&lt;br&gt;Or specify an encoding explicitly.
&lt;br&gt;&lt;br&gt;I was wondering what we ought to do about this. &amp;nbsp;I can't find any clear
&lt;br&gt;documentation about these locales on my Mac, but it sure looks like they
&lt;br&gt;are effectively encoding-agnostic, which means that it might be
&lt;br&gt;reasonable to default to SQL_ASCII --- anyway there is certainly not any
&lt;br&gt;basis for selecting a different default. &amp;nbsp;However, if we want to do that
&lt;br&gt;it's not a one-liner change, because the API for
&lt;br&gt;pg_get_encoding_from_locale isn't designed to allow for this.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; regards, tom lane
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-bugs mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292286&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-bugs@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-bugs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-bugs&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---bugs-f764.html&quot; embed=&quot;fixTarget[764]&quot; target=&quot;_top&quot; &gt;PostgreSQL - bugs&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/BUG--5178%3A-make-check-fails-because-of-locale--en_AU.US-ASCII-tp26290979p26292286.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26292220</id>
	<title>Re: Editor for sgml files</title>
	<published>2009-11-10T14:10:31Z</published>
	<updated>2009-11-10T14:10:31Z</updated>
	<author>
		<name>Richard Broersma</name>
	</author>
	<content type="html">On Tue, Nov 10, 2009 at 2:04 PM, Peter Eisentraut &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292220&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;peter_e@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Well, a lot of hard work. ;-)  Just like there are coding standards and
&lt;br&gt;&amp;gt; best practices, there are standards and customs in writing and
&lt;br&gt;&amp;gt; publishing.
&lt;br&gt;&lt;br&gt;Are these published anywhere?
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Regards,
&lt;br&gt;Richard Broersma Jr.
&lt;br&gt;&lt;br&gt;Visit the Los Angeles PostgreSQL Users Group (LAPUG)
&lt;br&gt;&lt;a href=&quot;http://pugs.postgresql.org/lapug&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pugs.postgresql.org/lapug&lt;/a&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-general mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292220&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-general@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-general&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-general&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---general-f768.html&quot; embed=&quot;fixTarget[768]&quot; target=&quot;_top&quot; &gt;PostgreSQL - general&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Editor-for-sgml-files-tp26277206p26292220.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26292199</id>
	<title>Re: Incremental Backups in postgres</title>
	<published>2009-11-10T14:09:55Z</published>
	<updated>2009-11-10T14:09:55Z</updated>
	<author>
		<name>silly8888</name>
	</author>
	<content type="html">How about using replication instead of incremental backups?
&lt;br&gt;&lt;br&gt;On Tue, Nov 10, 2009 at 4:56 PM, Alan Hodgson &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292199&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ahodgson@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Tuesday 10 November 2009, akp geek &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292199&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;akpgeek@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; So Is it always good to have the backup using PG_dump instead of PITR or
&lt;br&gt;&amp;gt;&amp;gt; a combination of both
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I like to do both. Ongoing PITR, daily base backups (by updating an rsync
&lt;br&gt;&amp;gt; copy), and weekly pg_dumps that in turn go to tape.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; PITR gives a very recent restore point in the event of server loss. As
&lt;br&gt;&amp;gt; previously mentioned, the full (custom) backups let you restore individual
&lt;br&gt;&amp;gt; tables. They're also a lot smaller than base backups + WAL logs.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; &amp;quot;No animals were harmed in the recording of this episode. We tried but that
&lt;br&gt;&amp;gt; damn monkey was just too fast.&amp;quot;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Sent via pgsql-general mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292199&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-general@...&lt;/a&gt;)
&lt;br&gt;&amp;gt; To make changes to your subscription:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-general&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-general&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-general mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292199&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-general@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-general&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-general&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---general-f768.html&quot; embed=&quot;fixTarget[768]&quot; target=&quot;_top&quot; &gt;PostgreSQL - general&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Incremental-Backups-in-postgres-tp26277490p26292199.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26292173</id>
	<title>Re: BUG #5178: make check fails because of locale  en_AU.US-ASCII</title>
	<published>2009-11-10T14:08:16Z</published>
	<updated>2009-11-10T14:08:16Z</updated>
	<author>
		<name>Peter Eisentraut-2</name>
	</author>
	<content type="html">On tis, 2009-11-10 at 20:45 +0000, Boh Yap wrote:
&lt;br&gt;&amp;gt; make check 
&lt;br&gt;&amp;gt; failed, when trying to initdb, &amp;nbsp;with this message in log:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;nbsp; could not determine encoding for locale &amp;quot;en_AU.US-ASCII&amp;quot;: codeset is
&lt;br&gt;&amp;gt; &amp;quot;US-ASCII&amp;quot;
&lt;br&gt;&lt;br&gt;Try using a different locale.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-bugs mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292173&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-bugs@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-bugs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-bugs&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---bugs-f764.html&quot; embed=&quot;fixTarget[764]&quot; target=&quot;_top&quot; &gt;PostgreSQL - bugs&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/BUG--5178%3A-make-check-fails-because-of-locale--en_AU.US-ASCII-tp26290979p26292173.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26292123</id>
	<title>Re: Editor for sgml files</title>
	<published>2009-11-10T14:04:55Z</published>
	<updated>2009-11-10T14:04:55Z</updated>
	<author>
		<name>Peter Eisentraut-2</name>
	</author>
	<content type="html">On tis, 2009-11-10 at 07:00 -0800, David Fetter wrote:
&lt;br&gt;&amp;gt; Well, there's the whole Docbook thing, which was pretty well thought
&lt;br&gt;&amp;gt; out. &amp;nbsp;Apart from that, I don't know. &amp;nbsp;Peter?
&lt;br&gt;&lt;br&gt;Well, a lot of hard work. ;-) &amp;nbsp;Just like there are coding standards and
&lt;br&gt;best practices, there are standards and customs in writing and
&lt;br&gt;publishing.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Sent via pgsql-general mailing list (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292123&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pgsql-general@...&lt;/a&gt;)
&lt;br&gt;To make changes to your subscription:
&lt;br&gt;&lt;a href=&quot;http://www.postgresql.org/mailpref/pgsql-general&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.postgresql.org/mailpref/pgsql-general&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/PostgreSQL---general-f768.html&quot; embed=&quot;fixTarget[768]&quot; target=&quot;_top&quot; &gt;PostgreSQL - general&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Editor-for-sgml-files-tp26277206p26292123.html" />
</entry>

</feed>
