<?xml version="1.0" encoding="UTF-8" ?>

<rss version="2.0"
  xmlns:ent="http://www.purl.org/NET/ENT/1.0/"
  xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
  <title>Help People + Operate Efficiently = Success</title>
  <link>http://adl.blogware.com/blog</link>
  <description></description>
  <language>en-us</language>
  <lastBuildDate>Thu, 26 Nov 2009 10:30:44 -0800</lastBuildDate>
  <category domain="http://adl.blogware.com/blog/Tutorials">Tutorials</category>
  <generator>Blogware</generator>
  
  <item>
    <dc:creator>April Lorenzen</dc:creator>
    <title>How to log long running queries in postgresql</title>
    <link>http://adl.blogware.com/blog/_archives/2006/5/5/1935657.html</link>
    <guid>http://adl.blogware.com/blog/_archives/2006/5/5/1935657.html</guid>
    <pubDate>Fri, 05 May 2006 17:23:01 -0700</pubDate>
    <description>Locate your postgresql.conf&lt;br&gt;&lt;br&gt;locate postgresql.conf&lt;br&gt;&lt;br&gt;Assuming you are a highly skilled super user who fully understands and is responsible for all configuration changes s/he makes, edit postgresql.conf&lt;br&gt;&lt;br&gt;vi postgresql.conf&lt;br&gt;&lt;br&gt;Find the section with the log_min_duration_statement option:&lt;br&gt;&lt;br&gt;/log_min_duration_statement&lt;br&gt;&lt;br&gt;For the purpose of finding out what to improve, I set mine like this:&lt;br&gt;&lt;br&gt;log_min_duration_statement = 250&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # -1 is disabled, 0 logs all statements&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;&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;&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;&amp;nbsp;&amp;nbsp; # and their durations, in milliseconds.&lt;br&gt;&lt;br&gt;A reload is all that is necessary to cause pg to use the new duration - at least after uncommenting the line. I used restart a few times and then successfully tried reload.&lt;br&gt;&lt;br&gt;Since I am using Debian:&lt;br&gt;&lt;br&gt;/etc/init.d/postgresql-8.1 reload&lt;br&gt;&lt;br&gt;My postgresql logs are here:&lt;br&gt;&lt;br&gt;tail -f&amp;nbsp; /var/log/postgresql/postgresql-8.1-main.log&lt;br&gt;&lt;br&gt;After finding and fixing some long running queries, be sure to edit your postgresql.conf again and set the &lt;br&gt;&lt;br&gt;log_min_duration_statement = -1 &lt;br&gt;&lt;br&gt;to turn off the function. Just commenting pg conf file settings out does not guarantee they will return to default, according to pg references I have read.&lt;br&gt;&lt;br&gt;Be sure to reload and tail the log file to ensure that settings are back to performance mode.&lt;br&gt;&lt;br&gt;See &lt;a href=&quot;http://www.powerpostgresql.com/PerfList/&quot;&gt;Power PostgreSQL&lt;/a&gt; website for more performance tuning info.&lt;br&gt;</description>
    
    <category domain="http://adl.blogware.com/blog">Main Page</category>
    
    <category domain="http://adl.blogware.com/blog/Tutorials">Tutorials</category>
    
    
    
    
  </item>
  
  <item>
    <dc:creator>April Lorenzen</dc:creator>
    <title>Eliminate Duplicates from Postgresql Tables</title>
    <link>http://adl.blogware.com/blog/_archives/2006/4/7/1868313.html</link>
    <guid>http://adl.blogware.com/blog/_archives/2006/4/7/1868313.html</guid>
    <pubDate>Fri, 07 Apr 2006 12:40:41 -0700</pubDate>
    <description>I use Cold Fusion to loop over a distinct query for the table that contains the duplicates. Note that your table needs to have OIDs, or a unique primary key.&lt;br&gt;&lt;br&gt;column_a is the key field I want to eliminate duplicates on&lt;br&gt;&lt;br&gt;SELECT distinct column_a&lt;br&gt;FROM table_a;&lt;br&gt;&lt;br&gt;CFLOOP over the above query - query_a&lt;br&gt;&lt;br&gt;DELETE FROM table_a&lt;br&gt;WHERE column_a = #query_a.column_a# &lt;br&gt;AND OID &amp;lt; (&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SELECT OID &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM table_a &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHERE column_a = #query_a.column_a# &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ORDER BY OID DESC &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LIMIT 1&lt;br&gt;);&lt;br&gt;&lt;br&gt;/CFLOOP&lt;br&gt;</description>
    
    <category domain="http://adl.blogware.com/blog">Main Page</category>
    
    <category domain="http://adl.blogware.com/blog/Tutorials">Tutorials</category>
    
    
    
    
  </item>
  
  <item>
    <dc:creator>April Lorenzen</dc:creator>
    <title>How to change the SMTP port to 587 in Eudora</title>
    <link>http://adl.blogware.com/blog/_archives/2006/3/24/1839393.html</link>
    <guid>http://adl.blogware.com/blog/_archives/2006/3/24/1839393.html</guid>
    <pubDate>Fri, 24 Mar 2006 16:43:20 -0800</pubDate>
    <description>Many Internet access ISPs now block port 25. To access an outbound server other than your access ISPs, you can ...</description>
    
    <category domain="http://adl.blogware.com/blog">Main Page</category>
    
    <category domain="http://adl.blogware.com/blog/Tutorials">Tutorials</category>
    
    
    
    
  </item>
  
  <item>
    <dc:creator>April Lorenzen</dc:creator>
    <title>Your Home Computer is Infected with a Virus</title>
    <link>http://adl.blogware.com/blog/_archives/2005/11/6/1351327.html</link>
    <guid>http://adl.blogware.com/blog/_archives/2005/11/6/1351327.html</guid>
    <pubDate>Sun, 06 Nov 2005 06:55:09 -0800</pubDate>
    <description>As a computer consultant I advise many of my business clients also on
their home computers, and some have software ...</description>
    
    <category domain="http://adl.blogware.com/blog/RepairAnecdotes">Repair Anecdotes</category>
    
    <category domain="http://adl.blogware.com/blog/Tutorials">Tutorials</category>
    
    
    
    
  </item>
  
  <item>
    <dc:creator>April Lorenzen</dc:creator>
    <title>Autosave for Webmail Composing</title>
    <link>http://adl.blogware.com/blog/_archives/2005/7/31/1094221.html</link>
    <guid>http://adl.blogware.com/blog/_archives/2005/7/31/1094221.html</guid>
    <pubDate>Sun, 31 Jul 2005 06:52:18 -0700</pubDate>
    <description>If you get logged out of webmail - you can now log back in and click the Compose link to restore your work:&lt;br&gt; &lt;br&gt; &lt;img src=&quot;http://adl.blogware.com/screenshots/webmail_restore.jpg&quot;&gt;&lt;br&gt; &lt;br&gt; Click the OK button and the text you had typed so far will be restored.&lt;br&gt; &lt;br</description>
    
    <category domain="http://adl.blogware.com/blog/Tutorials">Tutorials</category>
    
    
    <ent:cloud ent:href="">
    
    <ent:topic ent:id="restore" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=restore">restore</ent:topic>
    
    <ent:topic ent:id="timeout" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=timeout">timeout</ent:topic>
    
    <ent:topic ent:id="session" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=session">session</ent:topic>
    
    <ent:topic ent:id="logout" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=logout">logout</ent:topic>
    
    <ent:topic ent:id="webmail" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=webmail">webmail</ent:topic>
    
    </ent:cloud>
    
    
    
  </item>
  
  <item>
    <dc:creator>April Lorenzen</dc:creator>
    <title>How to use Blogware as a non-blog website (Part One)</title>
    <link>http://adl.blogware.com/blog/_archives/2005/7/13/1022761.html</link>
    <guid>http://adl.blogware.com/blog/_archives/2005/7/13/1022761.html</guid>
    <pubDate>Wed, 13 Jul 2005 05:30:00 -0700</pubDate>
    <description>Setting aside the blogging/journalling features, Blogware is quite a nice CMS (Content Management System) for websites. CMS usually cost thousands, ...</description>
    
    <category domain="http://adl.blogware.com/blog">Main Page</category>
    
    <category domain="http://adl.blogware.com/blog/Tutorials">Tutorials</category>
    
    
    
    
  </item>
  
  <item>
    <dc:creator>April Lorenzen</dc:creator>
    <title>How to add Podcasting to your Blogware blog</title>
    <link>http://adl.blogware.com/blog/_archives/2005/7/10/1013156.html</link>
    <guid>http://adl.blogware.com/blog/_archives/2005/7/10/1013156.html</guid>
    <pubDate>Sun, 10 Jul 2005 13:42:10 -0700</pubDate>
    <description>Your site visitors can just click on the attachment to hear your MP3. 

However, if they use ipodder software - they will automatically get your new podcasts when you add them to your site. Their software checks for new recordings at scheduled intervals and automatically downloads your podcast and adds it to their playlist.</description>
    
    <category domain="http://adl.blogware.com/blog">Main Page</category>
    
    <category domain="http://adl.blogware.com/blog/Tutorials">Tutorials</category>
    
    <category domain="http://adl.blogware.com/blog/SuccessfulWebsiteStrategies">Successful Website Strategies</category>
    
    
    <ent:cloud ent:href="">
    
    <ent:topic ent:id="ipodder" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=ipodder">ipodder</ent:topic>
    
    <ent:topic ent:id="audioblogs" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=audioblogs">audioblogs</ent:topic>
    
    <ent:topic ent:id="audioblog" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=audioblog">audioblog</ent:topic>
    
    <ent:topic ent:id="podcast" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=podcast">podcast</ent:topic>
    
    <ent:topic ent:id="podcasting" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=podcasting">podcasting</ent:topic>
    
    <ent:topic ent:id="blogware" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=blogware">blogware</ent:topic>
    
    </ent:cloud>
    
    
    
  </item>
  
  <item>
    <dc:creator>April Lorenzen</dc:creator>
    <title>How to change the background color of your Blogware blog</title>
    <link>http://adl.blogware.com/blog/_archives/2005/7/4/996482.html</link>
    <guid>http://adl.blogware.com/blog/_archives/2005/7/4/996482.html</guid>
    <pubDate>Mon, 04 Jul 2005 21:47:11 -0700</pubDate>
    <description>If you see a color and style you like on this page just click the radio button next to it and then click Change at the bottom of the page. If you prefer to put in  your own color directly, read on.</description>
    
    <category domain="http://adl.blogware.com/blog">Main Page</category>
    
    <category domain="http://adl.blogware.com/blog/Secure/StepbyStepHowto">Step by Step How to</category>
    
    <category domain="http://adl.blogware.com/blog/Tutorials">Tutorials</category>
    
    
    <ent:cloud ent:href="">
    
    <ent:topic ent:id="color" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=color">color</ent:topic>
    
    <ent:topic ent:id="change" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=change">change</ent:topic>
    
    <ent:topic ent:id="CSS" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=CSS">CSS</ent:topic>
    
    <ent:topic ent:id="background" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=background">background</ent:topic>
    
    <ent:topic ent:id="bgcolor" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=bgcolor">bgcolor</ent:topic>
    
    <ent:topic ent:id="howto" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=howto">howto</ent:topic>
    
    <ent:topic ent:id="blogware" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=blogware">blogware</ent:topic>
    
    </ent:cloud>
    
    
    
  </item>
  
  <item>
    <dc:creator>April Lorenzen</dc:creator>
    <title>How to add a contact info signature to email</title>
    <link>http://adl.blogware.com/blog/_archives/2005/6/13/934483.html</link>
    <guid>http://adl.blogware.com/blog/_archives/2005/6/13/934483.html</guid>
    <pubDate>Mon, 13 Jun 2005 09:35:22 -0700</pubDate>
    <description>Email signatures are a great subtle form of advertising, bringing you new business through personal networking. People who correspond with you usually need your web address, phone fax and mailing address, so it also saves a lot of typing.</description>
    
    <category domain="http://adl.blogware.com/blog">Main Page</category>
    
    <category domain="http://adl.blogware.com/blog/Tutorials">Tutorials</category>
    
    
    <ent:cloud ent:href="">
    
    <ent:topic ent:id="vcard" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=vcard">vcard</ent:topic>
    
    <ent:topic ent:id="signature" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=signature">signature</ent:topic>
    
    <ent:topic ent:id="email" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=email">email</ent:topic>
    
    <ent:topic ent:id="mozilla" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=mozilla">mozilla</ent:topic>
    
    <ent:topic ent:id="mail" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=mail">mail</ent:topic>
    
    <ent:topic ent:id="thunderbird" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=thunderbird">thunderbird</ent:topic>
    
    </ent:cloud>
    
    
    
  </item>
  
  <item>
    <dc:creator>April Lorenzen</dc:creator>
    <title>Joy of IMAP - How to view one email account from multiple computers</title>
    <link>http://adl.blogware.com/blog/_archives/2005/6/8/919477.html</link>
    <guid>http://adl.blogware.com/blog/_archives/2005/6/8/919477.html</guid>
    <pubDate>Wed, 08 Jun 2005 11:32:48 -0700</pubDate>
    <description>Written for a user who asked for a way to get his mail from multiple computers, home and travelling. Often ...</description>
    
    <category domain="http://adl.blogware.com/blog">Main Page</category>
    
    <category domain="http://adl.blogware.com/blog/BestPracticeforCorporateEmail">Best Practice for Corporate Email</category>
    
    <category domain="http://adl.blogware.com/blog/Tutorials">Tutorials</category>
    
    
    <ent:cloud ent:href="">
    
    <ent:topic ent:id="IMAP" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=IMAP">IMAP</ent:topic>
    
    <ent:topic ent:id="POP" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=POP">POP</ent:topic>
    
    <ent:topic ent:id="mozilla" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=mozilla">mozilla</ent:topic>
    
    <ent:topic ent:id="mail" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=mail">mail</ent:topic>
    
    <ent:topic ent:id="combination" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=combination">combination</ent:topic>
    
    <ent:topic ent:id="thunderbird" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=thunderbird">thunderbird</ent:topic>
    
    </ent:cloud>
    
    
    
  </item>
  
  <item>
    <dc:creator>April Lorenzen</dc:creator>
    <title>How to Link a PDF to your Website</title>
    <link>http://adl.blogware.com/blog/_archives/2005/6/8/919174.html</link>
    <guid>http://adl.blogware.com/blog/_archives/2005/6/8/919174.html</guid>
    <pubDate>Wed, 08 Jun 2005 09:30:44 -0700</pubDate>
    <description>Written for the novice, this article details three steps - 1. upload the PDF, 2. discover and copy the web address of the PDF, 3. create a hyperlink. Tips on avoiding common mistakes in naming files as well entre to the secret world of A HREF for non-programmers.</description>
    
    <category domain="http://adl.blogware.com/blog">Main Page</category>
    
    <category domain="http://adl.blogware.com/blog/Tutorials">Tutorials</category>
    
    
    <ent:cloud ent:href="">
    
    <ent:topic ent:id="hyperlink" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=hyperlink">hyperlink</ent:topic>
    
    <ent:topic ent:id="create" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=create">create</ent:topic>
    
    <ent:topic ent:id="to" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=to">to</ent:topic>
    
    <ent:topic ent:id="a" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=a">a</ent:topic>
    
    <ent:topic ent:id="tutorial" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=tutorial">tutorial</ent:topic>
    
    <ent:topic ent:id="how" ent:href="http://adl.blogware.com/blog/cmd=search_keyword/k=how">how</ent:topic>
    
    </ent:cloud>
    
    
    
  </item>
  
</channel>
</rss>
