<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>pra nÃ£o esquecer... &#187; Postgre SQL</title>
	<atom:link href="http://www.republicavirtual.com.br/blog/category/pgsql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.republicavirtual.com.br/blog</link>
	<description></description>
	<lastBuildDate>Mon, 28 Nov 2011 14:31:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>postgresql &#8211; show full processlist</title>
		<link>http://www.republicavirtual.com.br/blog/2010/03/08/postgresql-show-full-processlist/</link>
		<comments>http://www.republicavirtual.com.br/blog/2010/03/08/postgresql-show-full-processlist/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 19:46:03 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Postgre SQL]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=565</guid>
		<description><![CDATA[SELECT pg_stat_get_backend_pid(S.backendid) AS procpid, pg_stat_get_backend_activity(S.backendid) AS current_query FROM (SELECT pg_stat_get_backend_idset() AS backendid) AS S;]]></description>
			<content:encoded><![CDATA[<p>SELECT pg_stat_get_backend_pid(S.backendid) AS procpid,<br />
pg_stat_get_backend_activity(S.backendid) AS current_query<br />
FROM (SELECT pg_stat_get_backend_idset() AS backendid) AS S;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2010/03/08/postgresql-show-full-processlist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>instalando postgis</title>
		<link>http://www.republicavirtual.com.br/blog/2009/11/03/instalando-postgis/</link>
		<comments>http://www.republicavirtual.com.br/blog/2009/11/03/instalando-postgis/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 20:21:42 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Postgre SQL]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=517</guid>
		<description><![CDATA[mkdir /usr/local/install/; cd /usr/local/install/; cd /usr/local/install/; wget -c http://download.osgeo.org/proj/proj-4.7.0.tar.gz wget -c http://download.osgeo.org/geos/geos-3.1.1.tar.bz2 wget -c http://postgis.refractions.net/download/postgis-1.4.0.tar.gz cd /usr/local/install/; tar -zxvf proj-4.7.0.tar.gz; cd proj-4.7.0; ./configure &#38;&#38; make &#38;&#38; make install; cd /usr/local/install/; tar -jxvf geos-3.1.1.tar.bz2; cd geos-3.1.1; ./configure &#38;&#38; make &#38;&#38; make install; cd /usr/local/install/; tar -zxvf postgis-1.4.0.tar.gz; cd postgis-1.4.0; ./configure &#38;&#38; make &#38;&#38; make install;]]></description>
			<content:encoded><![CDATA[<p>mkdir /usr/local/install/; cd /usr/local/install/;<br />
cd /usr/local/install/;</p>
<p>wget -c http://download.osgeo.org/proj/proj-4.7.0.tar.gz<br />
wget -c http://download.osgeo.org/geos/geos-3.1.1.tar.bz2<br />
wget -c http://postgis.refractions.net/download/postgis-1.4.0.tar.gz</p>
<p>cd /usr/local/install/;<br />
tar -zxvf proj-4.7.0.tar.gz;<br />
cd proj-4.7.0;<br />
./configure &amp;&amp; make &amp;&amp; make install;</p>
<p>cd /usr/local/install/;<br />
tar -jxvf geos-3.1.1.tar.bz2;<br />
cd geos-3.1.1;<br />
./configure &amp;&amp; make &amp;&amp; make install;</p>
<p>cd /usr/local/install/;<br />
tar -zxvf postgis-1.4.0.tar.gz;<br />
cd postgis-1.4.0;<br />
./configure &amp;&amp; make &amp;&amp; make install;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2009/11/03/instalando-postgis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>pgsql, mudando datastyle de uma base de dados</title>
		<link>http://www.republicavirtual.com.br/blog/2009/10/18/pgsql-mudando-datastyle-de-uma-base-de-dados/</link>
		<comments>http://www.republicavirtual.com.br/blog/2009/10/18/pgsql-mudando-datastyle-de-uma-base-de-dados/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 19:06:57 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Postgre SQL]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=512</guid>
		<description><![CDATA[Para alterar o formato da data de uma base de dados postgresql. ALTER DATABASE nomebanco SET DATESTYLE = 'SQL, DMY'; \c nomebanco; SHOW DATESTYLE;]]></description>
			<content:encoded><![CDATA[<p>Para alterar o formato da data de uma base de dados postgresql.</p>
<p><code><br />
ALTER DATABASE nomebanco SET DATESTYLE = 'SQL, DMY';<br />
\c nomebanco;<br />
SHOW DATESTYLE;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2009/10/18/pgsql-mudando-datastyle-de-uma-base-de-dados/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>database hacks</title>
		<link>http://www.republicavirtual.com.br/blog/2009/08/20/database-hacks/</link>
		<comments>http://www.republicavirtual.com.br/blog/2009/08/20/database-hacks/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 19:33:18 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Firebird]]></category>
		<category><![CDATA[MS SQL Server]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Postgre SQL]]></category>
		<category><![CDATA[db2]]></category>
		<category><![CDATA[informix]]></category>
		<category><![CDATA[ingress]]></category>
		<category><![CDATA[mssql]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=433</guid>
		<description><![CDATA[realmente muito bom, dica do ara&#8221;Ãº&#8221;jo! =) http://pentestmonkey.net/blog/mysql-sql-injection-cheat-sheet/ http://pentestmonkey.net/blog/postgres-sql-injection-cheat-sheet/ http://pentestmonkey.net/blog/oracle-sql-injection-cheat-sheet/ http://pentestmonkey.net/blog/mssql-sql-injection-cheat-sheet/ http://pentestmonkey.net/blog/ingres-sql-injection-cheat-sheet/ http://pentestmonkey.net/blog/db2-sql-injection-cheat-sheet/ http://pentestmonkey.net/blog/informix-sql-injection-cheat-sheet/ crack mysql hash password: http://www.openwall.com/john/]]></description>
			<content:encoded><![CDATA[<p>realmente muito bom, dica do ara&#8221;Ãº&#8221;jo! =)</p>
<p>http://pentestmonkey.net/blog/mysql-sql-injection-cheat-sheet/</p>
<p>http://pentestmonkey.net/blog/postgres-sql-injection-cheat-sheet/</p>
<p>http://pentestmonkey.net/blog/oracle-sql-injection-cheat-sheet/</p>
<p>http://pentestmonkey.net/blog/mssql-sql-injection-cheat-sheet/</p>
<p>http://pentestmonkey.net/blog/ingres-sql-injection-cheat-sheet/</p>
<p>http://pentestmonkey.net/blog/db2-sql-injection-cheat-sheet/</p>
<p>http://pentestmonkey.net/blog/informix-sql-injection-cheat-sheet/</p>
<p>crack mysql hash password:</p>
<p>http://www.openwall.com/john/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2009/08/20/database-hacks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dns pÃºblico de qualidade no br!</title>
		<link>http://www.republicavirtual.com.br/blog/2009/05/30/dns-publico-de-qualidade-no-br/</link>
		<comments>http://www.republicavirtual.com.br/blog/2009/05/30/dns-publico-de-qualidade-no-br/#comments</comments>
		<pubDate>Sat, 30 May 2009 18:24:18 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Postgre SQL]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[dns aberto]]></category>
		<category><![CDATA[dns pÃºblico]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=400</guid>
		<description><![CDATA[agora temos um dns pÃºblico de qualidade, para quem utiliza BRT/OI/Telefonica, deve estar cansado de acontecer coisas do genero: pÃ¡gina nÃ£o abre da primeira vez, abre na segunda&#8230; Quando isso ocorre com frequÃªncia, pode ser culpa da resoluÃ§Ã£o de nomes, resoluÃ§Ã£o de DNS. O serviÃ§o Ã© www.gigadns.com.br, o serviÃ§o conta com a assinatura de qualidade [...]]]></description>
			<content:encoded><![CDATA[<p>agora temos um dns pÃºblico de qualidade, para quem utiliza BRT/OI/Telefonica, deve estar cansado de acontecer coisas do genero:<br />
pÃ¡gina nÃ£o abre da primeira vez, abre na segunda&#8230;</p>
<p>Quando isso ocorre com frequÃªncia, pode ser culpa da resoluÃ§Ã£o de nomes, resoluÃ§Ã£o de DNS.</p>
<p>O serviÃ§o Ã© <a href="http://www.gigadns.com.br">www.gigadns.com.br</a>, o serviÃ§o conta com a assinatura de qualidade KingHost/Cyberweb.</p>
<p><strong>Para vocÃª que precisa de uma hospedagem inteligente e principalmente de qualidade com preÃ§os baixos, recomendo a kinghost, abaixo segue cÃ³digo promocional na kinghost para ganhar 15% de desconto nas 3 primeiras mensalidades!<br />
CÃ³digo promocional kinghost: BIGDESCONTO</p>
<p>Ou abra a URL abaixo: <a target="_blank" href="http://www.kinghost.com.br/promo/bigdesconto.html">http://www.kinghost.com.br/promo/bigdesconto.html</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2009/05/30/dns-publico-de-qualidade-no-br/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>visualizar usuÃ¡rios e senhas do pgsql</title>
		<link>http://www.republicavirtual.com.br/blog/2008/12/12/visualizar-usuarios-e-senhas-do-pgsql/</link>
		<comments>http://www.republicavirtual.com.br/blog/2008/12/12/visualizar-usuarios-e-senhas-do-pgsql/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 17:31:55 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Postgre SQL]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[postgreesql]]></category>
		<category><![CDATA[shadow]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=346</guid>
		<description><![CDATA[# select * from pg_shadow;]]></description>
			<content:encoded><![CDATA[<p># select * from pg_shadow;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2008/12/12/visualizar-usuarios-e-senhas-do-pgsql/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CÃ³digo promocional Kinghost</title>
		<link>http://www.republicavirtual.com.br/blog/2008/10/06/codigo-promocional-kinghost-2/</link>
		<comments>http://www.republicavirtual.com.br/blog/2008/10/06/codigo-promocional-kinghost-2/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 22:45:21 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Firebird]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MS SQL Server]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Postgre SQL]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[cÃ³digo promocional]]></category>
		<category><![CDATA[cÃ³digo promocional kinghost]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=248</guid>
		<description><![CDATA[hospede na melhor hospedagem brasileira e ainda ganhe 15% de desconto nos 3 primeiros meses. Utilize o cÃ³digo promocional: BIGDESCONTO no passo 3 do cadastro nunca foi tÃ£o fÃ¡cil ganhar desconto hein&#8230;]]></description>
			<content:encoded><![CDATA[<p>hospede na melhor hospedagem brasileira e ainda ganhe 15% de desconto nos 3 primeiros meses.</p>
<p>Utilize o cÃ³digo promocional: <strong>BIGDESCONTO</strong><br />
no passo 3 do cadastro</p>
<p>nunca foi tÃ£o fÃ¡cil ganhar desconto hein&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2008/10/06/codigo-promocional-kinghost-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>pgsql doc</title>
		<link>http://www.republicavirtual.com.br/blog/2008/09/29/pgsql-doc/</link>
		<comments>http://www.republicavirtual.com.br/blog/2008/09/29/pgsql-doc/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 02:39:28 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Postgre SQL]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=232</guid>
		<description><![CDATA[http://postgresql.ribafs.net/]]></description>
			<content:encoded><![CDATA[<p>http://postgresql.ribafs.net/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2008/09/29/pgsql-doc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PostgreSql &#8211; saber tamanho ocupado pela base</title>
		<link>http://www.republicavirtual.com.br/blog/2008/07/18/postgresql-saber-tamanho-ocupado-pela-base/</link>
		<comments>http://www.republicavirtual.com.br/blog/2008/07/18/postgresql-saber-tamanho-ocupado-pela-base/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 04:36:52 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Postgre SQL]]></category>
		<category><![CDATA[postgres]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[size of database]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=148</guid>
		<description><![CDATA[bah mto Ãºtil! PLAIN TEXT SQL: SELECT pg_database_size&#40;'nome_db'&#41;;]]></description>
			<content:encoded><![CDATA[<p>bah mto Ãºtil! <img src='http://www.republicavirtual.com.br/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<div class="igBar"><span id="lsql-2"><a href="#" onclick="javascript:showPlainTxt('sql-2'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">SQL:</span>
<div id="sql-2">
<div class="sql">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">SELECT</span> pg_database_size<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color: #ff0000;">'nome_db'</span><span style="color:#006600; font-weight:bold;">&#41;</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2008/07/18/postgresql-saber-tamanho-ocupado-pela-base/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>alterar default search_path pgsql</title>
		<link>http://www.republicavirtual.com.br/blog/2008/01/02/alterar-default-search_path-pgsql/</link>
		<comments>http://www.republicavirtual.com.br/blog/2008/01/02/alterar-default-search_path-pgsql/#comments</comments>
		<pubDate>Wed, 02 Jan 2008 19:03:36 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Postgre SQL]]></category>

		<guid isPermaLink="false">http://republicavirtual.com.br/blog/2008/01/02/alterar-default-search_path-pgsql/</guid>
		<description><![CDATA[aehuaehuaeh depois de pesquisar bastante, achei e o cara vÃª que Ã© tÃ£o fÃ¡cil! da base de dados: ALTER DATABASE #BASE_DE_DADOS# SET search_path TO "$user",public,outro_schema do usuÃ¡rio: ALTER USER #NOME_DO_USER# SET search_path TO "$user",public,outro_schema]]></description>
			<content:encoded><![CDATA[<p>aehuaehuaeh depois de pesquisar bastante, achei e o cara vÃª que Ã© tÃ£o fÃ¡cil!</p>
<p>da base de dados:<br />
ALTER DATABASE #BASE_DE_DADOS# SET search_path TO "$user",public,outro_schema</p>
<p>do usuÃ¡rio:<br />
ALTER USER #NOME_DO_USER# SET search_path TO "$user",public,outro_schema</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2008/01/02/alterar-default-search_path-pgsql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PostgreSQL &#8211; Npgsql/Windows &#8211; Only AuthenticationClearTextPassword and AuthenticationMD5Password</title>
		<link>http://www.republicavirtual.com.br/blog/2007/10/08/postgresql-npgsqlwindows-only-authenticationcleartextpassword-and-authenticationmd5password/</link>
		<comments>http://www.republicavirtual.com.br/blog/2007/10/08/postgresql-npgsqlwindows-only-authenticationcleartextpassword-and-authenticationmd5password/#comments</comments>
		<pubDate>Mon, 08 Oct 2007 19:58:34 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Postgre SQL]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://republicavirtual.com.br/blog/2007/10/08/postgresql-npgsqlwindows-only-authenticationcleartextpassword-and-authenticationmd5password/</guid>
		<description><![CDATA[para resolver esse problema: PLAIN TEXT CODE: Exception Details: Npgsql.NpgsqlException: Only AuthenticationClearTextPassword and AuthenticationMD5Password supported for now. Received: 4 &#160; Source Error: &#160; An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>para resolver esse problema:</p>
<div class="igBar"><span id="lcode-5"><a href="#" onclick="javascript:showPlainTxt('code-5'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-5">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Exception Details: Npgsql.<span style="">NpgsqlException</span>: Only AuthenticationClearTextPassword and AuthenticationMD5Password supported for now. <span style="">Received</span>: <span style="color:#800000;color:#800000;">4</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Source Error:</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">An unhandled exception was generated during the execution of the current web request. <span style="">Information</span> regarding the origin and location of the exception can be identified using the exception stack trace below.</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="">Stack</span> Trace:</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#91;</span>NpgsqlException: Only AuthenticationClearTextPassword and AuthenticationMD5Password supported for now. <span style="">Received</span>: <span style="color:#800000;color:#800000;">4</span><span style="color:#006600; font-weight:bold;">&#93;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Npgsql.<span style="">NpgsqlConnector</span>.<span style="">CheckErrors</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span> +<span style="color:#800000;color:#800000;">86</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Npgsql.<span style="">NpgsqlConnector</span>.<span style="">Open</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span> +<span style="color:#800000;color:#800000;">425</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Npgsql.<span style="">NpgsqlConnectorPool</span>.<span style="">GetPooledConnector</span><span style="color:#006600; font-weight:bold;">&#40;</span>NpgsqlConnection Connection<span style="color:#006600; font-weight:bold;">&#41;</span> +<span style="color:#800000;color:#800000;">508</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Npgsql.<span style="">NpgsqlConnectorPool</span>.<span style="">RequestPooledConnectorInternal</span><span style="color:#006600; font-weight:bold;">&#40;</span>NpgsqlConnection Connection<span style="color:#006600; font-weight:bold;">&#41;</span> +<span style="color:#800000;color:#800000;">66</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Npgsql.<span style="">NpgsqlConnectorPool</span>.<span style="">RequestPooledConnector</span><span style="color:#006600; font-weight:bold;">&#40;</span>NpgsqlConnection Connection<span style="color:#006600; font-weight:bold;">&#41;</span> +<span style="color:#800000;color:#800000;">124</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Npgsql.<span style="">NpgsqlConnectorPool</span>.<span style="">RequestConnector</span><span style="color:#006600; font-weight:bold;">&#40;</span>NpgsqlConnection Connection<span style="color:#006600; font-weight:bold;">&#41;</span> +<span style="color:#800000;color:#800000;">54</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Npgsql.<span style="">NpgsqlConnection</span>.<span style="">Open</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span> +<span style="color:#800000;color:#800000;">243</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">System.<span style="">Data</span>.<span style="">Common</span>.<span style="">DbDataAdapter</span>.<span style="">FillInternal</span><span style="color:#006600; font-weight:bold;">&#40;</span>DataSet dataset, DataTable<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#006600; font-weight:bold;">&#93;</span> datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior<span style="color:#006600; font-weight:bold;">&#41;</span> +<span style="color:#800000;color:#800000;">121</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">System.<span style="">Data</span>.<span style="">Common</span>.<span style="">DbDataAdapter</span>.<span style="">Fill</span><span style="color:#006600; font-weight:bold;">&#40;</span>DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior<span style="color:#006600; font-weight:bold;">&#41;</span> +<span style="color:#800000;color:#800000;">137</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">System.<span style="">Data</span>.<span style="">Common</span>.<span style="">DbDataAdapter</span>.<span style="">Fill</span><span style="color:#006600; font-weight:bold;">&#40;</span>DataSet dataSet, String srcTable<span style="color:#006600; font-weight:bold;">&#41;</span> +<span style="color:#800000;color:#800000;">83</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">contato.<span style="">TextBox1_PreRender</span><span style="color:#006600; font-weight:bold;">&#40;</span>Object sender, EventArgs e<span style="color:#006600; font-weight:bold;">&#41;</span> +<span style="color:#800000;color:#800000;">136</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">System.<span style="">Web</span>.<span style="">UI</span>.<span style="">Control</span>.<span style="">OnPreRender</span><span style="color:#006600; font-weight:bold;">&#40;</span>EventArgs e<span style="color:#006600; font-weight:bold;">&#41;</span> +<span style="color:#800000;color:#800000;">2114636</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">System.<span style="">Web</span>.<span style="">UI</span>.<span style="">WebControls</span>.<span style="">TextBox</span>.<span style="">OnPreRender</span><span style="color:#006600; font-weight:bold;">&#40;</span>EventArgs e<span style="color:#006600; font-weight:bold;">&#41;</span> +<span style="color:#800000;color:#800000;">11</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">System.<span style="">Web</span>.<span style="">UI</span>.<span style="">Control</span>.<span style="">PreRenderRecursiveInternal</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span> +<span style="color:#800000;color:#800000;">77</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">System.<span style="">Web</span>.<span style="">UI</span>.<span style="">Control</span>.<span style="">PreRenderRecursiveInternal</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span> +<span style="color:#800000;color:#800000;">161</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">System.<span style="">Web</span>.<span style="">UI</span>.<span style="">Control</span>.<span style="">PreRenderRecursiveInternal</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span> +<span style="color:#800000;color:#800000;">161</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">System.<span style="">Web</span>.<span style="">UI</span>.<span style="">Page</span>.<span style="">ProcessRequestMain</span><span style="color:#006600; font-weight:bold;">&#40;</span>Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint<span style="color:#006600; font-weight:bold;">&#41;</span> +<span style="color:#800000;color:#800000;">1360</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Edite o arquivo <strong>/usr/local/pgsql/data/pg_hba.conf</strong> e adicione: </p>
<div class="igBar"><span id="lcode-6"><a href="#" onclick="javascript:showPlainTxt('code-6'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-6">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">#host BASE_DE_DADOS USUARIO IP MASK METHOD</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">host BASEDEDADOS USUARIO&nbsp; <span style="color:#800000;color:#800000;">0</span>.<span style="color:#800000;color:#800000;">0</span>.<span style="color:#800000;color:#800000;">0</span>.<span style="color:#800000;color:#800000;">0</span> <span style="color:#800000;color:#800000;">0</span>.<span style="color:#800000;color:#800000;">0</span>.<span style="color:#800000;color:#800000;">0</span>.<span style="color:#800000;color:#800000;">0</span> md5 </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>sÃ³ mudar a autenticaÃ§Ã£o para md5 =-)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2007/10/08/postgresql-npgsqlwindows-only-authenticationcleartextpassword-and-authenticationmd5password/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Importando base de dados PGSQL pelo PSQL</title>
		<link>http://www.republicavirtual.com.br/blog/2007/09/26/importando-base-de-dados-pgsql-pelo-psql/</link>
		<comments>http://www.republicavirtual.com.br/blog/2007/09/26/importando-base-de-dados-pgsql-pelo-psql/#comments</comments>
		<pubDate>Wed, 26 Sep 2007 22:31:48 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Postgre SQL]]></category>
		<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://republicavirtual.com.br/blog/2007/09/26/importando-base-de-dados-pgsql-pelo-psql/</guid>
		<description><![CDATA[rapidin, como importar arquivo SQL utilizando console PSQL. psql -d BASEDEDADOS -f ARQUIVO.SQL -U USUÃ?RIO para ver o que estÃ¡ sendo executado, adicione: -a]]></description>
			<content:encoded><![CDATA[<p>rapidin, como importar arquivo SQL utilizando console PSQL.</p>
<p>psql -d <em><strong>BASEDEDADOS</strong></em> -f <em><strong>ARQUIVO.SQL</strong></em> -U <em><strong>USUÃ?RIO</strong></em></p>
<p>para ver o que estÃ¡ sendo executado, adicione: -a</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2007/09/26/importando-base-de-dados-pgsql-pelo-psql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>desconto kinghost</title>
		<link>http://www.republicavirtual.com.br/blog/2007/09/26/desconto-kinghost/</link>
		<comments>http://www.republicavirtual.com.br/blog/2007/09/26/desconto-kinghost/#comments</comments>
		<pubDate>Wed, 26 Sep 2007 18:15:02 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Firebird]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[lighttpd]]></category>
		<category><![CDATA[MS SQL Server]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Postfix]]></category>
		<category><![CDATA[Postgre SQL]]></category>
		<category><![CDATA[VoIP]]></category>
		<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://republicavirtual.com.br/blog/2007/09/26/desconto-kinghost/</guid>
		<description><![CDATA[CÃ³digo promocional Kinghost! Ganhe 15% de desconto nas 3 primeiras mensalidades na melhor empresa de hospedagem do brasil com toda certeza&#8230; Acesse o link abaixo http://www.kinghost.com.br/promo/BIGDESCONTO.html ou digite o cÃ³digo promocional BIGDESCONTO no cadastro]]></description>
			<content:encoded><![CDATA[<p>CÃ³digo promocional Kinghost!</p>
<p>Ganhe 15% de desconto nas 3 primeiras mensalidades na melhor empresa de hospedagem do brasil com toda certeza&#8230;</p>
<p>Acesse o link abaixo<br />
<a href="http://www.kinghost.com.br/promo/BIGDESCONTO.html">http://www.kinghost.com.br/promo/BIGDESCONTO.html</a><br />
ou digite o cÃ³digo promocional BIGDESCONTO no cadastro</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2007/09/26/desconto-kinghost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CÃ³digo promocional Kinghost</title>
		<link>http://www.republicavirtual.com.br/blog/2007/09/20/codigo-promocional-kinghost/</link>
		<comments>http://www.republicavirtual.com.br/blog/2007/09/20/codigo-promocional-kinghost/#comments</comments>
		<pubDate>Thu, 20 Sep 2007 11:46:55 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Firebird]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[lighttpd]]></category>
		<category><![CDATA[MS SQL Server]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Postfix]]></category>
		<category><![CDATA[Postgre SQL]]></category>
		<category><![CDATA[VoIP]]></category>
		<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://republicavirtual.com.br/blog/2007/09/20/codigo-promocional-kinghost/</guid>
		<description><![CDATA[CÃ³digo promocional Kinghost! Ganhe 15% de desconto nas 3 primeiras mensalidades na melhor empresa de hospedagem do brasil com toda certeza... Acesse o link abaixo http://www.kinghost.com.br/promo/BIGDESCONTO.html ou digite o cÃ³digo promocional BIGDESCONTO no cadastro]]></description>
			<content:encoded><![CDATA[<p>CÃ³digo promocional Kinghost!</p>
<p>Ganhe 15% de desconto nas 3 primeiras mensalidades na melhor empresa de hospedagem do brasil com toda certeza...</p>
<p>Acesse o link abaixo<br />
<a href="http://www.kinghost.com.br/promo/BIGDESCONTO.html">http://www.kinghost.com.br/promo/BIGDESCONTO.html</a><br />
ou digite o cÃ³digo promocional BIGDESCONTO no cadastro</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2007/09/20/codigo-promocional-kinghost/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Desconto Hospedagem Kinghost</title>
		<link>http://www.republicavirtual.com.br/blog/2007/09/14/desconto-hospedagem-kinghost/</link>
		<comments>http://www.republicavirtual.com.br/blog/2007/09/14/desconto-hospedagem-kinghost/#comments</comments>
		<pubDate>Fri, 14 Sep 2007 04:29:13 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[MS SQL Server]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Postfix]]></category>
		<category><![CDATA[Postgre SQL]]></category>

		<guid isPermaLink="false">http://republicavirtual.com.br/blog/2007/09/14/desconto-hospedagem-kinghost/</guid>
		<description><![CDATA[CÃ³digo promocional Kinghost! Ganhe 15% de desconto nas 3 primeiras mensalidades na melhor empresa de hospedagem do brasil com toda certeza... Acesse o link abaixo http://www.kinghost.com.br/promo/BIGDESCONTO.html ou digite o cÃ³digo promocional BIGDESCONTO no cadastro]]></description>
			<content:encoded><![CDATA[<p>CÃ³digo promocional Kinghost!</p>
<p>Ganhe 15% de desconto nas 3 primeiras mensalidades na melhor empresa de hospedagem do brasil com toda certeza...</p>
<p>Acesse o link abaixo<br />
<a href="http://www.kinghost.com.br/promo/BIGDESCONTO.html">http://www.kinghost.com.br/promo/BIGDESCONTO.html</a><br />
ou digite o cÃ³digo promocional BIGDESCONTO no cadastro</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2007/09/14/desconto-hospedagem-kinghost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bloquando acesso ao schema public</title>
		<link>http://www.republicavirtual.com.br/blog/2007/05/15/bloquando-acesso-ao-schema-public/</link>
		<comments>http://www.republicavirtual.com.br/blog/2007/05/15/bloquando-acesso-ao-schema-public/#comments</comments>
		<pubDate>Tue, 15 May 2007 21:21:40 +0000</pubDate>
		<dc:creator>felipe</dc:creator>
				<category><![CDATA[Postgre SQL]]></category>

		<guid isPermaLink="false">http://republicavirtual.com.br/blog/2007/05/15/bloquando-acesso-ao-schema-public/</guid>
		<description><![CDATA[PLAIN TEXT SQL: REVOKE CREATE ON schema public FROM public;]]></description>
			<content:encoded><![CDATA[<div class="igBar"><span id="lsql-8"><a href="#" onclick="javascript:showPlainTxt('sql-8'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">SQL:</span>
<div id="sql-8">
<div class="sql">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">REVOKE</span> <span style="color: #993333; font-weight: bold;">CREATE</span> <span style="color: #993333; font-weight: bold;">ON</span> schema public <span style="color: #993333; font-weight: bold;">FROM</span> public; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2007/05/15/bloquando-acesso-ao-schema-public/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Importando/Exportando base de dados PGSQL</title>
		<link>http://www.republicavirtual.com.br/blog/2007/04/04/importandoexportando-base-de-dados-pgsql/</link>
		<comments>http://www.republicavirtual.com.br/blog/2007/04/04/importandoexportando-base-de-dados-pgsql/#comments</comments>
		<pubDate>Wed, 04 Apr 2007 15:49:30 +0000</pubDate>
		<dc:creator>felipe</dc:creator>
				<category><![CDATA[Postgre SQL]]></category>

		<guid isPermaLink="false">http://republicavirtual.com.br/blog/2007/04/04/importandoexportando-base-de-dados-pgsql/</guid>
		<description><![CDATA[Backup/Dump uma base /usr/local/pgsql/bin/pg_dump BASE &#62; arquivo_backup.sql Importnado base /usr/local/pgsql/bin/psql -d BASE -f ARQUIVO.sql]]></description>
			<content:encoded><![CDATA[<ul>
<li>Backup/Dump uma base</li>
</ul>
<p><code>/usr/local/pgsql/bin/pg_dump BASE &gt; arquivo_backup.sql</code></p>
<ul>
<li>Importnado base</li>
</ul>
<p><code>/usr/local/pgsql/bin/psql -d BASE -f ARQUIVO.sql</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2007/04/04/importandoexportando-base-de-dados-pgsql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Liberando acesso externo PGSQL</title>
		<link>http://www.republicavirtual.com.br/blog/2007/03/08/liberando-acesso-externo-pgsql/</link>
		<comments>http://www.republicavirtual.com.br/blog/2007/03/08/liberando-acesso-externo-pgsql/#comments</comments>
		<pubDate>Fri, 09 Mar 2007 00:29:15 +0000</pubDate>
		<dc:creator>felipe</dc:creator>
				<category><![CDATA[Postgre SQL]]></category>

		<guid isPermaLink="false">http://republicavirtual.com.br/blog/?p=9</guid>
		<description><![CDATA[editar arquivo: vi /var/lib/postgresql/data/pg_hba.conf adicionar a linha: host #BASE# #USER# 0.0.0.0 0.0.0.0 password onde #BASE# = base de dados e #USER# = usuÃ¡rio de conexÃ£ restartar pgsql /etc/init.d/postgresql restart]]></description>
			<content:encoded><![CDATA[<ol>
<li>editar arquivo:<br />
vi /var/lib/postgresql/data/pg_hba.conf</p>
<p>adicionar a linha:<br />
host    <em>#BASE#   #USER# </em>0.0.0.0 0.0.0.0 password</p>
<p>onde #BASE# = base de dados  e #USER# = usuÃ¡rio de conexÃ£</li>
<li>restartar pgsql<br />
/etc/init.d/postgresql restart</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2007/03/08/liberando-acesso-externo-pgsql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

