<?xml version="1.0" encoding="ISO-8859-1"?>
<rdf:RDF
 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 xmlns="http://purl.org/rss/1.0/"
 xmlns:dc="http://purl.org/dc/elements/1.1/"
 xmlns:syn="http://purl.org/rss/1.0/modules/syndication/"
>

<channel rdf:about="http://www.talkaboutdatabases.com/group/pgsql.sql/">
<title>talkaboutdatabases.com Pgsql Sql</title>
<link>http://www.talkaboutdatabases.com/group/pgsql.sql/</link>
<description>$</description>
<dc:language>en-us</dc:language>
<dc:rights>Copyright 2003-2005, Talk About Network. All Rights Reserved.</dc:rights>
<dc:date>2008-07-04T22:07:50+00:00</dc:date>
<dc:publisher>TAN</dc:publisher>
<dc:creator>rss@talkaboutnetwork.com</dc:creator>
<dc:subject>Discussion</dc:subject>
<syn:updatePeriod>hourly</syn:updatePeriod>
<syn:updateFrequency>1</syn:updateFrequency>
<syn:updateBase>1970-01-01T00:00+00:00</syn:updateBase>
<items>
 <rdf:Seq>
<rdf:li rdf:resource="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10877.html" />
<rdf:li rdf:resource="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10876.html" />
<rdf:li rdf:resource="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10870.html" />
<rdf:li rdf:resource="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10866.html" />
<rdf:li rdf:resource="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10863.html" />
<rdf:li rdf:resource="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10860.html" />
<rdf:li rdf:resource="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10856.html" />
<rdf:li rdf:resource="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10853.html" />
<rdf:li rdf:resource="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10851.html" />
<rdf:li rdf:resource="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10850.html" />
<rdf:li rdf:resource="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10849.html" />
<rdf:li rdf:resource="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10848.html" />
<rdf:li rdf:resource="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10846.html" />
<rdf:li rdf:resource="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10844.html" />
<rdf:li rdf:resource="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10843.html" />
<rdf:li rdf:resource="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10842.html" />
<rdf:li rdf:resource="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10841.html" />
<rdf:li rdf:resource="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10840.html" />
<rdf:li rdf:resource="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10839.html" />
<rdf:li rdf:resource="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10838.html" />
 </rdf:Seq>
</items>
<image rdf:resource="http://tan12.talkaboutnetwork.com/images/spacer.gif" /> 
<textinput rdf:resource="http://talkaboutdatabases.com/group/pgsql.sql/search.html" />
</channel>

<image rdf:about="http://tan12.talkaboutnetwork.com/images/spacer.gif">
<title>talkaboutdatabases.com Pgsql Sql</title>
<url>http://tan12.talkaboutnetwork.com/images/spacer.gif</url>
<link>http://www.talkaboutdatabases.com/group/pgsql.sql/</link>
</image>

<item rdf:about="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10877.html">
<title>query: last N price for each product?</title>
<link>http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10877.html</link>
<description>Dear SQL masters,  The query for latest price for each product goes like this (which I can grasp quite easily):   SELECT * FROM price p1  WHERE ctime=(SELECT MAX(ctime) FROM price p2 WHERE p1.product_id=p2.product_id)  or:   SELECT * FROM price p1  W...</description>
<dc:creator>davidgaramond@[EMAIL PROTECTED]
 (David ...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-04T19:35:57+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10876.html">
<title>Re: nesting XmlAgg</title>
<link>http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10876.html</link>
<description>Am Donnerstag, 3. Juli 2008 schrieb Isaac Dover:  select    XmlElement(name Catalog,      XmlElement(name Tables,        XmlAgg(XmlElement(name Table, XmlAttributes(T.table_name as  Name), XmlElement(name Columns,  -- i was attempting to aggregate he...</description>
<dc:creator>peter_e@[EMAIL PROTECTED]
 (Peter Eisent...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-03T15:15:39+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10870.html">
<title>column default dependant on another columns value</title>
<link>http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10870.html</link>
<description>Hi list,   Given a table with columns seconds and minutes, how can I have minutes be computed automatically at the insert statement?   I tried:   ALTER TABLE table1 ALTER COLUMN minutes SET default (seconds/60)   Postgres answer was: ERROR:  cannot u...</description>
<dc:creator>fhevia@[EMAIL PROTECTED]
 (Fernando Hevi...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-01T17:12:30+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10866.html">
<title>Need a sample Postgre SQL script</title>
<link>http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10866.html</link>
<description>------=_Part_21537_21408893.1214922714754 Content-Type: text/plain charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline  Hi All,  Im kind of new to Postgre and I need some advice. I have the following table. metadata (value:...</description>
<dc:creator>dhanu80@[EMAIL PROTECTED]
 (Dhanushka Sa...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-01T09:31:54+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10863.html">
<title>Quick select, slow update - help with performance problems</title>
<link>http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10863.html</link>
<description>Hi folks.  My system is slowing down, more notably over the last few weeks. The main reason is that its on an old slow machine, and Im in the process of  sorting this.  However, I think that there are some issues within my database which I need to  i...</description>
<dc:creator>gary.stainburn@[EMAIL PROTECTED]
 (Gary ...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-01T11:20:41+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10860.html">
<title>distinct / group by assistance.</title>
<link>http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10860.html</link>
<description>Hi Everyone,  I am having some issues trying to create the required SQL that will   allow me to return the results I am after. I have been trying various incarnations, using group by, sub-queries -   albeit to no avail - for the past three hours.   C...</description>
<dc:creator>gavinb@[EMAIL PROTECTED]
 (Gavin 'Beau' ...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-06-29T00:32:40+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10856.html">
<title>Re: exclude part of result</title>
<link>http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10856.html</link>
<description>On Fri, 27 Jun 2008 11:33:07 +0200 Harald Fuchs hari.fuchs@gmail.com wrote:   In article 20080627075136.12add021@dick.coachhouse,  Tarlika Elisabeth Schmitz postgresql@numerixtechnology.de writes:     PRODUCT table :     A B C   100 200 300   100 200...</description>
<dc:creator>postgresql@[EMAIL PROTECTED]
 (Tarlika E...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-06-27T12:22:38+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10853.html">
<title>Re: exclude part of result</title>
<link>http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10853.html</link>
<description>On Thu, 26 Jun 2008 19:49:01 -0400 (EDT) Patricia Mitchellpatricia-mitche@excite.com wrote:   The columns (a,b,c) of the navigation table should not appear in the  result because you are only pulling records from the product and item  table.  You are...</description>
<dc:creator>postgresql@[EMAIL PROTECTED]
 (Tarlika E...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-06-27T07:51:36+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10851.html">
<title>Aggregation Alternate Way</title>
<link>http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10851.html</link>
<description>I have grade table containing student_id, exam_id, grade.   I would like to  get the average grade based on student_id.  Assuming I could utilize avg  function, have computed columns, but not group by clause in the select  statement, is there another...</description>
<dc:creator>RG ltnobody@[EMAIL PROTECTED]
gt
</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-06-26T21:42:03+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10850.html">
<title>exclude part of result</title>
<link>http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10850.html</link>
<description>SELECT DISTINCT a, b, c, now(), count(item_pk)  FROM product LEFT JOIN item ON item.product_fk = product_pk WHERE ... GROUP BY a, b, c   I have another table navigation which also has the columns a,b,c  If the combination of (a,b,c) exists in navigat...</description>
<dc:creator>postgresql@[EMAIL PROTECTED]
 (Tarlika E...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-06-27T00:35:38+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10849.html">
<title>Re: ANSI Standard</title>
<link>http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10849.html</link>
<description>------=_Part_19202_6081998.1214511433474 Content-Type: text/plain charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline  - Try SQL 2003 standards....92 is way old - Youll find that even the big boys like Oracle, DB2 etc will diver...</description>
<dc:creator>montaseri@[EMAIL PROTECTED]
 (Montaseri)...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-06-26T13:17:13+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10848.html">
<title>Re: ANSI Standard</title>
<link>http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10848.html</link>
<description>At 02:20 AM 6/25/2008, pgsql-sql-owner@postgresql.org wrote: Date: Tue, 24 Jun 2008 17:33:11 +0300 From: Pascal Tufenkji ptufenkji@usj.edu.lb To: pgsql-sql@postgresql.org Subject: ANSI Standard Message-ID: 000601c8d607$3acda550$150fa8c0@interne.usj.e...</description>
<dc:creator>public@[EMAIL PROTECTED]
 (Steve Midgley...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-06-26T12:19:11+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10846.html">
<title>Re: GROUP BY on a column which might exist in one of two tables</title>
<link>http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10846.html</link>
<description>On Wed, 2008-06-25 at 14:20 +0000, Greg Sabino Mullane wrote:  -----BEGIN PGP SIGNED MESSAGE-----  Hash: RIPEMD160       Where the totals are counts of the the rows in the hits and views   tables. There should be no rows for partners without hits or ...</description>
<dc:creator>mark@[EMAIL PROTECTED]
 (Mark Stosberg)
</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-06-25T13:44:24+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10844.html">
<title>Re: Sequential event query</title>
<link>http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10844.html</link>
<description>Allan Kamau wrote:  Hi Steve,  Am having difficulties (there is a chance I could be the only one)   trying to see how the results youve listed under I would want to   get: section can be generated from the information you have provided   in your impl...</description>
<dc:creator>scrawford@[EMAIL PROTECTED]
 (Steve Craw...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-06-25T10:03:39+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10843.html">
<title>Re: GROUP BY on a column which might exist in one of two tables</title>
<link>http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10843.html</link>
<description>-----BEGIN PGP SIGNED MESSAGE----- Hash: RIPEMD160    Where the totals are counts of the the rows in the hits and views  tables. There should be no rows for partners without hits or views.  How about something like this?:  SELECT partner_id, COUNT(vi...</description>
<dc:creator>greg@[EMAIL PROTECTED]
 (Greg Sabino Mul...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-06-25T14:20:53+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10842.html">
<title>Re: GROUP BY on a column which might exist in one of two tables</title>
<link>http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10842.html</link>
<description> select      coalesce(h.partner_id, v.partner_id) as partner_id,      coalesce(v.count, 0) as total_views,      coalesce(h.count, 0) as total_hits  from      (select partner_id, count(*) from hits group by partner_id) as h      full outer join      (...</description>
<dc:creator>mark@[EMAIL PROTECTED]
 (Mark Stosberg)
</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-06-25T10:17:55+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10841.html">
<title>Re: GROUP BY on a column which might exist in one of two</title>
<link>http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10841.html</link>
<description>On Wed, Jun 25, 2008 at 09:50:18AM -0400, Mark Stosberg wrote:  hits    hit_id    partner_id    views    view_id    partner_id    There is of course a partners table with a partner_id column.     My target result is more like    partner_id  total_vie...</description>
<dc:creator>depesz@[EMAIL PROTECTED]
 (hubert depesz...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-06-25T16:09:26+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10840.html">
<title>Re: Verify Execute</title>
<link>http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10840.html</link>
<description>On Tuesday 24 June 2008 17:18:22 Shavonne Marietta Wijesinghe wrote:  Hello =20  Is there a way to find out if the EXECUTE of a UPDATE, INSERT has been co= mpleted successfully? =20  Here is an example of what I do: =20  Set conn =3D Server.CreateObj...</description>
<dc:creator>andreak@[EMAIL PROTECTED]
 (Andreas Jose...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-06-24T21:40:01+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10839.html">
<title>ANSI Standard</title>
<link>http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10839.html</link>
<description>This is a multi-part message in MIME format.  ------=_NextPart_000_0007_01C8D620.601D2740 Content-Type: text/plain 	charset=us-ascii Content-Transfer-Encoding: 7bit  Hi,     How do I know if a function (or a certain sql syntax) in Postgres is a SQL A...</description>
<dc:creator>ptufenkji@[EMAIL PROTECTED]
 (Pascal Tuf...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-06-24T17:33:11+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10838.html">
<title>dynamic events categorization</title>
<link>http://www.talkaboutdatabases.com/group/pgsql.sql/messages/10838.html</link>
<description>Hello,  Im looking for a more efficient way of dynamically categorizing some events. The following view definition looks into each events latest event_date object (a theater play can have several, a book only one) to tell whether the event is current...</description>
<dc:creator>vindex+lists-pgsql-sql@[EMAIL PROTECTED]...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-06-24T10:43:54+00:00</dc:date>
</item>


<textinput rdf:about="http://talkaboutdatabases.com/group/pgsql.sql/search.html">
<title>Search talkaboutdatabases.com Pgsql Sql</title>
<description>Search talkaboutdatabases.com Pgsql Sql</description>
<name>q</name>
<link>http://talkaboutdatabases.com/group/pgsql.sql/search.html</link>
</textinput>

</rdf:RDF>
