<?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"
	>

<channel>
	<title>Ravi Khanal</title>
	<atom:link href="http://ravikhanal.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.ravikhanal.com</link>
	<description>Just a Conceited Bastard</description>
	<pubDate>Fri, 16 Jul 2010 00:28:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>How to delete mail from Microsoft Outlook 2007</title>
		<link>http://www.ravikhanal.com/how-to-delete-mail-from-microsoft-outlook-2007/</link>
		<comments>http://www.ravikhanal.com/how-to-delete-mail-from-microsoft-outlook-2007/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 00:28:43 +0000</pubDate>
		<dc:creator>Ravi Khanal</dc:creator>
		
		<category><![CDATA[Microsoft Outlook]]></category>

		<category><![CDATA[delete email]]></category>

		<category><![CDATA[delete mail from inbox of Outlook]]></category>

		<category><![CDATA[how to delete email from outlook]]></category>

		<category><![CDATA[Microsoft Outlook 2007]]></category>

		<guid isPermaLink="false">http://www.ravikhanal.com/?p=465</guid>
		<description><![CDATA[Are you using Microsoft Outlook 2007 for your email client and using IMAP Protocol. Have you tried deleting mails from your Microsoft Outlook 2007 and been frustated that your email doesn&#8217;t go right away after you delete from Inbox. In IMAP, there isn&#8217;t any Deleted items folder. If you delete your mails, the mails will [...]]]></description>
			<content:encoded><![CDATA[<p>Are you using Microsoft Outlook 2007 for your email client and using IMAP Protocol. Have you tried deleting mails from your Microsoft Outlook 2007 and been frustated that your email doesn&#8217;t go right away after you delete from Inbox. In IMAP, there isn&#8217;t any Deleted items folder. If you delete your mails, the mails will just be marked as strikeout and actually the emails gets never deleted from the server. This could be really annoying if you get couple of hundreds of emails every day from your monitoring softwares and you have to scroll down all the emails to find any other important emails and when you delete the emails that is not necessary and it is still in the inbox without being deleted and just marked as strikeout.</p>
<p>Dont be frustated, there is a way to get your messages deleted from the mail server and you will not see the strikeout in your Microsoft Outlook too. The answer for deleting email from Microsoft Outlook 2007 is Purging.</p>
<p>Go To EDIT and then PURGE and click on PURGE OPTION<br />
There you will see</p>
<p><code>When you switch to another folder, the items marked for deletion in the original folder are permanently deleted on the server. Items will not be permanently removed when switching folders offline.</code></p>
<p>Click on the CheckBox and you can now delete email in Microsoft Outlook 2007 with IMAP protocol.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ravikhanal.com/how-to-delete-mail-from-microsoft-outlook-2007/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Htaccess and wordpress</title>
		<link>http://www.ravikhanal.com/htaccess-and-wordpress/</link>
		<comments>http://www.ravikhanal.com/htaccess-and-wordpress/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 22:42:16 +0000</pubDate>
		<dc:creator>Ravi Khanal</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[htaccess]]></category>

		<category><![CDATA[permalink]]></category>

		<category><![CDATA[pretty permalink]]></category>

		<category><![CDATA[ugly permalink]]></category>

		<guid isPermaLink="false">http://www.ravikhanal.com/?p=462</guid>
		<description><![CDATA[If you are running a wordpress blog then you should come across htaccess file. If you are running a wordpress in some &#8220;One Click Wordpress Hosting&#8221; sites like godaddy, bluehost, dreamhost etc then you may not know about the htaccess file. In these One Click Wordpress hosting sites, htaccess is installed by default. But if [...]]]></description>
			<content:encoded><![CDATA[<p>If you are running a wordpress blog then you should come across htaccess file. If you are running a wordpress in some &#8220;One Click Wordpress Hosting&#8221; sites like godaddy, bluehost, dreamhost etc then you may not know about the htaccess file. In these One Click Wordpress hosting sites, htaccess is installed by default. But if you are hosting your own wordpress blog or installing on your own then you might have to create the htaccess file on yourself. Htaccess file is used in wordpress for the pretty Permalink.</p>
<p>Permalinks are the permanent URLs to your individual weblog posts, as well as categories and other lists of weblog postings. A permalink is what another weblogger will use to link to your article (or section), or how you might send a link to your story in an e-mail message. The URL to each post should be permanent, and never change hence its called permalink.</p>
<p>There are basically two types of Permalinks in Wordpress i.e Ugly Permalinks and Pretty Permalinks.</p>
<p><strong>The Ugly Permalinks</strong> are the default configuration in wordpress and they dont need a .htaccess file. The Ugly Permalink would look something like<br />
<code>www.ravikhanal.com/?p=N</code><br />
These Ugly Permalinks are the default permalinks and dos not utilize .htaccess file and are not Search engine Optimized too.</p>
<p><strong>The Pretty Permalink</strong> are search engine optimized URL. If you want your blog to be optimized in search engine you would most likely want to have the pretty Permalink. The pretty permalink will be something like<br />
<code>www.ravikhanal.com/htaccess-and-wordpress/</code></p>
<p>If you want to have some pretty permalinks like this then you would need a htaccess file.</p>
<h3>How to Put the htaccess file in your wordpress blog:</h3>
<ul>
<li>First open a notepad with blank content and name it as 1.htaccess</li>
<li>Put the 1. htaccess file on your server</li>
<li>Rename the 1.htaccess file to .htaccess file</li>
<li>Copy this code inside the .htaccess file and save the file</li>
<p><code># BEGIN WordPress</code></p>
<p>RewriteEngine On<br />
RewriteBase /<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . /index.php [L]</p>
<p># END WordPress</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.ravikhanal.com/htaccess-and-wordpress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Trust relationship between the workstation and primary domain failed</title>
		<link>http://www.ravikhanal.com/trust-relationship-between-the-workstation-and-primary-domain-failed/</link>
		<comments>http://www.ravikhanal.com/trust-relationship-between-the-workstation-and-primary-domain-failed/#comments</comments>
		<pubDate>Thu, 27 May 2010 23:48:48 +0000</pubDate>
		<dc:creator>Ravi Khanal</dc:creator>
		
		<category><![CDATA[Windows Server 2003]]></category>

		<category><![CDATA[Trust Relationship between the workstation and primary domain failed]]></category>

		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.ravikhanal.com/?p=447</guid>
		<description><![CDATA[The trust relationship between the workstation and primary domain failed.
Let me describe the scenario first, I had windows 2003 Server and the Clients have Windows 7. The trust relationship between the workstation and Primary domain fails every time the user tries to log in the system. This error was quite annoying as it used to [...]]]></description>
			<content:encoded><![CDATA[<p>The trust relationship between the workstation and primary domain failed.</p>
<p>Let me describe the scenario first, I had windows 2003 Server and the Clients have Windows 7. The trust relationship between the workstation and Primary domain fails every time the user tries to log in the system. This error was quite annoying as it used to happen quite a lot of time per day on different computers.</p>
<p>Solution:</p>
<p>I logged in using the local account and then right clicked the My Computer and clicked the Network Id to join the domain. After joining the domain, I restarted the computer and then I changed the computer name and restarted the computer. After that I have not faced that error again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ravikhanal.com/trust-relationship-between-the-workstation-and-primary-domain-failed/feed/</wfw:commentRss>
		</item>
		<item>
		<title>List of DMV in SQL Server 2005 and 2008</title>
		<link>http://www.ravikhanal.com/list-of-dmv-in-sql-server-2005-and-2008/</link>
		<comments>http://www.ravikhanal.com/list-of-dmv-in-sql-server-2005-and-2008/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 04:18:27 +0000</pubDate>
		<dc:creator>Ravi Khanal</dc:creator>
		
		<category><![CDATA[SQL Server 2005]]></category>

		<category><![CDATA[SQL Server 2008]]></category>

		<category><![CDATA[DMV]]></category>

		<category><![CDATA[Dmv in SQL Server 2005]]></category>

		<category><![CDATA[Dmv in SQL Server 2008]]></category>

		<category><![CDATA[Dynamic Management View]]></category>

		<guid isPermaLink="false">http://ravikhanal.com/?p=440</guid>
		<description><![CDATA[Dynamic Management Views(DMVs) are system views that surface the internal counters of the database engine and help present an easily comprehendible dashboard of the database engine performance that can be used to monitor the health of a server instance, diagnose problems, and tune performance.
List of DMV in SQL Server 2005
DMV in SQL Server 2005 #1. [...]]]></description>
			<content:encoded><![CDATA[<p>Dynamic Management Views(DMVs) are system views that surface the internal counters of the database engine and help present an easily comprehendible dashboard of the database engine performance that can be used to monitor the health of a server instance, diagnose problems, and tune performance.</p>
<p><strong>List of DMV in SQL Server 2005</strong></p>
<p>DMV in SQL Server 2005 #1. sys.dm_broker_activated_tasks<br />
DMV in SQL Server 2005 #2. sys.dm_broker_connections<br />
DMV in SQL Server 2005 #3. sys.dm_broker_forwarded_messages<br />
DMV in SQL Server 2005 #4. sys.dm_broker_queue_monitors<br />
DMV in SQL Server 2005 #5. sys.dm_clr_appdomains<br />
DMV in SQL Server 2005 #6. sys.dm_clr_loaded_assemblies<br />
DMV in SQL Server 2005 #7. sys.dm_clr_properties<br />
DMV in SQL Server 2005 #8. sys.dm_clr_tasks<br />
DMV in SQL Server 2005 #9. sys.dm_db_file_space_usage<br />
DMV in SQL Server 2005 #10. sys.dm_db_index_usage_stats<br />
DMV in SQL Server 2005 #11. sys.dm_db_mirroring_connections<br />
DMV in SQL Server 2005 #12. sys.dm_db_missing_index_details<br />
DMV in SQL Server 2005 #13. sys.dm_db_missing_index_group_stats<br />
DMV in SQL Server 2005 #14. sys.dm_db_missing_index_groups<br />
DMV in SQL Server 2005 #15. sys.dm_db_partition_stats<br />
DMV in SQL Server 2005 #16. sys.dm_db_session_space_usage<br />
DMV in SQL Server 2005 #17. sys.dm_db_task_space_usage<br />
DMV in SQL Server 2005 #18. sys.dm_exec_background_job_queue<br />
DMV in SQL Server 2005 #19. sys.dm_exec_background_job_queue_stats<br />
DMV in SQL Server 2005 #20. sys.dm_exec_cached_plans<br />
DMV in SQL Server 2005 #21. sys.dm_exec_connections<br />
DMV in SQL Server 2005 #22. sys.dm_exec_query_memory_grants<br />
DMV in SQL Server 2005 #23. sys.dm_exec_query_optimizer_info<br />
DMV in SQL Server 2005 #24. sys.dm_exec_query_resource_semaphores<br />
DMV in SQL Server 2005 #25. sys.dm_exec_query_stats<br />
DMV in SQL Server 2005 #26. sys.dm_exec_query_transformation_stats<br />
DMV in SQL Server 2005 #27. sys.dm_exec_requests<br />
DMV in SQL Server 2005 #28. sys.dm_exec_sessions<br />
DMV in SQL Server 2005 #29. sys.dm_fts_active_catalogs<br />
DMV in SQL Server 2005 #30. sys.dm_fts_index_population<br />
DMV in SQL Server 2005 #31. sys.dm_fts_memory_buffers<br />
DMV in SQL Server 2005 #32. sys.dm_fts_memory_pools<br />
DMV in SQL Server 2005 #33. sys.dm_fts_population_ranges<br />
DMV in SQL Server 2005 #34. sys.dm_io_backup_tapes<br />
DMV in SQL Server 2005 #35. sys.dm_io_cluster_shared_drives<br />
DMV in SQL Server 2005 #36. sys.dm_io_pending_io_requests<br />
DMV in SQL Server 2005 #37. sys.dm_os_buffer_descriptors<br />
DMV in SQL Server 2005 #38. sys.dm_os_child_instances<br />
DMV in SQL Server 2005 #39. sys.dm_os_cluster_nodes<br />
DMV in SQL Server 2005 #40. sys.dm_os_hosts<br />
DMV in SQL Server 2005 #41. sys.dm_os_latch_stats<br />
DMV in SQL Server 2005 #42. sys.dm_os_loaded_modules<br />
DMV in SQL Server 2005 #43. sys.dm_os_memory_allocations<br />
DMV in SQL Server 2005 #44. sys.dm_os_memory_cache_clock_hands<br />
DMV in SQL Server 2005 #45. sys.dm_os_memory_cache_counters<br />
DMV in SQL Server 2005 #46. sys.dm_os_memory_cache_entries<br />
DMV in SQL Server 2005 #47. sys.dm_os_memory_cache_hash_tables<br />
DMV in SQL Server 2005 #48. sys.dm_os_memory_clerks<br />
DMV in SQL Server 2005 #49. sys.dm_os_memory_objects<br />
DMV in SQL Server 2005 #50. sys.dm_os_memory_pools<br />
DMV in SQL Server 2005 #51. sys.dm_os_performance_counters<br />
DMV in SQL Server 2005 #52. sys.dm_os_ring_buffers<br />
DMV in SQL Server 2005 #53. sys.dm_os_schedulers<br />
DMV in SQL Server 2005 #54. sys.dm_os_stacks<br />
DMV in SQL Server 2005 #55. sys.dm_os_sublatches<br />
DMV in SQL Server 2005 #56. sys.dm_os_sys_info<br />
DMV in SQL Server 2005 #57. sys.dm_os_tasks<br />
DMV in SQL Server 2005 #58. sys.dm_os_threads<br />
DMV in SQL Server 2005 #59. sys.dm_os_virtual_address_dump<br />
DMV in SQL Server 2005 #60. sys.dm_os_wait_stats<br />
DMV in SQL Server 2005 #61. sys.dm_os_waiting_tasks<br />
DMV in SQL Server 2005 #62. sys.dm_os_worker_local_storage<br />
DMV in SQL Server 2005 #63. sys.dm_os_workers<br />
DMV in SQL Server 2005 #64. sys.dm_qn_subscriptions<br />
DMV in SQL Server 2005 #65. sys.dm_repl_articles<br />
DMV in SQL Server 2005 #66. sys.dm_repl_schemas<br />
DMV in SQL Server 2005 #67. sys.dm_repl_tranhash<br />
DMV in SQL Server 2005 #68. sys.dm_repl_traninfo<br />
DMV in SQL Server 2005 #69. sys.dm_tran_active_snapshot_database_transactions<br />
DMV in SQL Server 2005 #70. sys.dm_tran_active_transactions<br />
DMV in SQL Server 2005 #71. sys.dm_tran_current_snapshot<br />
DMV in SQL Server 2005 #72. sys.dm_tran_current_transaction<br />
DMV in SQL Server 2005 #73. sys.dm_tran_database_transactions<br />
DMV in SQL Server 2005 #74. sys.dm_tran_tran_locks<br />
DMV in SQL Server 2005 #75. sys.dm_tran_session_transactions<br />
DMV in SQL Server 2005 #76. sys.dm_tran_top_version_generators<br />
DMV in SQL Server 2005 #77. sys.dm_tran_transactions_snapshot<br />
DMV in SQL Server 2005 #78. sys.dm_tran_version_store</p>
<p><strong>New DMV in SQL Server 2008</strong><br />
DMV in SQL Server 2008 #1. sys.dm_audit_actions<br />
DMV in SQL Server 2008 #2. sys.dm_audit_class_type_map<br />
DMV in SQL Server 2008 #3. sys.dm_cdc_errors<br />
DMV in SQL Server 2008 #4. sys.dm_cdc_log_scan_sessions<br />
DMV in SQL Server 2008 #5. sys.dm_cryptographic_provider_properties<br />
DMV in SQL Server 2008 #6. sys.dm_database_encryption_keys<br />
DMV in SQL Server 2008 #7. sys.dm_db_mirroring_auto_page_repair<br />
DMV in SQL Server 2008 #8. sys.dm_db_mirroring_past_actions<br />
DMV in SQL Server 2008 #9. sys.dm_db_persisted_sku_features<br />
DMV in SQL Server 2008 #10. sys.dm_db_script_level<br />
DMV in SQL Server 2008 #11. sys.dm_exec_procedure_stats<br />
DMV in SQL Server 2008 #12. sys.dm_exec_trigger_stats<br />
DMV in SQL Server 2008 #13. sys.dm_filestream_file_io_handles<br />
DMV in SQL Server 2008 #14. sys.dm_filestream_file_io_requests<br />
DMV in SQL Server 2008 #15. sys.dm_fts_fdhosts<br />
DMV in SQL Server 2008 #16. sys.dm_fts_outstanding_batches<br />
DMV in SQL Server 2008 #17. sys.dm_os_dispatcher_pools<br />
DMV in SQL Server 2008 #18. sys.dm_os_dispatchers<br />
DMV in SQL Server 2008 #19. sys.dm_os_memory_brokers<br />
DMV in SQL Server 2008 #20. sys.dm_os_memory_node_access_stats<br />
DMV in SQL Server 2008 #21. sys.dm_os_memory_nodes<br />
DMV in SQL Server 2008 #22. sys.dm_os_nodes<br />
DMV in SQL Server 2008 #23. sys.dm_os_process_memory<br />
DMV in SQL Server 2008 #24. sys.dm_os_spinlock_stacks<br />
DMV in SQL Server 2008 #25. sys.dm_os_sys_memory<br />
DMV in SQL Server 2008 #26. sys.dm_resource_governor_configuration<br />
DMV in SQL Server 2008 #27. sys.dm_resource_governor_resource_pools<br />
DMV in SQL Server 2008 #28. sys.dm_resource_governor_workload_groups<br />
DMV in SQL Server 2008 #29. sys.dm_server_audit_status<br />
DMV in SQL Server 2008 #30. sys.dm_tran_commit_table<br />
DMV in SQL Server 2008 #31. sys.dm_xe_map_values<br />
DMV in SQL Server 2008 #32. sys.dm_xe_object_columns<br />
DMV in SQL Server 2008 #33. sys.dm_xe_objects<br />
DMV in SQL Server 2008 #34. sys.dm_xe_packages<br />
DMV in SQL Server 2008 #35. sys.dm_xe_session_event_actions<br />
DMV in SQL Server 2008 #36. sys.dm_xe_session_events<br />
DMV in SQL Server 2008 #37. sys.dm_xe_session_object_columns<br />
DMV in SQL Server 2008 #38. sys.dm_xe_session_targets<br />
DMV in SQL Server 2008 #39. sys.dm_xe_sessions</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ravikhanal.com/list-of-dmv-in-sql-server-2005-and-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to migrate DTS Package into SSIS 2008 package</title>
		<link>http://www.ravikhanal.com/migrate-dts-package-to-ssis-2008/</link>
		<comments>http://www.ravikhanal.com/migrate-dts-package-to-ssis-2008/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 21:41:18 +0000</pubDate>
		<dc:creator>Ravi Khanal</dc:creator>
		
		<category><![CDATA[SQL Server 2008]]></category>

		<category><![CDATA[DTS]]></category>

		<category><![CDATA[Migration]]></category>

		<category><![CDATA[Package]]></category>

		<category><![CDATA[SQL Server 2000]]></category>

		<category><![CDATA[SSIS]]></category>

		<guid isPermaLink="false">http://ravikhanal.com/?p=373</guid>
		<description><![CDATA[If You are planning to migrate DTS Package of SQL Server 2000 to SQL Server 2008&#8217;s SSIS Package then first open the Sql Server Management Studio. Connect to the database engine and open the Migration Wizard as shown in the image.


 


I have my DTS package on my File System, so I am choosing Structured Storage File. [...]]]></description>
			<content:encoded><![CDATA[<p>If You are planning to migrate DTS Package of SQL Server 2000 to SQL Server 2008&#8217;s SSIS Package then first open the Sql Server Management Studio. Connect to the database engine and open the Migration Wizard as shown in the image.<a href="http://ravikhanal.com/wp-content/uploads/2009/01/dts_2.jpg"></a></p>
<p><img class="size-medium wp-image-377 alignleft" style="text-decoration: underline;" title="dts_1" src="http://ravikhanal.com/wp-content/uploads/2009/01/dts_1-274x300.jpg" alt="" width="274" height="300" /></p>
<p><a href="http://ravikhanal.com/wp-content/uploads/2009/01/dts_2.jpg"><img class="alignnone size-medium wp-image-378" title="dts_2" src="http://ravikhanal.com/wp-content/uploads/2009/01/dts_2-300x289.jpg" alt="" width="364" height="300" /></a></p>
<p> </p>
<p><span id="more-373"></span></p>
<p style="text-align: center;"><a href="http://ravikhanal.com/wp-content/uploads/2009/01/dts_3.jpg"><img class="size-medium wp-image-379 aligncenter" title="dts_3" src="http://ravikhanal.com/wp-content/uploads/2009/01/dts_3-300x291.jpg" alt="" width="242" height="235" /></a></p>
<p>I have my DTS package on my File System, so I am choosing Structured Storage File. If you have your DTS Package on the Database then you can choose the Source as SQL Server.</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p style="text-align: center;"> </p>
<p><a href="http://ravikhanal.com/wp-content/uploads/2009/01/dts_4.jpg"><img class="size-medium wp-image-380 aligncenter" title="dts_4" src="http://ravikhanal.com/wp-content/uploads/2009/01/dts_4-300x295.jpg" alt="" width="240" height="236" /></a></p>
<p>Then You have to choose the destination. In my case again I am using DTSX file as my destination.</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p style="text-align: center;"> </p>
<p style="text-align: center;"><a href="http://ravikhanal.com/wp-content/uploads/2009/01/dts_5.jpg"><img class="size-medium wp-image-381 aligncenter" title="dts_5" src="http://ravikhanal.com/wp-content/uploads/2009/01/dts_5-300x290.jpg" alt="" width="240" height="232" /></a></p>
<p>Then you can choose the package and edit the destination package name.</p>
<p style="text-align: center;"> </p>
<p style="text-align: center;"> </p>
<p style="text-align: center;"> </p>
<p style="text-align: center;"> </p>
<p style="text-align: center;"> </p>
<p style="text-align: center;"> </p>
<p style="text-align: center;"> </p>
<p style="text-align: center;"><a style="text-decoration: none;" href="http://ravikhanal.com/wp-content/uploads/2009/01/dts_6.jpg"><img class="size-medium wp-image-382 aligncenter" title="dts_6" src="http://ravikhanal.com/wp-content/uploads/2009/01/dts_6-300x291.jpg" alt="" width="240" height="233" /></a></p>
<p>Then you can specify the log file.</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p>Then the Package Migration is completed.</p>
<p><a href="http://ravikhanal.com/wp-content/uploads/2009/01/dts_7.jpg"><img class="alignnone size-medium wp-image-383" title="dts_7" src="http://ravikhanal.com/wp-content/uploads/2009/01/dts_7-300x289.jpg" alt="" width="300" height="289" /></a><a href="http://ravikhanal.com/wp-content/uploads/2009/01/dts_8.jpg"><img class="alignnone size-medium wp-image-384" title="dts_8" src="http://ravikhanal.com/wp-content/uploads/2009/01/dts_8-300x295.jpg" alt="" width="300" height="295" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ravikhanal.com/migrate-dts-package-to-ssis-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>10 Technology Forecast for the year 2009</title>
		<link>http://www.ravikhanal.com/10-technology-forecast-for-the-year-2009/</link>
		<comments>http://www.ravikhanal.com/10-technology-forecast-for-the-year-2009/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 20:42:29 +0000</pubDate>
		<dc:creator>Ravi Khanal</dc:creator>
		
		<category><![CDATA[Technology]]></category>

		<category><![CDATA[2009]]></category>

		<category><![CDATA[forecast]]></category>

		<category><![CDATA[Prediction]]></category>

		<guid isPermaLink="false">http://ravikhanal.com/?p=363</guid>
		<description><![CDATA[There would be lots of ups and downs in the world of technology in year 2009. Ten things that might happen in the year 2009 would be:
1. Google’s advertizing model will start facing problems:
Google will have some problems with their advertizing model in the year 2009 and advertisers would be less interested in Google’s ads. [...]]]></description>
			<content:encoded><![CDATA[<p>There would be lots of ups and downs in the world of technology in year 2009. Ten things that might happen in the year 2009 would be:</p>
<p>1. Google’s advertizing model will start facing problems:<br />
Google will have some problems with their advertizing model in the year 2009 and advertisers would be less interested in Google’s ads. Google’s ad should not be context based but rather be user based. Google should read the mind of the user and display the ad, exactly what he is looking for. There should be more localization in the Google’s ads. Now a day people are not so much interested in the Google’s ads, so either Google has to change its advertizing model or it will start facing problems.</p>
<p>2. Microsoft will inch ahead due to Google’s loss of reputation:<br />
Year 2009 will be really bad for the Google. Google is acting as a spy and tracking all the data from cookies. Everybody will think twice before using Google. So the charm of Google is reducing day by day and it will slowly fall behind in the race against Microsoft.</p>
<p>3. Standards will evolve in the Clouds:<br />
Till now everybody has defined cloud according to their way. But in the year 2009, some standards will evolve in the clouds and there will be SLAs .</p>
<p><span id="more-363"></span></p>
<p>4. Amazon will appear as the next big thing after Microsoft and Google:<br />
Amazon has now everything and it will evolve as the next big thing after Microsoft and Google. Amazon’s Cloud will be the major success in the year 2009.</p>
<p>5. Virtual Societies will evolve on top of the social networking<br />
Social networking sites will be a downward spiral. Virtual Societies will evolve on the top of the social networking on the year 2009. People will start making virtual societies around them with the same kind of interest and website promoting these virtual societies will become the major highlight for the year 2009.</p>
<p>6. Research will happen on Image Search and Video Search:<br />
Till now we are having Image Search and Video Search only based on the text search associated with the Image and Video. But there would be research on Image Search and Video Search. Till now if the title of any videos is different then we could never get to the videos but if we have Video Search option available then this would be the milestone for stopping piracy on videos. So in the year 2009, big media companies will be sponsoring Universities to research on “Search based on Image and Video”.</p>
<p>7. Yahoo as a Company might be divided into several pieces.<br />
Yahoo as a Company might be divided into several pieces and Google will buy some part of it and Microsoft will buy some part of it. Microsoft will likely buy the search part of the yahoo. Google will buy the messenger of yahoo and combine with their gtalk.</p>
<p>8. Google will buy Mozilla:<br />
Due to and despite the modest success of the Chrome, Google will buy Mozilla to compete against the Internet Explorer.</p>
<p>9. Google App Engine will support Ruby<br />
Till now Google App Engine only supports Python but in the year 2009, it will also support Ruby.</p>
<p>10. Java will evolve through dynamic languages but the SUN will be in crisis<br />
Since Java is moving more towards the open source, Java will evolve through other dynamic languages but SUN will be in crisis.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ravikhanal.com/10-technology-forecast-for-the-year-2009/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Whats new with SQL Server 2008</title>
		<link>http://www.ravikhanal.com/whats-new-with-sql-server-2008/</link>
		<comments>http://www.ravikhanal.com/whats-new-with-sql-server-2008/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 04:03:34 +0000</pubDate>
		<dc:creator>Ravi Khanal</dc:creator>
		
		<category><![CDATA[SQL Server 2008]]></category>

		<guid isPermaLink="false">http://ravikhanal.com/?p=191</guid>
		<description><![CDATA[Improvement in Business Intelligence

Enterprise Reporting Engine

There are two major infrastructure changes for Reporting Services. Reporting Services enhances the processing engine and rendering extensions to enable new functionality, such as Tablix support, and scalability as well as remove the dependency on IIS. Additionally, new report designer and configuration tool are provided that improve usability and workflow [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Improvement in Business Intelligence</strong></p>
<ul>
<li><strong>Enterprise Reporting Engine</strong></li>
</ul>
<p>There are two major infrastructure changes for Reporting Services. Reporting Services enhances the processing engine and rendering extensions to enable new functionality, such as Tablix support, and scalability as well as remove the dependency on IIS. Additionally, new report designer and configuration tool are provided that improve usability and workflow for RS customers.</p>
<ul>
<li><strong>Analysis Services Time Series</strong></li>
</ul>
<p>This improvement adds a new time series forecasting algorithm (ARIMA: Auto Regressive Integrated Moving Average) to the data mining algorithm suite that provides more stable long term predictions.</p>
<p>In Data warehouses, spaces used to be always wasted due to the NULL values. Columns having lots of NULL value is actually allocating lots of space without storing any values. This problem has been taken care in SQL Server 2008 by the introduction of a sparse columns. This columns allows NULL values to be stored without taking any physical space on the disk.</p>
<p><strong>T-SQL Improvements</strong></p>
<p>Object Dependencies: The object dependencies improvement provides reliable discovery of dependencies between objects through newly introduced catalog view and dynamic management functions. Dependency information is always up-to-date for both schema-bound and non-schema-bound objects. Dependencies are tracked for stored procedures, tables, views, functions, triggers, user-defined types, XML schema-collections, and more.</p>
<p><span id="more-191"></span></p>
<p><strong>Performance Data Collection</strong><br />
Collect data from various sources in SQL Server and OS to help with performance troubleshooting and server maintenance. With this improvement, organizations improve their analysis of common performance issues:</p>
<ul>
<li> Define what data is collected and organize the collection into collection sets</li>
<li> Start/stop/manipulate collection sets programmatically (T-SQL and .NET API)</li>
<li> Define where data is stored (relational database)</li>
<li> View data through reports in SQL Server Management Studio.</li>
<li> Provide platform to plug in more data collectors in the future.</li>
</ul>
<p><strong>Extended Events</strong></p>
<p>SQL Server Extended Events is a general event-handling system for server systems. The Extended Events infrastructure supports the correlation of data from SQL Server, and under certain conditions, the correlation of data from the operating system and database applications. In the latter case, Extended Events output must be directed to Event Tracing for Windows (ETW) in order to correlate the event data with operating system or application event data.</p>
<p><strong>Database Mirroring Enhancements</strong><br />
SQL Server 2008 builds upon the momentum of SQL Server 2005 by providing a more reliable platform with enhanced database mirroring:</p>
<p>Automatic bad page repair – allows the principal and mirror machines to transparently recover from 823/824 types of data page errors by requesting a fresh copy of the corrupted page from the mirroring partner.</p>
<p>Log stream compression – compression of the outgoing log stream in order to minimize the network bandwidth used by database mirroring.</p>
<p><strong>Miscellaneous performance enhancements</strong>:<br />
using asynchronous log write requests on the mirror in order to shorten the log write time and thus speed-up the commit acknowledgement.</p>
<p>better utilization of the mirroring log send buffers in order to pack multiple smaller log blocks into a single network send.</p>
<p><strong>Supportability and diagnosability improvements:</strong><br />
additional performance counters to allow for more granular accounting of the time spent across the different stages of the DBM log processing.</p>
<p>new DMVs and extensions of existing views in order to expose additional information about the mirroring sessions.</p>
<p><strong>ORDPATH Improvement</strong><br />
ORDPATH improvement provides an important new functionality to our customers who use hierarchical data. It provides a superior way of modeling hierarchies in SQL Server by introducing the HierarchyID system data type and corresponding built-in methods which are designed to make it easier to store, query and operate hierarchical data. HierarchyID is also optimized for representing trees, the most common type of hierarchical data.</p>
<p><strong>Large User-Defined Types Improvement</strong><br />
Large user-defined types allows users to expand the size of defined data types by eliminating the 8‑KB limit.</p>
<p><strong>DATE/TIME Data Types</strong><br />
SQL Server 2008 introduces new date and time data types. The new data types enable applications to have separate date and time types, larger year ranges for date value, larger fractional seconds precision for time value, time-zone offset aware datetime type that containing date, time and time zone offset portion, user defined option on fractional seconds precision of time related types and datetime2 and datetimeoffset provide standards conformant semantics. Along with the T-SQL support on the new types, both native (ODBC, OLEDB) and managed (SqlClient) providers also provide the full support through the client driver APIs.</p>
<p><strong>Improved XML Support</strong><br />
To leverages the new date and time types, SQL Server’s XML Schema collection now provides full support for the xs:date, xs:time and xs:dateTime data types. Support for union types is also enhanced by returning correct results for “instance of” queries when union types are involved, and adding support for lists of unions and unions of lists constructs in XML Schemas.</p>
<p><strong>SSMS Improvement</strong><br />
SQL Server Management Studio(SSMS) has been improved a lot in SQL Server 2008. Most important improvement in SSMS 2008 are:</p>
<ul>
<li>Activity Monitor</li>
<li>Object Explorer Details</li>
<li>Object Search</li>
<li>Multi-server Queries</li>
<li>Intellisense added to the query Editor</li>
<li>T-SQL Debugger Added to the Query Editor</li>
</ul>
<div><strong>Backup Compression</strong></div>
<div>Backup Compression is one of the very important feature added in SQL Server 2008. It can be done by</div>
<pre>Backup Database test
to disk='C:\test\test1.bak'
with compression</pre>
<p><strong>Plan Freezing</strong></p>
<div>SQL Server 2008 enables high query performance, stability and predictability by providing new function to freeze the query plans.</div>
<p><strong>Data Compression</strong></p>
<div>SQL Server 2008 supports two types of data compressions. They are Row Compression and Page Compression. Row compression compresses the individual columns of a table. Page Compression compresses data pages using row, prefix, and dictionary compression.</div>
<p><strong>Hot-Add CPUs and Hot-Add Memory</strong></p>
<div>Hot-add CPUs is a feature available with 64 bit edition of SQL Server Enterprise edition which allows CPUs to be dynamically added to servers as needed without the need of shutting down the server or limiting client connections. Similarly Hot-add Memory allows memory to be dynamically added to the servers without any downtime</div>
]]></content:encoded>
			<wfw:commentRss>http://www.ravikhanal.com/whats-new-with-sql-server-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Synchronize Logins and manage Orphaned Users</title>
		<link>http://www.ravikhanal.com/how-to-manage-orphaned-user/</link>
		<comments>http://www.ravikhanal.com/how-to-manage-orphaned-user/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 06:52:13 +0000</pubDate>
		<dc:creator>Ravi Khanal</dc:creator>
		
		<category><![CDATA[SQL Server 2005]]></category>

		<category><![CDATA[Logins]]></category>

		<category><![CDATA[orphan user]]></category>

		<category><![CDATA[SSIS]]></category>

		<category><![CDATA[synchronization]]></category>

		<guid isPermaLink="false">http://ravikhanal.com/?p=286</guid>
		<description><![CDATA[Database movement between servers is one of the common task for the DBA. But when the database is moved from one server to another or from one instance to other, the logins do not get transferred. So as a DBA you have to manually transfer the logins to remove this problem.
So let&#8217;s discuss what is the [...]]]></description>
			<content:encoded><![CDATA[<p>Database movement between servers is one of the common task for the DBA. But when the database is moved from one server to another or from one instance to other, the logins do not get transferred. So as a DBA you have to manually transfer the logins to remove this problem.</p>
<p>So let&#8217;s discuss what is the cause behind this. SQL Server logins are stored in the master database and they are mapped against individual databases. The Login informations on SQL Server 2005 are visible through sys.server_principals system catalog view and the sys.logins view. The mapping information of the database user is stored in the sysusers system table. This table includes the name of the database user and the SID of the corresponding SQL Server Login. The SID is the security identifier and SID tracks the logins throughout the entire systems.</p>
<p>So when we move or copy our database from one server to another or from one instance to another then the windows login will have the same SID but the SQL logins may have the different SIDs. So when the SID of the new server instance and the older instance doesn&#8217;t matches we have a Orphaned User.</p>
<p><span id="more-286"></span></p>
<p>So if you are copying or moving a database from one server to another, then you should follow these steps:</p>
<ol>
<li>Backup the source database.</li>
<li>Create the logins on the destination server.</li>
<li>Restore the database on the destination server.</li>
<li>Synchronize logins if not completed in step 2.</li>
</ol>
<div>So if you have windows login at the source then you just need to make exact same windows login in the destination. There is no need of synchronizing the logins for the windows login.</div>
<div>So now lets discuss how to deal with the orphaned user for SQL Login. Let us suppose in our source database we have login like john, dave and lisa. </div>
<div>So when we copy database to the new server then these users will be orphaned. </div>
<p>So for Synchronizing the logins, first you need to check all the users that are present.<br />
<code>Select 'user', * from sys.sysusers </code></p>
<p>Then check whether those users have logins or not by<br />
<code>Select 'Login', * from sys.server_principals </code></p>
<p><a href="http://ravikhanal.com/wp-content/uploads/2008/12/login1.jpg"><img class="alignnone size-full wp-image-287" title="login1" src="http://ravikhanal.com/wp-content/uploads/2008/12/login1.jpg" alt="" width="500" height="27" /></a></p>
<p> </p>
<p>If there is orphaned user for user &#8216;dave&#8217; then you should create the login with the same SID as its SID in the source server. This can be done by</p>
<p><code>Create login dave with Password = 'password', SID=0x8103F8ADEEADFA44BC4FE23836BCCE93<br />
</code></p>
<p>Another way of synchronizing the login can be done by system stored procedure.</p>
<p><code>Exec sp_change_users_login Report </code></p>
<p>This code will list out all the orphaned users and their corresponding SID.</p>
<p>Then after this you can do</p>
<p><code>Exec sp_change_users_login AUTO_FIX, 'lisa', 'password' </code></p>
<p>So the Auto_Fix will create a new login with the new SID and then match those with the User&#8217;s SID.</p>
<p>After this also you have more orphaned user then you can do</p>
<p><code>Exec sp_change_users_login 'update one', 'john', 'password' </code></p>
<p>But there is one major problem with using the stored procedure sp_change_users_login, when you restore the database again then the sp_change_users_login will be gone. So you would have to again do the whole process again. So sp_change_users_login is fine if you are moving database only once. If it is a repeatable transfer of a database from server to server then this sp_change_users_login is not useful.</p>
<p>Login Synchronization can be done through SSIS as well. SSIS also uses random SIDs at the destination and sp_change_users_login type to work to remap the users accounts to the newly generated SIDs.</p>
<p>Another way of Synchronization can be done through sp_help_revlogin. So we need to first download sp_help_revlogin from the Microsoft&#8217;s kb246133, then execute sp_help_revlogin on the source and copy the result. Then run the copied result in the destination server. So this will solve the orphaned users problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ravikhanal.com/how-to-manage-orphaned-user/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SSIS Package for merging data sources and applying transformations</title>
		<link>http://www.ravikhanal.com/ssis-package-for-merging-data-sources-and-applying-transformations/</link>
		<comments>http://www.ravikhanal.com/ssis-package-for-merging-data-sources-and-applying-transformations/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 22:10:24 +0000</pubDate>
		<dc:creator>Ravi Khanal</dc:creator>
		
		<category><![CDATA[SQL Server 2005]]></category>

		<category><![CDATA[2005]]></category>

		<category><![CDATA[character map]]></category>

		<category><![CDATA[Control flow task]]></category>

		<category><![CDATA[data flow task]]></category>

		<category><![CDATA[derived column]]></category>

		<category><![CDATA[Excel Source]]></category>

		<category><![CDATA[Flat file source]]></category>

		<category><![CDATA[Integration services]]></category>

		<category><![CDATA[merge]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[OLEDB destination]]></category>

		<category><![CDATA[sort]]></category>

		<category><![CDATA[SSIS]]></category>

		<category><![CDATA[transformation]]></category>

		<guid isPermaLink="false">http://ravikhanal.com/?p=230</guid>
		<description><![CDATA[Scenario:
I have file in different heterogeneous sources like Text file and Excel File and I want to merge it into the SQL Server Table. But before loading the data into SQL Server table I have to change the First Name Column into Upper Case and also I need to give 20% raise in the salary. [...]]]></description>
			<content:encoded><![CDATA[<p>Scenario:<br />
I have file in different heterogeneous sources like Text file and Excel File and I want to merge it into the SQL Server Table. But before loading the data into SQL Server table I have to change the First Name Column into Upper Case and also I need to give 20% raise in the salary. So I should have the proposed salary column added to the table.</p>
<p>Solution:</p>
<p>So First I need to have the data flow task for this.<a href="http://ravikhanal.com/wp-content/uploads/2008/12/dataflowtask1.jpg"><img class="alignnone size-medium wp-image-234" title="dataflowtask1" src="http://ravikhanal.com/wp-content/uploads/2008/12/dataflowtask1.jpg" alt="" width="166" height="69" /></a></p>
<p>Then in the data flow the package would be like this:</p>
<p><a href="http://ravikhanal.com/wp-content/uploads/2008/12/package.jpg"><img class="alignnone size-medium wp-image-236" title="package" src="http://ravikhanal.com/wp-content/uploads/2008/12/package-300x298.jpg" alt="" width="500" height="496" /></a></p>
<p><span id="more-230"></span><br />

<!-- Begin Google Adsense code -->

<script type="text/javascript"><!--
google_ad_client = "pub-3769852819788005";
/* 468x60, created 12/7/08 */
google_ad_slot = "8921495124";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- End Google Adsense code -->
<br />
Let us first add the flat file connection Manager, Excel Connection Manager, and Oledb Connection Manager.</p>
<p>In the flat file Source add the Flat file connection Manager.</p>
<p>In the Excel Source add the Excel Source connection Manager.</p>
<p>Since the data in Excel is in Unicode format so it should be converted into string format using Data Conversion Transformation.</p>
<p><a href="http://ravikhanal.com/wp-content/uploads/2008/12/dataconversion.jpg"><img class="alignnone size-medium wp-image-240" title="dataconversion" src="http://ravikhanal.com/wp-content/uploads/2008/12/dataconversion-300x298.jpg" alt="" width="300" height="298" /></a></p>
<p><a href="http://ravikhanal.com/wp-content/uploads/2008/12/sort.jpg"><img class="alignnone size-medium wp-image-241" title="sort" src="http://ravikhanal.com/wp-content/uploads/2008/12/sort-271x300.jpg" alt="" width="271" height="300" /></a></p>
<p>Before the data is merged, it should be sorted. So lets sort the Flat file Source and converted data of Excel by First Name and Last Name.</p>
<p><a href="http://ravikhanal.com/wp-content/uploads/2008/12/sort1.jpg"><img class="alignnone size-medium wp-image-242" title="sort1" src="http://ravikhanal.com/wp-content/uploads/2008/12/sort1-270x300.jpg" alt="" width="270" height="300" /></a></p>
<p><a href="http://ravikhanal.com/wp-content/uploads/2008/12/merge.jpg"><img class="alignnone size-medium wp-image-243" title="merge" src="http://ravikhanal.com/wp-content/uploads/2008/12/merge-300x296.jpg" alt="" width="300" height="296" /></a></p>
<p>Then after Sorting the data, it should be merged.</p>
<p><a href="http://ravikhanal.com/wp-content/uploads/2008/12/character-map.jpg"><img class="alignnone size-medium wp-image-244" title="character-map" src="http://ravikhanal.com/wp-content/uploads/2008/12/character-map-268x300.jpg" alt="" width="268" height="300" /></a></p>
<p>Then after merging the data, the first name column should be changed to uppercase. So the Character Map Transformation should be used.</p>
<p><a href="http://ravikhanal.com/wp-content/uploads/2008/12/derived-column.jpg"><img class="alignnone size-medium wp-image-245" title="derived-column" src="http://ravikhanal.com/wp-content/uploads/2008/12/derived-column-300x283.jpg" alt="" width="300" height="283" /></a> </p>
<p>After changing the data into uppercase, we have to add a new Salary column which could show the raise in the salary. So the derived column transformation has to be used which will calulate the 20% increase in salary.</p>
<p><a href="http://ravikhanal.com/wp-content/uploads/2008/12/destination.jpg"><img class="alignnone size-medium wp-image-260" title="destination" src="http://ravikhanal.com/wp-content/uploads/2008/12/destination-300x294.jpg" alt="" width="300" height="294" /></a></p>
<p>Then finally the OLEDB destination is added where all the data is dumped. In this OLEDB Destination the OLEDB Connection manager is added and the desired table is selected and mapped.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ravikhanal.com/ssis-package-for-merging-data-sources-and-applying-transformations/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SQL Server 2008&#8217;s Installation Snapshot</title>
		<link>http://www.ravikhanal.com/sql-server-2008s-installation-snapshot/</link>
		<comments>http://www.ravikhanal.com/sql-server-2008s-installation-snapshot/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 01:47:23 +0000</pubDate>
		<dc:creator>Ravi Khanal</dc:creator>
		
		<category><![CDATA[SQL Server 2008]]></category>

		<category><![CDATA[Installation]]></category>

		<guid isPermaLink="false">http://ravikhanal.com/?p=193</guid>
		<description><![CDATA[ 

 









 
     
 
]]></description>
			<content:encoded><![CDATA[<p><a href="http://ravikhanal.com/wp-content/uploads/2008/12/11.jpg"><img class="alignnone size-medium wp-image-195" title="1-SQL 2008" src="http://ravikhanal.com/wp-content/uploads/2008/12/11-300x148.jpg" alt="" width="500" height="148" /></a><a href="http://ravikhanal.com/wp-content/uploads/2008/12/2.jpg"><img class="alignnone size-medium wp-image-196" title="2-SQL 2008" src="http://ravikhanal.com/wp-content/uploads/2008/12/2-300x287.jpg" alt="" width="500" height="287" /></a><a href="http://ravikhanal.com/wp-content/uploads/2008/12/3.jpg"><img class="alignnone size-medium wp-image-197" title="3-SQL 2008" src="http://ravikhanal.com/wp-content/uploads/2008/12/3-300x223.jpg" alt="" width="500" height="223" /></a> <a href="http://ravikhanal.com/wp-content/uploads/2008/12/4.jpg"><img class="alignnone size-medium wp-image-198" title="4-SQL 2008" src="http://ravikhanal.com/wp-content/uploads/2008/12/4-300x211.jpg" alt="" width="500" height="211" /></a></p>
<p><a href="http://ravikhanal.com/wp-content/uploads/2008/12/5.jpg"><br />
<span id="more-193"></span> <br />

<!-- Begin Google Adsense code -->

<script type="text/javascript"><!--
google_ad_client = "pub-3769852819788005";
/* 468x60, created 12/7/08 */
google_ad_slot = "8921495124";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- End Google Adsense code -->
</a></p>
<p><a href="http://ravikhanal.com/wp-content/uploads/2008/12/5.jpg"> </a></p>
<p><a href="http://ravikhanal.com/wp-content/uploads/2008/12/5.jpg"><img class="alignnone size-medium wp-image-199" title="5-SQL 2008" src="http://ravikhanal.com/wp-content/uploads/2008/12/5-300x221.jpg" alt="" width="300" height="221" /></a> <a href="http://ravikhanal.com/wp-content/uploads/2008/12/7.jpg"><img class="alignnone size-medium wp-image-200" title="6-SQL 2008" src="http://ravikhanal.com/wp-content/uploads/2008/12/7-300x224.jpg" alt="" width="300" height="224" /></a><a href="http://ravikhanal.com/wp-content/uploads/2008/12/8.jpg"><img class="alignnone size-medium wp-image-201" title="7-SQL 2008" src="http://ravikhanal.com/wp-content/uploads/2008/12/8-300x225.jpg" alt="" width="300" height="225" /></a> <a href="http://ravikhanal.com/wp-content/uploads/2008/12/9.jpg"><img class="alignnone size-medium wp-image-202" title="8-SQL 2008" src="http://ravikhanal.com/wp-content/uploads/2008/12/9-300x225.jpg" alt="" width="300" height="225" /></a><a href="http://ravikhanal.com/wp-content/uploads/2008/12/10.jpg"><img class="alignnone size-medium wp-image-203" title="9-SQL 2008" src="http://ravikhanal.com/wp-content/uploads/2008/12/10-300x225.jpg" alt="" width="300" height="225" /></a> <a href="http://ravikhanal.com/wp-content/uploads/2008/12/111.jpg"><img class="alignnone size-medium wp-image-204" title="10-SQL 2008" src="http://ravikhanal.com/wp-content/uploads/2008/12/111-300x223.jpg" alt="" width="300" height="223" /></a> <a href="http://ravikhanal.com/wp-content/uploads/2008/12/12.jpg"><img class="alignnone size-medium wp-image-205" title="11-SQL 2008" src="http://ravikhanal.com/wp-content/uploads/2008/12/12-300x223.jpg" alt="" width="300" height="223" /></a><a href="http://ravikhanal.com/wp-content/uploads/2008/12/13.jpg"><img class="alignnone size-medium wp-image-206" title="12-SQL 2008" src="http://ravikhanal.com/wp-content/uploads/2008/12/13-300x225.jpg" alt="" width="300" height="225" /></a><a href="http://ravikhanal.com/wp-content/uploads/2008/12/14-hunu-parne.jpg"><img class="alignnone size-medium wp-image-207" title="13-SQL 2008" src="http://ravikhanal.com/wp-content/uploads/2008/12/14-hunu-parne-300x225.jpg" alt="" width="300" height="225" /></a><a href="http://ravikhanal.com/wp-content/uploads/2008/12/14.jpg"><img class="alignnone size-medium wp-image-208" title="14-SQL 2008" src="http://ravikhanal.com/wp-content/uploads/2008/12/14-300x225.jpg" alt="" width="300" height="225" /></a> <a href="http://ravikhanal.com/wp-content/uploads/2008/12/15-hunu-parne.jpg"><img class="alignnone size-medium wp-image-209" title="15-SQL 2008" src="http://ravikhanal.com/wp-content/uploads/2008/12/15-hunu-parne-300x223.jpg" alt="" width="300" height="223" /></a><a href="http://ravikhanal.com/wp-content/uploads/2008/12/16.jpg"><img class="alignnone size-medium wp-image-211" title="17-SQL 2008" src="http://ravikhanal.com/wp-content/uploads/2008/12/16-300x227.jpg" alt="" width="300" height="227" /></a><a href="http://ravikhanal.com/wp-content/uploads/2008/12/15.jpg"><img class="alignnone size-medium wp-image-210" title="16-SQL 2008" src="http://ravikhanal.com/wp-content/uploads/2008/12/15-300x222.jpg" alt="" width="300" height="222" /></a><a href="http://ravikhanal.com/wp-content/uploads/2008/12/17.jpg"><img class="alignnone size-medium wp-image-212" title="18-SQL 2008" src="http://ravikhanal.com/wp-content/uploads/2008/12/17-300x225.jpg" alt="" width="300" height="225" /></a><a href="http://ravikhanal.com/wp-content/uploads/2008/12/18.jpg"><img class="alignnone size-medium wp-image-213" title="19- SQL 2008" src="http://ravikhanal.com/wp-content/uploads/2008/12/18-300x226.jpg" alt="" width="300" height="226" /></a><a href="http://ravikhanal.com/wp-content/uploads/2008/12/19.jpg"><img class="alignnone size-medium wp-image-214" title="20-SQL 2008" src="http://ravikhanal.com/wp-content/uploads/2008/12/19-300x223.jpg" alt="" width="300" height="223" /></a></p>
<p> <a href="http://ravikhanal.com/wp-content/uploads/2008/12/20.jpg"><img class="alignnone size-medium wp-image-215" title="21-SQL 2008" src="http://ravikhanal.com/wp-content/uploads/2008/12/20-300x224.jpg" alt="" width="300" height="224" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ravikhanal.com/sql-server-2008s-installation-snapshot/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
