<?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>Searle Oliveira</title>
	<atom:link href="http://searle.com.br/feed" rel="self" type="application/rss+xml" />
	<link>http://searle.com.br</link>
	<description>mysql&#62; dba</description>
	<lastBuildDate>Mon, 01 Feb 2010 19:11:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>world database</title>
		<link>http://searle.com.br/schemas/world-database</link>
		<comments>http://searle.com.br/schemas/world-database#comments</comments>
		<pubDate>Mon, 01 Feb 2010 19:11:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Schemas]]></category>

		<guid isPermaLink="false">http://searle.com.br/?p=127</guid>
		<description><![CDATA[World database is used in MySQL certifications and training, to all MySQL versions.
world.sql
]]></description>
		<wfw:commentRss>http://searle.com.br/schemas/world-database/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Instalando Redis DB no Ubuntu 8.04 JeOS</title>
		<link>http://searle.com.br/redis/instalando-redis-db-no-ubuntu-8-04-jeos</link>
		<comments>http://searle.com.br/redis/instalando-redis-db-no-ubuntu-8-04-jeos#comments</comments>
		<pubDate>Tue, 19 Jan 2010 12:57:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Redis]]></category>

		<guid isPermaLink="false">http://searle.com.br/?p=97</guid>
		<description><![CDATA[O que é Redis?
Redis é um banco de dados &#8220;key-value&#8221; avançado. É semelhante ao memcached mas o conjunto de dados não é volátil, e os valores podem ser strings, exatamente como em memcached, mas também ser listas, conjuntos, e lista ordenada. Os tipos de dados podem ser manipulados com operações atômicas para  adicionar/remover elementos, [...]]]></description>
		<wfw:commentRss>http://searle.com.br/redis/instalando-redis-db-no-ubuntu-8-04-jeos/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Movendo tabelas entre schemas diferentes</title>
		<link>http://searle.com.br/mysql-server/movendo-tabelas-entre-schemas-diferentes</link>
		<comments>http://searle.com.br/mysql-server/movendo-tabelas-entre-schemas-diferentes#comments</comments>
		<pubDate>Mon, 11 Jan 2010 16:14:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://searle.com.br/?p=94</guid>
		<description><![CDATA[Mover tabelas entre diferentes schemas, é simples. Vamos criar o nosso universo.
Temos dois schemas chamados “my_blogs” e “my_videos”. O schema “my_blogs” possui a tabela “videos_rels” e o schema “my_videos” está vazio.

Para mover a tabela “videos_rels” do schema “my_blogs” para o schema “my_videos”, usamos a seguinte instrução:
mysql&#62; RENAME TABLE my_blogs.videos_rels TO my_videos.videos_rels;

Pronto, a tabela “videos_rels”, que [...]]]></description>
		<wfw:commentRss>http://searle.com.br/mysql-server/movendo-tabelas-entre-schemas-diferentes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configurando um Cluster MySQL</title>
		<link>http://searle.com.br/mysql-server/configurando-um-cluster-mysql</link>
		<comments>http://searle.com.br/mysql-server/configurando-um-cluster-mysql#comments</comments>
		<pubDate>Mon, 11 Jan 2010 16:12:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://searle.com.br/?p=92</guid>
		<description><![CDATA[Vamos configurar um Cluster MySQL, iniciando com o básico. Antes, pesquise sobre MySQL Cluster, suas nomenclaturas e definições.

O sistema operacional utilizado é o Ubuntu 9.4 e o servidor MySQL é o 5.0.75.
No arquivo ndb_mgmd.cnf, você define as configurações do cluster, de acordo com a função de cada servidor, nas seguintes seções:
1. Nodes Administrativos:
[NDB_MGMD DEFAULT]
[NDB_MGMD]
2. Réplicas [...]]]></description>
		<wfw:commentRss>http://searle.com.br/mysql-server/configurando-um-cluster-mysql/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL: Retornar o último ID de um campo em uma tabela</title>
		<link>http://searle.com.br/mysql-server/mysql-retornar-o-ultimo-id-de-um-campo-em-uma-tabela</link>
		<comments>http://searle.com.br/mysql-server/mysql-retornar-o-ultimo-id-de-um-campo-em-uma-tabela#comments</comments>
		<pubDate>Mon, 21 Dec 2009 20:37:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://searle.com.br/?p=86</guid>
		<description><![CDATA[Ao invés de utilizarmos a função LAST_INSERT_ID() podemos utilizar a instrução SELECT &#8230; FOR UPDATE. Esta instrução lê os dados mais recentes disponíveis, atribuindo LOCKs exclusivos a cada linha que lê (no caso de INNODB).
mysql> SELECT MAX(coluna_ID) FROM tabela FOR UPDATE;
A instrução SELECT apenas recupera as informações de identificação (específico para a conexão atual). Ela [...]]]></description>
		<wfw:commentRss>http://searle.com.br/mysql-server/mysql-retornar-o-ultimo-id-de-um-campo-em-uma-tabela/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
