<?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>TechnoBlogy</title>
	<atom:link href="http://technoblogy.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://technoblogy.net</link>
	<description>Technology with a Big difference</description>
	<lastBuildDate>Mon, 30 Aug 2010 09:10:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Percentage of Work completed &#8211; SQL Server</title>
		<link>http://technoblogy.net/percentage-of-work-completed-sql-server/</link>
		<comments>http://technoblogy.net/percentage-of-work-completed-sql-server/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 16:27:06 +0000</pubDate>
		<dc:creator>Nauman</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[DMV]]></category>
		<category><![CDATA[percentage completed]]></category>
		<category><![CDATA[sys.dm_exec_requests]]></category>

		<guid isPermaLink="false">http://technoblogy.net/percentage-of-work-completed-sql-server/</guid>
		<description><![CDATA[Today, I was taking a manual backup of a database through a scheduled Job. Normally this backup job takes about 1 hour to complete, but today it was still executing for almost 3 hours. I started to look up Activity monitor, dbcc commands for any lock against the database, but of no avail. After searching [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I was taking a manual backup of a database through a scheduled Job. Normally this backup job takes about 1 hour to complete, but today it was still executing for almost 3 hours. I started to look up Activity monitor, dbcc commands for any lock against the database, but of no avail.</p>
<blockquote><p>After searching on internet i came across a DMV(Dynamic Management View) provided in SQL Server. This view has almost every detail of a single process executing in SQL Server.</p>
<p><strong>DMV &#8211; sys.dm_exec_requests</strong></p>
<p>Following script returned my desired result of percentage completed of my backup job:</p>
<p>SELECT Session_Id, Reads, Writes, Cpu_Time, Logical_Reads, Total_Elapsed_Time,</p>
<p>Blocking_Session_Id, Percent_Complete, Command,</p>
<p>(select text from sys.dm_exec_sql_text(sql_handle)) as Text FROM</p>
<p>sys.dm_exec_requests(nolock) WHERE session_id = 90</p></blockquote>
<p>Hope this helps.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_1305" title="Percentage of Work completed &ndash; SQL Server" url="http://technoblogy.net/percentage-of-work-completed-sql-server/"></script>]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/percentage-of-work-completed-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get indexes on all tables &#8211; SQL Server</title>
		<link>http://technoblogy.net/get-indexes-on-all-tables-sql-server/</link>
		<comments>http://technoblogy.net/get-indexes-on-all-tables-sql-server/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 16:14:03 +0000</pubDate>
		<dc:creator>Nauman</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[clustered]]></category>
		<category><![CDATA[Indexes]]></category>
		<category><![CDATA[non clustered]]></category>
		<category><![CDATA[tables]]></category>

		<guid isPermaLink="false">http://technoblogy.net/get-indexes-on-all-tables-sql-server/</guid>
		<description><![CDATA[An important ingredient in database designing is creating, maintaining and rebuilding indexes after some specified intervals. One main  aspect of database tuning is to apply indexes. Index must exist in databases otherwise their would be a lot of performance issues. While searching across internet, i came across a script that will list all the tables [...]]]></description>
			<content:encoded><![CDATA[<p>An important ingredient in database designing is creating, maintaining and rebuilding indexes after some specified intervals. One main  aspect of database tuning is to apply indexes. Index must exist in databases otherwise their would be a lot of performance issues.</p>
<p>While searching across internet, i came across a script that will list all the tables in my database and also show how many indexes are created/applied on those table wither clustered or non clustered.</p>
<p>Here’s the script:</p>
<blockquote><p>with cte as<br />
(<br />
select<br />
table_name = o.name,  �<br />
o.[object_id],<br />
i.index_id,<br />
i.type,<br />
i.type_desc<br />
from<br />
sys.indexes i<br />
inner join<br />
sys.objects o on i.[object_id] = o.[object_id]<br />
where<br />
o.type in (&#8216;U&#8217;)<br />
and<br />
o.is_ms_shipped = 0 and i.is_disabled = 0  and i.is_hypothetical = 0<br />
and<br />
i.type &lt;= 2<br />
), cte2 as<br />
(<br />
select<br />
*<br />
from<br />
cte c<br />
pivot<br />
(count(type) for type_desc in ([HEAP], [CLUSTERED], [NONCLUSTERED])) pv<br />
)<br />
select<br />
c2.table_name,<br />
[rows] = max(p.rows),<br />
is_heap = sum([HEAP]),<br />
is_clustered = sum([CLUSTERED]),<br />
num_of_nonclustered = sum([NONCLUSTERED])<br />
from<br />
cte2 c2<br />
inner join<br />
sys.partitions p on c2.[object_id] = p.[object_id] and c2.index_id = p.index_id<br />
group by<br />
table_name</p></blockquote>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_1305" title="Get indexes on all tables &ndash; SQL Server" url="http://technoblogy.net/get-indexes-on-all-tables-sql-server/"></script>]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/get-indexes-on-all-tables-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Migrate from MySQL to SQL Server</title>
		<link>http://technoblogy.net/migrate-from-mysql-to-sql-server/</link>
		<comments>http://technoblogy.net/migrate-from-mysql-to-sql-server/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 15:35:40 +0000</pubDate>
		<dc:creator>Nauman</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://technoblogy.net/migrate-from-mysql-to-sql-server/</guid>
		<description><![CDATA[Migrate from MySQL to SQL Server with ease. Microsoft has launched a small utility to migrate a database from MySQL to SQL Server. Name of the utility is SQL Server Migration Assistant for MySQL. More details can be found here]]></description>
			<content:encoded><![CDATA[<p>Migrate from MySQL to SQL Server with ease. Microsoft has launched a small utility to migrate a database from MySQL to SQL Server. Name of the utility is SQL Server Migration Assistant for MySQL.</p>
<p>More details can be found <a href="http://blogs.technet.com/b/dataplatforminsider/archive/2010/08/12/microsoft-announces-sql-server-migration-assistant-for-mysql.aspx" target="_blank">here</a></p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_1305" title="Migrate from MySQL to SQL Server" url="http://technoblogy.net/migrate-from-mysql-to-sql-server/"></script>]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/migrate-from-mysql-to-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove a Stored Procedure in Production Environment</title>
		<link>http://technoblogy.net/remove-a-stored-procedure-in-production-environment/</link>
		<comments>http://technoblogy.net/remove-a-stored-procedure-in-production-environment/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 15:35:13 +0000</pubDate>
		<dc:creator>Nauman</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[production]]></category>
		<category><![CDATA[remove]]></category>
		<category><![CDATA[stored procedure]]></category>
		<category><![CDATA[techniques]]></category>

		<guid isPermaLink="false">http://technoblogy.net/remove-a-stored-procedure-in-production-environment/</guid>
		<description><![CDATA[How to remove a Stored Procedure in SQL Server production environment? How can we be so sure that is not being used any more? You need to know every single path from where this procedure is initiating before you can actually remove it from production. Following are some ways to determine the usage of a [...]]]></description>
			<content:encoded><![CDATA[<p>How to remove a Stored Procedure in SQL Server production environment? How can we be so sure that is not being used any more?</p>
<p>You need to know every single path from where this procedure is initiating before you can actually remove it from production. Following are some ways to determine the usage of a procedure in SQL Server.</p>
<ol>
<li>Set up a trace and filter through SQL Server profiler service on procedure name and ID.</li>
<li>Another way is to regularly check procedure plan cache to see if there is a cached plan for the procedure.</li>
<li>Alternatively you can use a 3rd party audit software to retrieve procedure executions. (Most of these soft wares use tracing at the back end)\</li>
</ol>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_1305" title="Remove a Stored Procedure in Production Environment" url="http://technoblogy.net/remove-a-stored-procedure-in-production-environment/"></script>]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/remove-a-stored-procedure-in-production-environment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retrieve permissions on SQL Server database</title>
		<link>http://technoblogy.net/retrieve-permissions-on-sql-server-database/</link>
		<comments>http://technoblogy.net/retrieve-permissions-on-sql-server-database/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 17:38:28 +0000</pubDate>
		<dc:creator>Nauman</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[objects]]></category>
		<category><![CDATA[permissions]]></category>

		<guid isPermaLink="false">http://technoblogy.net/retrieve-permissions-on-sql-server-database/</guid>
		<description><![CDATA[SQL Server permissions can be granted to on an object level (schema, database, database objects). In newer versions of SQL Server permissions can be given to user at a more granular level.]]></description>
			<content:encoded><![CDATA[<p> </p>
<p>SQL Server permissions can be granted to on an object level (schema, database, database objects). In newer versions of SQL Server permissions can be given to user at a more granular level.</p>
<p>To retrieve all the permissions granted to a specific user SQL server has a function named: <strong>fn_my_permission.</strong>  This function is only accessible to system administrator. e.g</p>
<p>following query will retrieve all the permissions on server.</p>
<blockquote><p><em>select * From fn_my_permissions(NULL, NULL)  </em></p></blockquote>
<p>following query retrieve all the permissions on a database:</p>
<blockquote><p><em>select * From fn_my_permissions(NULL, ‘database’)</em></p></blockquote>
<p> </p>
<p>following query retrieve all the permissions on a dbo schema:</p>
<blockquote><p><em>select * From fn_my_permissions(’dbo’, ’schema’)</em></p></blockquote>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_1305" title="Retrieve permissions on SQL Server database" url="http://technoblogy.net/retrieve-permissions-on-sql-server-database/"></script>]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/retrieve-permissions-on-sql-server-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Improve I/O performance for SQL Server</title>
		<link>http://technoblogy.net/how-to-improve-io-performance-for-sql-server/</link>
		<comments>http://technoblogy.net/how-to-improve-io-performance-for-sql-server/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 13:23:40 +0000</pubDate>
		<dc:creator>Nauman</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[I/O]]></category>
		<category><![CDATA[performance]]></category>

		<guid isPermaLink="false">http://technoblogy.net/how-to-improve-io-performance-for-sql-server/</guid>
		<description><![CDATA[  If underline I/O architecture system is working properly then every time SQL Server do some transaction (Read/Write) it can do it without waiting. But if load on the system is up, then SQL transaction have to wait for their turns for processing. This can significantly reduce SQL Server performance. There is a much greater [...]]]></description>
			<content:encoded><![CDATA[<p> </p>
<p>If underline I/O architecture system is working properly then every time SQL Server do some transaction (Read/Write) it can do it without waiting. But if load on the system is up, then SQL transaction have to wait for their turns for processing. This can significantly reduce SQL Server performance. There is a much greater issue when you are not in charge of the underlying storage system. For that the main thing is to optimize the queries running by SQL Server.</p>
<p>Following are some tip to monitor and increase I/O performance of SQL Server.</p>
<p><strong>Queries using maximum I/O.</strong></p>
<p>This query will return top 25 queries that were the slowest in processing.</p>
<blockquote>
<pre><em>SELECT TOP 25
    q.[text],
    (total_logical_reads/execution_count) AS avg_logical_reads,
    (total_logical_writes/execution_count) AS avg_logical_writes,
    (total_physical_reads/execution_count) AS avg_phys_reads,
     Execution_count
FROM sys.dm_exec_query_stats
    cross apply sys.dm_exec_sql_text(plan_handle) AS q
ORDER BY
 (total_logical_reads + total_logical_writes) DESC</em></pre>
</blockquote>
<pre> </pre>
<p>Check which queries can be optimized and update them. Execute the above query frequently to check queries that can potentially create I/O bottleneck on system.</p>
<p><strong>Reading un necessary Data.</strong></p>
<p>When you are retrieving data, which is not going to be used than you are also overusing your I/O performance. One great example of this type of query is:</p>
<pre> </pre>
<pre>SELECT * FROM [Table]</pre>
<p> </p>
<p>Always retrieve only those columns that are going to be used. In cases where you want to get all the columns than specifically write all column names on your select clause.</p>
<p>Also use a WHERE clause where applicable because it will filter out rows that will not be used.</p>
<p><strong>Create Covered Indexes</strong></p>
<p>Once you have optimized your queries by using explicit column names and appropriate WHERE clause filtration of records, you can now focus on creating non-clustered covered index for the queries that have excessive read I/O. Covered indexes contain all columns as a part of index that are being used in SQL WHERE clause. You can also determine what columns are in need to be indexed by examining SQL execution plan of the query.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_1305" title="How to Improve I/O performance for SQL Server" url="http://technoblogy.net/how-to-improve-io-performance-for-sql-server/"></script>]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/how-to-improve-io-performance-for-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Queen Elizabeth&#8217;s Laptop</title>
		<link>http://technoblogy.net/queen-elizabeths-laptop/</link>
		<comments>http://technoblogy.net/queen-elizabeths-laptop/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 12:04:08 +0000</pubDate>
		<dc:creator>Phantom</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Laptop]]></category>
		<category><![CDATA[Queen]]></category>

		<guid isPermaLink="false">http://technoblogy.net/?p=473</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://technoblogy.net/wp-content/uploads/2010/07/image003.jpg"><img class="aligncenter size-full wp-image-475" src="http://technoblogy.net/wp-content/uploads/2010/07/image003.jpg" alt="" width="600" height="761" /></a><a href="http://technoblogy.net/wp-content/uploads/2010/07/image004.jpg"><img class="aligncenter size-full wp-image-476" src="http://technoblogy.net/wp-content/uploads/2010/07/image004.jpg" alt="" width="600" height="800" /></a><a href="http://technoblogy.net/wp-content/uploads/2010/07/image005.jpg"><img class="aligncenter size-full wp-image-477" src="http://technoblogy.net/wp-content/uploads/2010/07/image005.jpg" alt="" width="600" height="437" /></a><a href="http://technoblogy.net/wp-content/uploads/2010/07/image002.jpg"><img class="aligncenter size-full wp-image-474" src="http://technoblogy.net/wp-content/uploads/2010/07/image002.jpg" alt="" width="600" height="504" /><a href="http://technoblogy.net/wp-content/uploads/2010/07/image006.jpg"><img class="aligncenter size-full wp-image-478" src="http://technoblogy.net/wp-content/uploads/2010/07/image006.jpg" alt="" width="600" height="450" /></a><a href="http://technoblogy.net/wp-content/uploads/2010/07/image007.jpg"><img class="aligncenter size-full wp-image-479" src="http://technoblogy.net/wp-content/uploads/2010/07/image007.jpg" alt="" width="600" height="747" /></a><a href="http://technoblogy.net/wp-content/uploads/2010/07/image008.jpg"><img class="aligncenter size-full wp-image-480" src="http://technoblogy.net/wp-content/uploads/2010/07/image008.jpg" alt="" width="600" height="412" /></a><a href="http://technoblogy.net/wp-content/uploads/2010/07/image009.jpg"><img class="aligncenter size-full wp-image-481" src="http://technoblogy.net/wp-content/uploads/2010/07/image009.jpg" alt="" width="260" height="438" /></a></a></p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_1305" title="Queen Elizabeth's Laptop" url="http://technoblogy.net/queen-elizabeths-laptop/"></script>]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/queen-elizabeths-laptop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WHEN YOU FEEL BORED AT KFC</title>
		<link>http://technoblogy.net/when-you-feel-bored-at-kfc/</link>
		<comments>http://technoblogy.net/when-you-feel-bored-at-kfc/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 05:44:26 +0000</pubDate>
		<dc:creator>Phantom</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[KFC]]></category>

		<guid isPermaLink="false">http://technoblogy.net/?p=465</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://technoblogy.net/wp-content/uploads/2010/06/SafedsfdfdfRedirect.gif"><img class="alignnone size-full wp-image-466" src="http://technoblogy.net/wp-content/uploads/2010/06/SafedsfdfdfRedirect.gif" alt="" width="481" height="600" /></a><a href="http://technoblogy.net/wp-content/uploads/2010/06/SafeRct.gif"><img class="alignnone size-full wp-image-467" src="http://technoblogy.net/wp-content/uploads/2010/06/SafeRct.gif" alt="" width="458" height="450" /></a><a href="http://technoblogy.net/wp-content/uploads/2010/06/SafeRedirect.gif"><img class="alignnone size-full wp-image-468" src="http://technoblogy.net/wp-content/uploads/2010/06/SafeRedirect.gif" alt="" width="475" height="600" /></a><a href="http://technoblogy.net/wp-content/uploads/2010/06/Safrect.gif"><img class="alignnone size-full wp-image-469" src="http://technoblogy.net/wp-content/uploads/2010/06/Safrect.gif" alt="" width="500" height="348" /></a><a href="http://technoblogy.net/wp-content/uploads/2010/06/Sakj.gif"><img class="alignnone size-full wp-image-470" src="http://technoblogy.net/wp-content/uploads/2010/06/Sakj.gif" alt="" width="458" height="600" /></a><a href="http://technoblogy.net/wp-content/uploads/2010/06/St.gif"><img class="alignnone size-full wp-image-471" src="http://technoblogy.net/wp-content/uploads/2010/06/St.gif" alt="" width="475" height="600" /></a></p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_1305" title="WHEN YOU FEEL BORED AT KFC" url="http://technoblogy.net/when-you-feel-bored-at-kfc/"></script>]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/when-you-feel-bored-at-kfc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Police Car In USA</title>
		<link>http://technoblogy.net/police-car-in-usa/</link>
		<comments>http://technoblogy.net/police-car-in-usa/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 05:59:51 +0000</pubDate>
		<dc:creator>Phantom</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Sports]]></category>
		<category><![CDATA[cars]]></category>
		<category><![CDATA[Police]]></category>

		<guid isPermaLink="false">http://technoblogy.net/?p=449</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_0021.jpeg"><img class="alignnone size-full wp-image-448" src="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_0021.jpeg" alt="" width="575" height="356" /></a></p>
<p><a href="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_0013.jpeg"><img class="alignnone size-large wp-image-450" src="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_0013-558x1024.jpg" alt="" width="558" height="1024" /></a></p>
<p><a href="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_003.jpeg"><img class="alignnone size-full wp-image-451" src="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_003.jpeg" alt="" width="575" height="384" /></a></p>
<p><a href="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_004.jpeg"><img class="alignnone size-full wp-image-452" src="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_004.jpeg" alt="" width="575" height="575" /></a></p>
<p><a href="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_005.jpeg"><img class="alignnone size-full wp-image-453" src="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_005.jpeg" alt="" width="575" height="891" /></a></p>
<p><a href="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_007.jpeg"><img class="alignnone size-full wp-image-454" src="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_007.jpeg" alt="" width="575" height="381" /></a></p>
<p><a href="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_008.jpeg"><img class="alignnone size-full wp-image-455" src="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_008.jpeg" alt="" width="575" height="268" /></a></p>
<p><a href="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_009.jpeg"><img class="alignnone size-full wp-image-456" src="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_009.jpeg" alt="" width="575" height="275" /></a></p>
<p><a href="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_010.jpeg"><img class="alignnone size-full wp-image-457" src="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_010.jpeg" alt="" width="575" height="253" /></a></p>
<p><a href="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_011.jpeg"><img class="alignnone size-full wp-image-458" src="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_011.jpeg" alt="" width="575" height="325" /></a></p>
<p><a href="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_015.jpeg"><img class="alignnone size-full wp-image-459" src="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_015.jpeg" alt="" width="575" height="383" /></a></p>
<p><a href="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_016.jpeg"><img class="alignnone size-full wp-image-460" src="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_016.jpeg" alt="" width="575" height="862" /></a></p>
<p><a href="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_017.jpeg"><img class="alignnone size-full wp-image-461" src="http://technoblogy.net/wp-content/uploads/2010/06/www-FUNZU-com_017.jpeg" alt="" width="575" height="288" /></a></p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_1305" title="Police Car In USA" url="http://technoblogy.net/police-car-in-usa/"></script>]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/police-car-in-usa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LIFE CYCLE OF MERCEDES</title>
		<link>http://technoblogy.net/life-cycle-of-mercedes/</link>
		<comments>http://technoblogy.net/life-cycle-of-mercedes/#comments</comments>
		<pubDate>Sat, 29 May 2010 12:46:09 +0000</pubDate>
		<dc:creator>Phantom</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[cycle]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[mercedes]]></category>

		<guid isPermaLink="false">http://technoblogy.net/?p=421</guid>
		<description><![CDATA[LIFE CYCLE OF MERCEDES]]></description>
			<content:encoded><![CDATA[<address><em><strong>LIFE CYCLE OF MERCEDES</strong></em></address>
<p><a href="../wp-content/uploads/2010/05/19281.jpg"><img src="../wp-content/uploads/2010/05/19281-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p><a href="http://technoblogy.net/wp-content/uploads/2010/05/193441.jpg"><img class="alignnone size-medium wp-image-426" src="http://technoblogy.net/wp-content/uploads/2010/05/193441-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p><a href="http://technoblogy.net/wp-content/uploads/2010/05/193441.jpg"></a><a href="http://technoblogy.net/wp-content/uploads/2010/05/19361.jpg"><img class="alignnone size-medium wp-image-427" src="http://technoblogy.net/wp-content/uploads/2010/05/19361-300x225.jpg" alt="" width="300" height="225" /></a><a href="http://technoblogy.net/wp-content/uploads/2010/05/1952.jpg"><img class="alignnone size-medium wp-image-428" src="http://technoblogy.net/wp-content/uploads/2010/05/1952-300x225.jpg" alt="" width="300" height="225" /></a><a href="http://technoblogy.net/wp-content/uploads/2010/05/1955.jpg"><img class="alignnone size-medium wp-image-429" src="http://technoblogy.net/wp-content/uploads/2010/05/1955-300x225.jpg" alt="" width="300" height="225" /></a><a href="http://technoblogy.net/wp-content/uploads/2010/05/1964.jpg"><img class="alignnone size-medium wp-image-430" src="http://technoblogy.net/wp-content/uploads/2010/05/1964-300x225.jpg" alt="" width="300" height="225" /></a><a href="http://technoblogy.net/wp-content/uploads/2010/05/1972.jpg"><img class="alignnone size-medium wp-image-431" src="http://technoblogy.net/wp-content/uploads/2010/05/1972-300x225.jpg" alt="" width="300" height="225" /></a><a href="http://technoblogy.net/wp-content/uploads/2010/05/1983.jpg"><img class="alignnone size-medium wp-image-432" src="http://technoblogy.net/wp-content/uploads/2010/05/1983-300x225.jpg" alt="" width="300" height="225" /></a><a href="http://technoblogy.net/wp-content/uploads/2010/05/1991.jpg"><img class="alignnone size-medium wp-image-433" src="http://technoblogy.net/wp-content/uploads/2010/05/1991-300x225.jpg" alt="" width="300" height="225" /></a><a href="http://technoblogy.net/wp-content/uploads/2010/05/1996.jpg"><img class="alignnone size-medium wp-image-434" src="http://technoblogy.net/wp-content/uploads/2010/05/1996-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p><a href="http://technoblogy.net/wp-content/uploads/2010/05/1998.jpg"><img class="alignnone size-medium wp-image-435" src="http://technoblogy.net/wp-content/uploads/2010/05/1998-300x224.jpg" alt="" width="300" height="224" /></a></p>
<p><a href="http://technoblogy.net/wp-content/uploads/2010/05/2002.jpg"><img class="alignnone size-medium wp-image-436" src="http://technoblogy.net/wp-content/uploads/2010/05/2002-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p><a href="http://technoblogy.net/wp-content/uploads/2010/05/2003.jpg"><img class="alignnone size-medium wp-image-437" src="http://technoblogy.net/wp-content/uploads/2010/05/2003-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p><a href="http://technoblogy.net/wp-content/uploads/2010/05/2005jpg.jpg"><img class="alignnone size-medium wp-image-438" src="http://technoblogy.net/wp-content/uploads/2010/05/2005jpg-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p><a href="http://technoblogy.net/wp-content/uploads/2010/05/2006.jpg"><img class="alignnone size-medium wp-image-439" src="http://technoblogy.net/wp-content/uploads/2010/05/2006-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p><a href="http://technoblogy.net/wp-content/uploads/2010/05/2010.jpg"><img class="alignnone size-medium wp-image-440" src="http://technoblogy.net/wp-content/uploads/2010/05/2010-300x224.jpg" alt="" width="300" height="224" /></a></p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_1305" title="LIFE CYCLE OF MERCEDES" url="http://technoblogy.net/life-cycle-of-mercedes/"></script>]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/life-cycle-of-mercedes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
