<?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>SQL and web development</title>
	<atom:link href="http://rishka.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://rishka.wordpress.com</link>
	<description>by Rishka Booran-Johnson</description>
	<lastBuildDate>Tue, 23 Jun 2009 23:16:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='rishka.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>SQL and web development</title>
		<link>http://rishka.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://rishka.wordpress.com/osd.xml" title="SQL and web development" />
	<atom:link rel='hub' href='http://rishka.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How to check database growth</title>
		<link>http://rishka.wordpress.com/2009/06/23/how-to-check-database-growth/</link>
		<comments>http://rishka.wordpress.com/2009/06/23/how-to-check-database-growth/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 23:13:19 +0000</pubDate>
		<dc:creator>rishka</dc:creator>
				<category><![CDATA[SQL 2005]]></category>

		<guid isPermaLink="false">http://rishka.wordpress.com/?p=42</guid>
		<description><![CDATA[Sometimes you&#8217;ll want to know how much and how fast your database has been growing. Usually you will have a document that tells you the size information on all the databases, but this is not always the case in the real world. Considering that you perform regular backups, the following script can give you a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rishka.wordpress.com&amp;blog=5367943&amp;post=42&amp;subd=rishka&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sometimes you&#8217;ll want to know how much and how fast your database has been growing. Usually you will have a document that tells you the size information on all the databases, but this is not always the case in the real world. Considering that you perform regular backups, the following script can give you a estimated idea of growth over time of your database.</p>
<p>select<br />
BackupDate = convert(varchar(10),backup_start_date, 111),<br />
SizeInGigs=floor( backup_size/1024000000)<br />
from msdb..backupset<br />
where<br />
database_name = &#8216;DatabaseName&#8217;<br />
and type = &#8216;d&#8217;<br />
order by<br />
backup_start_date desc</p>
<p>Furthermore the Backup type can be used for the following types as well , making it easier to track other types of objects:</p>
<ul>
<li> D = Database</li>
<li> I = Differential database</li>
<li> L = Log</li>
<li> F = File or filegroup</li>
<li> G =Differential file</li>
<li> P = Partial</li>
<li> Q = Differential partial</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rishka.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rishka.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rishka.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rishka.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rishka.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rishka.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rishka.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rishka.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rishka.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rishka.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rishka.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rishka.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rishka.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rishka.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rishka.wordpress.com&amp;blog=5367943&amp;post=42&amp;subd=rishka&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rishka.wordpress.com/2009/06/23/how-to-check-database-growth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/88596442768592332371d64f781a792e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rishka</media:title>
		</media:content>
	</item>
		<item>
		<title>Keywords for your website</title>
		<link>http://rishka.wordpress.com/2009/06/15/keywords-for-your-website/</link>
		<comments>http://rishka.wordpress.com/2009/06/15/keywords-for-your-website/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 02:52:09 +0000</pubDate>
		<dc:creator>rishka</dc:creator>
				<category><![CDATA[Web development]]></category>
		<category><![CDATA[keywords]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[website development]]></category>

		<guid isPermaLink="false">http://rishka.wordpress.com/?p=34</guid>
		<description><![CDATA[When looking to promote your site you  want to increase traffic to your website, which is when you need good SEO (Search Engine Optimization) and is the latest buzz word around. One of the key factors in SEO are good keywords, a keyword is what a users use to conduct a  search in a search [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rishka.wordpress.com&amp;blog=5367943&amp;post=34&amp;subd=rishka&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When looking to promote your site you  want to increase traffic to your website, which is when you need good SEO (Search Engine Optimization) and is the latest buzz word around.</p>
<p>One of the key factors in SEO are good keywords, a keyword is what a users use to conduct a  search in a search engine, such as Google, Yahoo, MSN, etc. A keyword can consist of a single word, such as &#8220;cars&#8221; or an entire phrase, like &#8220;cars for sale&#8221; or even &#8220;cars for sale in Australia&#8221;.  Over time you will find out  the common keyword selections website users use to find your site and you can use these keywords to try to rank your website highly in search engine results pages.</p>
<p>A keyword tool I use is : <a title="Google Keyword Tool" href="https://adwords.google.com/select/KeywordToolExternal" target="_blank">https://adwords.google.com/select/KeywordToolExternal</a>.</p>
<p>Have Fun <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rishka.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rishka.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rishka.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rishka.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rishka.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rishka.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rishka.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rishka.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rishka.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rishka.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rishka.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rishka.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rishka.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rishka.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rishka.wordpress.com&amp;blog=5367943&amp;post=34&amp;subd=rishka&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rishka.wordpress.com/2009/06/15/keywords-for-your-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/88596442768592332371d64f781a792e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rishka</media:title>
		</media:content>
	</item>
		<item>
		<title>RRN function in DB2</title>
		<link>http://rishka.wordpress.com/2009/06/12/rrn-function-in-db2/</link>
		<comments>http://rishka.wordpress.com/2009/06/12/rrn-function-in-db2/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 02:53:24 +0000</pubDate>
		<dc:creator>rishka</dc:creator>
				<category><![CDATA[DB2]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[Rowid]]></category>
		<category><![CDATA[RRN]]></category>

		<guid isPermaLink="false">http://rishka.wordpress.com/?p=36</guid>
		<description><![CDATA[I have just learned a new command in DB2 called RRN, which stands for relative record number. It has probably been used a long time, but had the rownum familiarity from Oracle. Here is an example: Return the relative record number and employee name from table EMPLOYEE for those employees in department 10. SELECT RRN(EMPLOYEE), [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rishka.wordpress.com&amp;blog=5367943&amp;post=36&amp;subd=rishka&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have just learned a new command in DB2 called RRN, which stands for relative record number. It has probably been used a long time, but had the rownum familiarity from Oracle.</p>
<p>Here is an example:<br />
Return the relative record number and employee name from table EMPLOYEE for those employees in department 10.</p>
<p>SELECT RRN(EMPLOYEE), LASTNAME<br />
FROM EMPLOYEE<br />
WHERE DEPTNO = 10</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rishka.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rishka.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rishka.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rishka.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rishka.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rishka.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rishka.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rishka.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rishka.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rishka.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rishka.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rishka.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rishka.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rishka.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rishka.wordpress.com&amp;blog=5367943&amp;post=36&amp;subd=rishka&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rishka.wordpress.com/2009/06/12/rrn-function-in-db2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/88596442768592332371d64f781a792e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rishka</media:title>
		</media:content>
	</item>
		<item>
		<title>Formatted date in SQL Server 2008</title>
		<link>http://rishka.wordpress.com/2009/06/09/formatted-date-in-sql-server-2008/</link>
		<comments>http://rishka.wordpress.com/2009/06/09/formatted-date-in-sql-server-2008/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 01:49:40 +0000</pubDate>
		<dc:creator>rishka</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL 2000]]></category>
		<category><![CDATA[SQL 2005]]></category>
		<category><![CDATA[SQL 2008]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rishka.wordpress.com/?p=15</guid>
		<description><![CDATA[Found an interesting article about Formatted date in SQL Server 2008 in the http://www.databasejournal.com website. There are quite a few occasions when a developer wants to extract a a date in a specific format extracted. Having used Oracle before I would use somthing like: select to_char(sysdate,&#8217;MM/DD/YYYY&#8217;) from dual; or select TRUNC(DateTimeField) to get the date [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rishka.wordpress.com&amp;blog=5367943&amp;post=15&amp;subd=rishka&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Found an interesting article about  <a href="http://www.databasejournal.com/features/mssql/article.php/3820771/Formatted-date-in-SQL-Server-2008.htm">Formatted date in SQL Server 2008</a> in the http://www.databasejournal.com website.</p>
<p>There are quite a few occasions when a developer wants to extract a a date in a specific format extracted.</p>
<p>Having used<strong> Oracle </strong>before I would use somthing like:<br />
<strong>select to_char(sysdate,&#8217;MM/DD/YYYY&#8217;) from dual;</strong> or<br />
<strong>select TRUNC(DateTimeField)</strong> to get the date only.</p>
<p>There is no equivalent in MS SQL Server, and one always have to use CAST or CONVERT, however using the SQL script developed by the author in this article, any MS SQL developer can write one common function and write a simple command : <strong>select dbo.format_date(GETDATE(),&#8217;YYYY-MM-DD&#8217;) as Date</strong>, to retrieve a date.</p>
<p>Have fun and read the comments below the article if you are using SQL 2000 and SQL 2005.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rishka.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rishka.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rishka.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rishka.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rishka.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rishka.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rishka.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rishka.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rishka.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rishka.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rishka.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rishka.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rishka.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rishka.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rishka.wordpress.com&amp;blog=5367943&amp;post=15&amp;subd=rishka&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rishka.wordpress.com/2009/06/09/formatted-date-in-sql-server-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/88596442768592332371d64f781a792e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rishka</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL.. the beginning.</title>
		<link>http://rishka.wordpress.com/2009/05/03/sql-the-beginning/</link>
		<comments>http://rishka.wordpress.com/2009/05/03/sql-the-beginning/#comments</comments>
		<pubDate>Sun, 03 May 2009 22:32:30 +0000</pubDate>
		<dc:creator>rishka</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL 2000]]></category>
		<category><![CDATA[SQL 2005]]></category>
		<category><![CDATA[SQL 2008]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rishka.wordpress.com/?p=13</guid>
		<description><![CDATA[The first time I ever saw a database was in Paradox (database), in 1995. It was a huge learning curve, but I quickly learned what tables, columns and rows were. Then I learned how to build relationships and write SQL queries. (SQL is short for Structured Query Language) This is how I then figured it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rishka.wordpress.com&amp;blog=5367943&amp;post=13&amp;subd=rishka&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The first time I ever saw a database was in Paradox (database), in 1995. It was a huge learning curve, but I quickly learned what tables, columns and rows were. Then I learned how to build relationships and write SQL queries. (SQL is short for Structured Query Language)</p>
<p>This is how I then figured it was put together.</p>
<p>Every database has collection of one or more tables.<br />
Tables are made up of rows and columns.<br />
The rows contain the data and columns describe the format of the data, namely data type, for that column.</p>
<p>Imagine a telephone directory, information of a person&#8217;s first name, surname , address and ph number, this is how the basic table would be constructed: </p>
<p>Table: <b>Phone_Directory</b></p>
<table width="75%" border="1">
<tr>
<td>FirstName</td>
<td>LastName</td>
<td>Address</td>
<td>Phone</td>
</tr>
<tr>
<td>Jake</td>
<td>Black</td>
<td>123 Round Road, CA</td>
<td>123 321-1234</td>
</tr>
<tr>
<td>Sonia</td>
<td>Coke</td>
<td>19 Sailfish Road, WA</td>
<td>232 555-5555</td>
</tr>
<tr>
<td>Mel</td>
<td>Brown</td>
<td>32 71st Ave, NY</td>
<td>614 555-5432</td>
</tr>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rishka.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rishka.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rishka.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rishka.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rishka.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rishka.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rishka.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rishka.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rishka.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rishka.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rishka.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rishka.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rishka.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rishka.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rishka.wordpress.com&amp;blog=5367943&amp;post=13&amp;subd=rishka&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rishka.wordpress.com/2009/05/03/sql-the-beginning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/88596442768592332371d64f781a792e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rishka</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://rishka.wordpress.com/2008/12/10/hello-world/</link>
		<comments>http://rishka.wordpress.com/2008/12/10/hello-world/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 08:30:23 +0000</pubDate>
		<dc:creator>rishka</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Hello World]]></category>

		<guid isPermaLink="false">http://rishka.wordpress.com/2008/12/10/hello-world/</guid>
		<description><![CDATA[Welcome to my blog. As you noticed I left the &#8216;Hello World!&#8217; heading as this is how programmers start their first program! With this blog I hope to help fellow SQL developers, whether Oracle, MsSQL, MySQL. And my new journey of web development in PHP. Starting with wordpress&#8230;.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rishka.wordpress.com&amp;blog=5367943&amp;post=1&amp;subd=rishka&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to my blog. As you noticed I left the &#8216;Hello World!&#8217; heading as this is how programmers start their first program! With this blog I hope to help fellow SQL developers, whether Oracle, MsSQL, MySQL. And my new journey of web development in PHP. Starting with wordpress&#8230;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rishka.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rishka.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rishka.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rishka.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rishka.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rishka.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rishka.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rishka.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rishka.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rishka.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rishka.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rishka.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rishka.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rishka.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rishka.wordpress.com&amp;blog=5367943&amp;post=1&amp;subd=rishka&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rishka.wordpress.com/2008/12/10/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/88596442768592332371d64f781a792e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rishka</media:title>
		</media:content>
	</item>
	</channel>
</rss>
