<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>4 Information</title>
	<atom:link href="http://4information.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://4information.wordpress.com</link>
	<description></description>
	<lastBuildDate>Sun, 24 Aug 2008 00:27:20 +0000</lastBuildDate>
	<language>pt-br</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='4information.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>4 Information</title>
		<link>http://4information.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://4information.wordpress.com/osd.xml" title="4 Information" />
	<atom:link rel='hub' href='http://4information.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Data Manipulation Language &#8211; DML</title>
		<link>http://4information.wordpress.com/2008/08/23/data-manipulation-language-dml/</link>
		<comments>http://4information.wordpress.com/2008/08/23/data-manipulation-language-dml/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 14:13:20 +0000</pubDate>
		<dc:creator>Guilherme</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://4information.wordpress.com/?p=43</guid>
		<description><![CDATA[A Linguagem de Manipulação de Dados (Data Manipulation Languagem &#8211; DML) é a linguagem que permite aos usuários terem acesso e manipular dados em um banco de dados (BD). Atualmente, muitos desenvolvedores utilizam SQL (Structured Query Language) para manipular dados em um banco de dados relacional (Relational Database). A Linguagem de Manipulação de Dados possui [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=4information.wordpress.com&amp;blog=4274337&amp;post=43&amp;subd=4information&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:left;">A Linguagem de Manipulação de Dados (Data Manipulation Languagem &#8211; DML) é a linguagem que permite aos usuários terem acesso e manipular dados em um banco de dados (BD).</p>
<p style="text-align:left;">Atualmente, muitos desenvolvedores utilizam SQL (Structured Query Language) para manipular dados em um banco de dados relacional (Relational Database).</p>
<p style="text-align:left;">A Linguagem de Manipulação de Dados possui suas funções organizadas por uma palavra declaratório &#8211; mais comumente, um <strong>verbo</strong>.</p>
<p style="text-align:left;">Utilizando-se SQL, os comandos de manipulação de dados são:</p>
<p style="text-align:left;">1- <strong>SELECT</strong><br />
2- <strong>INSERT</strong><br />
3- <strong>UPDATE</strong><br />
4- <strong>DELETE</strong></p>
<p>Existem dois tipos de linguagem de manipulação de dados:</p>
<p style="text-align:left;">1- <strong>PROCEDURAIS</strong><br />
2- <strong>NÃO-PROCEDURAIS</strong>, também chamadas de <strong>DECLARATIVAS</strong></p>
<p style="text-align:left;">
<p style="text-align:left;"><span id="more-43"></span></p>
<ul style="text-align:left;">
<li><strong>DML PROCEDURAL<br />
</strong>Quando o usuário especifica qual dado é necessário e, <em>COMO </em>obtê-lo.<br />
Algumas linguagens procedurais são:</li>
</ul>
<ol>
<li>ADA</li>
<li>COBOL</li>
<li>LUA</li>
<li>PASCAL</li>
<li>BASIC, entre outras&#8230;
<p>Um exemplo de uma situação procedural é visto quando um usuário solicita que tais dados de um sistema devem ser obtidos. Porém, as informações de acesso e manipulação destes dados estão armazenados em <em>procedures </em>(ou procedimentos) ou em <em>functions </em>(ou funções), em uma aplicação.</li>
</ol>
<ul style="text-align:left;">
<li><strong>DML NÃO-PROCEDURAL ou DML DECLARATIVA<br />
</strong>Quando o usuário solicita informações de uma base de dados, porém não existe a preocupação de onde esses dados serão extraídos. É utilizada em comandos estruturados.</li>
</ul>
<ul style="text-align:left;">
<li><strong>EXEMPLOS DE COMANDOS DDL<br />
</strong></li>
</ul>
<ol>
<li><strong>SELECT<br />
</strong>Instrução responsável pela <strong>requisição </strong>de dados.<br />
Exemplo:<br />
<em>SELECT * FROM ALUNO;<br />
</em>Estamos <strong>selecionando </strong>todas (por isso o <strong>*</strong>) as informações de todos os atributos (campos) da tabela chamda &#8216;Aluno&#8217;.</li>
<li><strong>INSERT<br />
</strong>Instrução responsável pela <strong>inserção </strong>de dados.<br />
Exemplo:<br />
<em>INSERT INTO ALUNO VALUES(1,&#8217;GUILHERME&#8217;,19);<br />
</em>Estamos <strong>inserindo </strong>algumas informações na tabela chamada &#8216;Aluno&#8217;;</li>
<li><strong>UPDATE<br />
</strong>Instrução responsável pela <strong>atualização</strong> de dados.<br />
Exemplo:<br />
<em>UPDATE ALUNO SET NOME=&#8217;GUILHERME DE CLEVA FARTO&#8217; WHERE CODIGO=1;<br />
</em>Estamos <strong>atualizando</strong> o campo &#8216;nome&#8217; do registro que possue o campo &#8216;codigo&#8217; igual a 1.</li>
<li><strong>DELETE<br />
</strong>Instrução responsável pela <strong>exclusão</strong> de dados.<br />
Exemplo:<br />
<em>DELETE FROM ALUNO WHERE CODIGO=1;<br />
</em>Estamos <strong>excluindo</strong> o registro que possue o campo &#8216;codigo&#8217; igual a 1.</li>
</ol>
<p>Questions? Email me! Enjoy.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/4information.wordpress.com/43/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/4information.wordpress.com/43/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/4information.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/4information.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/4information.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/4information.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/4information.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/4information.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/4information.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/4information.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/4information.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/4information.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/4information.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/4information.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/4information.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/4information.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=4information.wordpress.com&amp;blog=4274337&amp;post=43&amp;subd=4information&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://4information.wordpress.com/2008/08/23/data-manipulation-language-dml/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Guilherme</media:title>
		</media:content>
	</item>
		<item>
		<title>Data Definition Language &#8211; DDL</title>
		<link>http://4information.wordpress.com/2008/08/23/data-definition-language-ddl/</link>
		<comments>http://4information.wordpress.com/2008/08/23/data-definition-language-ddl/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 13:37:13 +0000</pubDate>
		<dc:creator>Guilherme</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://4information.wordpress.com/?p=40</guid>
		<description><![CDATA[A Linguagem de Definição de Dados, ou Data Definition Language(DDL) é uma linguagem de computador responsável por definir as estruturas de dados. Este termo foi utilizado pela primeira vez nas relações dos modelos de banco de dados &#8216;Codasyl&#8217; &#8211; um acrônimo para &#8216;Conference on Data Systems Languages&#8217;, que foi um consórcio industrial na área de [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=4information.wordpress.com&amp;blog=4274337&amp;post=40&amp;subd=4information&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A Linguagem de Definição de Dados, ou Data Definition Language(DDL) é uma linguagem de computador responsável por definir as estruturas de dados.</p>
<p>Este termo foi utilizado pela primeira vez nas relações dos modelos de banco de dados &#8216;Codasyl&#8217; &#8211; um acrônimo para &#8216;Conference on Data Systems Languages&#8217;, que foi um consórcio industrial na área de TI criado em 1959 para guiar o desenvolvimento de uma linguagem de programação padrão que viria a ser utilizada em diversos computadores. Foi a partir dessa idéia que a linguagem COBOL foi desenvolvida.</p>
<p>Em um primeiro momento, DDL pode ser visto como um subconjunto da linguagem SQL (Structured Query Languagem &#8211; Linguagem de Consulta Estruturada), mas atualmente é utilizada para se referir a qualquer linguagem formal para descrever dados estruturados, como esquemas XML (eXtensible Markup Language).</p>
<p>Algumas instruções DDL são:</p>
<ol>
<li><strong>CREATE TABLE<br />
</strong>Instrução responsável pela <strong>criação </strong>de uma tabela em uma base (banco) de dados.<br />
Exemplo:<br />
<em>CREATE TABLE ALUNO (codigo number, nome varchar2(50));</em><br />
Estamos <strong>criando </strong>uma tabela chamada &#8216;Aluno&#8217; que contém o atributo &#8216;codigo&#8217; do tipo numérico e &#8216;nome&#8217; do tipo texto (varchar2)</li>
<li><strong>ALTER TABLE<br />
</strong>Instrução responsável pela <strong>alteração</strong> de uma tabela.<br />
Exemplo:<br />
<em>ALTER TABLE ALUNO ADD idade number;<br />
</em>Estamos <strong>alterando</strong> a tabela chamada &#8216;Aluno&#8217;, criando um novo atributo chamado &#8216;idade&#8217; do tipo numérico.</li>
<li><strong>DROP TABLE<br />
</strong>Instrução responsável pela <strong>remoção</strong> de uma tabela.<br />
Exemplo<strong>:<br />
</strong><em>DROP TABLE ALUNO;<br />
</em>Estamos <strong>dropando</strong> (ou removendo, excluindo) a tabela chamda &#8216;Aluno&#8217;.</li>
</ol>
<p>Por enquanto é só&#8230;</p>
<p>Enjoy.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/4information.wordpress.com/40/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/4information.wordpress.com/40/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/4information.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/4information.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/4information.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/4information.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/4information.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/4information.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/4information.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/4information.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/4information.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/4information.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/4information.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/4information.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/4information.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/4information.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=4information.wordpress.com&amp;blog=4274337&amp;post=40&amp;subd=4information&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://4information.wordpress.com/2008/08/23/data-definition-language-ddl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Guilherme</media:title>
		</media:content>
	</item>
		<item>
		<title>SGBD &#8211; Sistema Gerenciador de Banco de Dados</title>
		<link>http://4information.wordpress.com/2008/08/23/sgbd-sistema-gerenciador-de-banco-de-dados/</link>
		<comments>http://4information.wordpress.com/2008/08/23/sgbd-sistema-gerenciador-de-banco-de-dados/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 02:05:02 +0000</pubDate>
		<dc:creator>Guilherme</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://4information.wordpress.com/?p=36</guid>
		<description><![CDATA[Um Sistema Gerenciador de Banco de Dados (SGBD) é um conjunto de aplicações (programas) que são responsáveis por gerenciar grandes quantidades de informações. Alguns dos SGBD&#8217;s que mais se destacam são: Oracle, Microsoft SQL Server, IBM DB2, MySql entre outros. Um SGBD é um tipo de aplicação que consiste em uma coleção de dados relacionados [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=4information.wordpress.com&amp;blog=4274337&amp;post=36&amp;subd=4information&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Um Sistema Gerenciador de Banco de Dados (SGBD) é um conjunto de aplicações (programas) que são responsáveis por gerenciar grandes quantidades de informações.</p>
<p>Alguns dos SGBD&#8217;s que mais se destacam são: Oracle, Microsoft SQL Server, IBM DB2, MySql entre outros.</p>
<p>Um SGBD é um tipo de aplicação que consiste em uma coleção de dados relacionados entre si e um conjunto de programas que provê o acesso aos dados. A principal característica de um SGBD é facilitar o acesso e manipulação dos dados em uma base de dados através de requisições dos usuários e com isso tornar o acesso aos dados mais eficiente.</p>
<p>Abaixo segue uma imagem exemplificando um SGBD:</p>
<div id="attachment_38" class="wp-caption aligncenter" style="width: 402px"><img class="size-full wp-image-38" src="http://4information.files.wordpress.com/2008/08/sgbd1.jpg?w=450" alt="Sistema Gerenciador de Banco de Dados"   /><p class="wp-caption-text">Sistema Gerenciador de Banco de Dados</p></div>
<p>1- O usuário solicita um acesso aos dados.<br />
2- O SGBD recebe (intercepta) essa solicitação e analisa a mensagem.<br />
3- O SGBD realiza as operações solicitadas no banco de dados.</p>
<p>Dentre as principais funcionalidades de um sistema gerenciador de banco de dados, destacam-se:</p>
<p>1- Intereção das aplicações com o(s) banco(s) de dados.<br />
2- Integridade das informações.<br />
3- Segurança dos dados.<br />
4- Backup&#8217;s e recuperações de informações.<br />
5- Desempenho.</p>
<p>No próximo post, falei sobre a Linguagem de Manipulação de Dados (DML) e Linguagem de Definição de Dados(DDL).</p>
<p>Enjoy.</p>
<p style="text-align:center;">
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/4information.wordpress.com/36/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/4information.wordpress.com/36/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/4information.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/4information.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/4information.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/4information.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/4information.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/4information.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/4information.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/4information.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/4information.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/4information.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/4information.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/4information.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/4information.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/4information.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=4information.wordpress.com&amp;blog=4274337&amp;post=36&amp;subd=4information&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://4information.wordpress.com/2008/08/23/sgbd-sistema-gerenciador-de-banco-de-dados/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Guilherme</media:title>
		</media:content>

		<media:content url="http://4information.files.wordpress.com/2008/08/sgbd1.jpg" medium="image">
			<media:title type="html">Sistema Gerenciador de Banco de Dados</media:title>
		</media:content>
	</item>
		<item>
		<title>Primeiro post</title>
		<link>http://4information.wordpress.com/2008/07/20/primeiro-post/</link>
		<comments>http://4information.wordpress.com/2008/07/20/primeiro-post/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 13:50:31 +0000</pubDate>
		<dc:creator>Guilherme</dc:creator>
				<category><![CDATA[Scraps]]></category>

		<guid isPermaLink="false">http://4information.wordpress.com/?p=7</guid>
		<description><![CDATA[Olá para todos. Este é meu primeiro post no meu novo blog. Aqui vocês encontrarão tutoriais, exemplos e dicas sobre tecnologia. Aproveitem. Hi everybody. This is my first post on my new blog. Here you&#8217;ll find tutorials, examples and tips about technology. Enjoy.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=4information.wordpress.com&amp;blog=4274337&amp;post=7&amp;subd=4information&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Olá para todos.<br />
Este é meu primeiro post no meu novo blog.<br />
Aqui vocês encontrarão tutoriais, exemplos e dicas sobre tecnologia.<br />
Aproveitem.</p>
<p>Hi everybody.<br />
This is my first post on my new blog.<br />
Here you&#8217;ll find tutorials, examples and tips about technology.<br />
Enjoy.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/4information.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/4information.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/4information.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/4information.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/4information.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/4information.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/4information.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/4information.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/4information.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/4information.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/4information.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/4information.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/4information.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/4information.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/4information.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/4information.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=4information.wordpress.com&amp;blog=4274337&amp;post=7&amp;subd=4information&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://4information.wordpress.com/2008/07/20/primeiro-post/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Guilherme</media:title>
		</media:content>
	</item>
	</channel>
</rss>
