<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <atom:link href="http://rajs.yolasite.com/whats-new.rss" rel="self" type="application/rss+xml" />
        <title>whats-new</title>
        <description>whats-new</description>
        <link>http://rajs.yolasite.com/whats-new.php</link>
        <lastBuildDate>Sat, 13 Jun 2026 04:35:55 +0100</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Fill null rows with previous non null value</title>
            <link>http://rajs.yolasite.com/whats-new/fill-null-rows-with-previous-non-null-value</link>
            <description>Requirement: In table which has row numbers and need to fill null value with previous non null value.&lt;br&gt;&lt;br&gt;Solution: Using Cross Apply and Top 1 row&lt;br&gt;&lt;br&gt;Tsql Syntax (Gen):&lt;br&gt;&lt;br&gt;Select Coalesce(Tbl1.&amp;lt;Column1&amp;gt;,Tbl2.&amp;lt;Column1&amp;gt;) GTIN,Tbl1.* From Tbl Tbl1 --Coalesce would fetch first non Null Value&lt;br&gt;Cross Apply (Select top 1 &amp;lt;Column2&amp;gt; from Tbl Tbl2 -- Top 1 value would get only 1 record&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Where Tbl2.Row_Num &amp;lt;= Tbl1.Row_Num and &amp;lt;Column1&amp;gt; is not null --Row_N is row_number&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Order by Row_Num Desc) QE2 --Order by Row_Namber&lt;br&gt;</description>
            <pubDate>Tue, 24 Jan 2017 15:39:37 +0100</pubDate>
        </item>
        <item>
            <title>TSQL - Arithmetic conversion error</title>
            <link>http://rajs.yolasite.com/whats-new/tsql-arithmetic-conversion-error</link>
            <description>Found a new issue Arithmetic conversion error in SQL Statement. Have been fighting to find issue with Query, finally found solution for the issue. It's Aggregate function Sum. We get Integer column sum as Integer, when values go beyond 4 bite then we get this error.&lt;br&gt;&lt;br&gt;Solution I found, I have used Sum(Cast(&amp;lt;ColumnName&amp;gt; as bigint)) This resolved the issue.</description>
            <pubDate>Wed, 05 Nov 2014 13:25:45 +0100</pubDate>
        </item>
        <item>
            <title>SSIS: System.IO.IOException: The process cannot access the file</title>
            <link>http://rajs.yolasite.com/whats-new/ssis-system-io-ioexception-the-process-cannot-access-the-file</link>
            <description>Hello All,&lt;br&gt;&lt;br&gt;Quite interesting thing I got to know today. If your SQL Tools has crashed in between loading. You may be trying to run a package and see above error.&lt;br&gt;&lt;br&gt;Fix: Simple look for process SSIS Debug Host. This is the process which will lock your file when VS crash in between. Stop the service and you are good to go with re running package.&lt;br&gt;&lt;br&gt;Cheers,&lt;br&gt;Raj&lt;br&gt;</description>
            <pubDate>Tue, 16 Oct 2012 10:32:37 +0100</pubDate>
        </item>
        <item>
            <title>SSIS Learnings</title>
            <link>http://rajs.yolasite.com/whats-new/ssis-learnings</link>
            <description>It's interesting to work with SSIS Case statements in Derived columns.&lt;BR&gt;&lt;BR&gt;Secondly today I am really lost, almost having no answer to conditional join in SSIS. Not yet figured whats the soultion. Please share if you have one, or will share if I figure out. I am basically trying to join source column to any of the columns in lookup table.&lt;BR&gt;&lt;BR&gt;More detail once I have time :)</description>
            <pubDate>Mon, 17 Oct 2011 17:21:25 +0100</pubDate>
        </item>
        <item>
            <title>Need to know Detailed System Information?</title>
            <link>http://rajs.yolasite.com/whats-new/need-to-know-detailed-system-information-</link>
            <description>Not a problem, just run&amp;nbsp;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: 'Segoe UI', Arial, Verdana, Tahoma, sans-serif; font-size: 11px; line-height: 16px; &quot;&gt;MSINFO32&amp;nbsp;in command prompt or run.&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;span class=&quot;yui-non&quot;&gt;You will see all detail information.&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</description>
            <pubDate>Fri, 14 Oct 2011 12:13:14 +0100</pubDate>
        </item>
        <item>
            <title>List of All DMV, Ref: Another Website.</title>
            <link>http://rajs.yolasite.com/whats-new/list-of-all-dmv-ref-another-website-</link>
            <description>&amp;nbsp; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #1. sys.dm_broker_activated_tasks&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #2. sys.dm_broker_connections&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #3. sys.dm_broker_forwarded_messages&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #4. sys.dm_broker_queue_monitors&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #5. sys.dm_clr_appdomains&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #6. sys.dm_clr_loaded_assemblies&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #7. sys.dm_clr_properties&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #8. sys.dm_clr_tasks&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #9. sys.dm_db_file_space_usage&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #10. sys.dm_db_index_usage_stats&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #11. sys.dm_db_mirroring_connections&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #12. sys.dm_db_missing_index_details&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #13. sys.dm_db_missing_index_group_stats&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #14. sys.dm_db_missing_index_groups&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #15. sys.dm_db_partition_stats&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #16. sys.dm_db_session_space_usage&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #17. sys.dm_db_task_space_usage&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #18. sys.dm_exec_background_job_queue&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #19. sys.dm_exec_background_job_queue_stats&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #20. sys.dm_exec_cached_plans&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #21. sys.dm_exec_connections&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #22. sys.dm_exec_query_memory_grants&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #23. sys.dm_exec_query_optimizer_info&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #24. sys.dm_exec_query_resource_semaphores&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #25. sys.dm_exec_query_stats&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #26. sys.dm_exec_query_transformation_stats&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #27. sys.dm_exec_requests&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #28. sys.dm_exec_sessions&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #29. sys.dm_fts_active_catalogs&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #30. sys.dm_fts_index_population&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #31. sys.dm_fts_memory_buffers&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #32. sys.dm_fts_memory_pools&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #33. sys.dm_fts_population_ranges&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #34. sys.dm_io_backup_tapes&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #35. sys.dm_io_cluster_shared_drives&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #36. sys.dm_io_pending_io_requests&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #37. sys.dm_os_buffer_descriptors&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #38. sys.dm_os_child_instances&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #39. sys.dm_os_cluster_nodes&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #40. sys.dm_os_hosts&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #41. sys.dm_os_latch_stats&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #42. sys.dm_os_loaded_modules&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #43. sys.dm_os_memory_allocations&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #44. sys.dm_os_memory_cache_clock_hands&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #45. sys.dm_os_memory_cache_counters&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #46. sys.dm_os_memory_cache_entries&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #47. sys.dm_os_memory_cache_hash_tables&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #48. sys.dm_os_memory_clerks&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #49. sys.dm_os_memory_objects&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #50. sys.dm_os_memory_pools&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #51. sys.dm_os_performance_counters&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #52. sys.dm_os_ring_buffers&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #53. sys.dm_os_schedulers&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #54. sys.dm_os_stacks&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #55. sys.dm_os_sublatches&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #56. sys.dm_os_sys_info&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #57. sys.dm_os_tasks&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #58. sys.dm_os_threads&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #59. sys.dm_os_virtual_address_dump&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #60. sys.dm_os_wait_stats&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #61. sys.dm_os_waiting_tasks&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #62. sys.dm_os_worker_local_storage&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #63. sys.dm_os_workers&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #64. sys.dm_qn_subscriptions&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #65. sys.dm_repl_articles&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #66. sys.dm_repl_schemas&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #67. sys.dm_repl_tranhash&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #68. sys.dm_repl_traninfo&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #69. sys.dm_tran_active_snapshot_database_transactions&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #70. sys.dm_tran_active_transactions&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #71. sys.dm_tran_current_snapshot&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #72. sys.dm_tran_current_transaction&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #73. sys.dm_tran_database_transactions&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #74. sys.dm_tran_tran_locks&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #75. sys.dm_tran_session_transactions&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #76. sys.dm_tran_top_version_generators&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #77. sys.dm_tran_transactions_snapshot&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2005 #78. sys.dm_tran_version_store&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;&lt;SPAN style=&quot;FONT-WEIGHT: bold&quot;&gt;New DMV in SQL Server 2008&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #1. sys.dm_audit_actions&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #2. sys.dm_audit_class_type_map&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #3. sys.dm_cdc_errors&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #4. sys.dm_cdc_log_scan_sessions&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #5. sys.dm_cryptographic_provider_properties&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #6. sys.dm_database_encryption_keys&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #7. sys.dm_db_mirroring_auto_page_repair&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #8. sys.dm_db_mirroring_past_actions&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #9. sys.dm_db_persisted_sku_features&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #10. sys.dm_db_script_level&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #11. sys.dm_exec_procedure_stats&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #12. sys.dm_exec_trigger_stats&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #13. sys.dm_filestream_file_io_handles&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #14. sys.dm_filestream_file_io_requests&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #15. sys.dm_fts_fdhosts&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #16. sys.dm_fts_outstanding_batches&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #17. sys.dm_os_dispatcher_pools&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #18. sys.dm_os_dispatchers&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #19. sys.dm_os_memory_brokers&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #20. sys.dm_os_memory_node_access_stats&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #21. sys.dm_os_memory_nodes&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #22. sys.dm_os_nodes&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #23. sys.dm_os_process_memory&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #24. sys.dm_os_spinlock_stacks&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #25. sys.dm_os_sys_memory&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #26. sys.dm_resource_governor_configuration&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #27. sys.dm_resource_governor_resource_pools&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #28. sys.dm_resource_governor_workload_groups&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #29. sys.dm_server_audit_status&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #30. sys.dm_tran_commit_table&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #31. sys.dm_xe_map_values&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #32. sys.dm_xe_object_columns&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #33. sys.dm_xe_objects&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #34. sys.dm_xe_packages&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #35. sys.dm_xe_session_event_actions&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #36. sys.dm_xe_session_events&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #37. sys.dm_xe_session_object_columns&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #38. sys.dm_xe_session_targets&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;DMV in SQL Server 2008 #39. sys.dm_xe_sessions&lt;BR&gt;&lt;BR&gt;From: &lt;A href=&quot;http://www.ravikhanal.com/list-of-dmv-in-sql-server-2005-and-2008/&quot;&gt;&lt;FONT color=#0066cc&gt;http://www.ravikhanal.com/list-of-dmv-in-sql-server-2005-and-2008/&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;</description>
            <pubDate>Wed, 12 Oct 2011 10:02:14 +0100</pubDate>
        </item>
        <item>
            <title>Some helpfull Queries</title>
            <link>http://rajs.yolasite.com/whats-new/some-helpfull-queries</link>
            <description>&lt;P&gt; 
&lt;TABLE style=&quot;WIDTH: 365pt; BORDER-COLLAPSE: collapse&quot; border=0 cellSpacing=0 cellPadding=0 width=486&gt; 
&lt;COLGROUP&gt; 
&lt;COL style=&quot;WIDTH: 365pt; mso-width-source: userset; mso-width-alt: 17773&quot; width=486&gt; 
&lt;TBODY&gt; 
&lt;TR style=&quot;HEIGHT: 75pt&quot; height=100&gt; 
&lt;TD style=&quot;BORDER-BOTTOM: black; BORDER-LEFT: black; BACKGROUND-COLOR: transparent; WIDTH: 365pt; HEIGHT: 75pt; BORDER-TOP: black; BORDER-RIGHT: black&quot; class=xl66 height=100 width=486&gt;&lt;FONT style=&quot;BACKGROUND-COLOR: #ffff00&quot;&gt;select&lt;SPAN style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/SPAN&gt;'DBCC Show_Statistics ('''+obje.name+''','''+ind.name+''')' from sysindexes ind&lt;BR&gt;Cross Apply(select name from sys.objects obj where obj.object_id = ind.id and obj.type not like 'S' ) obje&lt;BR&gt;&lt;/FONT&gt;&lt;BR&gt; 
&lt;TABLE style=&quot;WIDTH: 401pt; BORDER-COLLAPSE: collapse&quot; border=0 cellSpacing=0 cellPadding=0 width=535&gt; 
&lt;COLGROUP&gt; 
&lt;COL style=&quot;WIDTH: 401pt; mso-width-source: userset; mso-width-alt: 19565&quot; width=535&gt; 
&lt;TBODY&gt; 
&lt;TR style=&quot;HEIGHT: 75pt&quot; height=100&gt; 
&lt;TD style=&quot;BORDER-BOTTOM: black; BORDER-LEFT: black; BACKGROUND-COLOR: transparent; WIDTH: 401pt; HEIGHT: 75pt; BORDER-TOP: black; BORDER-RIGHT: black&quot; class=xl65 height=100 width=535&gt;Create Query for all available indexes in table. Execute result set to check Stats on index. Stats update on index in very important for performance of table to retrieve data. Technical: Every time any DML Operation is performed, Index structure is impacted. So it's prefered to update Stats in regular interval of Time. Note: Having lot many indexes on table implacts DML operations.&lt;BR&gt;&lt;BR&gt; 
&lt;TABLE style=&quot;WIDTH: 365pt; BORDER-COLLAPSE: collapse&quot; border=0 cellSpacing=0 cellPadding=0 width=486&gt; 
&lt;COLGROUP&gt; 
&lt;COL style=&quot;WIDTH: 365pt; mso-width-source: userset; mso-width-alt: 17773&quot; width=486&gt; 
&lt;TBODY&gt; 
&lt;TR style=&quot;HEIGHT: 60pt&quot; height=80&gt; 
&lt;TD style=&quot;BORDER-BOTTOM: black; BORDER-LEFT: black; BACKGROUND-COLOR: transparent; WIDTH: 365pt; HEIGHT: 60pt; BORDER-TOP: black; BORDER-RIGHT: black&quot; class=xl66 height=80 width=486&gt;&lt;FONT style=&quot;BACKGROUND-COLOR: #ffff00&quot;&gt;use master&lt;BR&gt;Go&lt;BR&gt;sp_msforeachdb 'Use ?;Select ''?'' as DatabaseName,* from sys.objects where name like ''DateToInt'''&lt;BR&gt;&lt;/FONT&gt;&lt;BR&gt; 
&lt;TABLE style=&quot;WIDTH: 401pt; BORDER-COLLAPSE: collapse&quot; border=0 cellSpacing=0 cellPadding=0 width=535&gt; 
&lt;COLGROUP&gt; 
&lt;COL style=&quot;WIDTH: 401pt; mso-width-source: userset; mso-width-alt: 19565&quot; width=535&gt; 
&lt;TBODY&gt; 
&lt;TR style=&quot;HEIGHT: 60pt&quot; height=80&gt; 
&lt;TD style=&quot;BORDER-BOTTOM: black; BORDER-LEFT: black; BACKGROUND-COLOR: transparent; WIDTH: 401pt; HEIGHT: 60pt; BORDER-TOP: black; BORDER-RIGHT: black&quot; class=xl65 height=80 width=535&gt;This query helps to find all database for function name.&lt;BR&gt;&lt;BR&gt; 
&lt;TABLE style=&quot;WIDTH: 365pt; BORDER-COLLAPSE: collapse&quot; border=0 cellSpacing=0 cellPadding=0 width=486&gt; 
&lt;COLGROUP&gt; 
&lt;COL style=&quot;WIDTH: 365pt; mso-width-source: userset; mso-width-alt: 17773&quot; width=486&gt; 
&lt;TBODY&gt; 
&lt;TR style=&quot;HEIGHT: 60pt&quot; height=80&gt; 
&lt;TD style=&quot;BORDER-BOTTOM: black; BORDER-LEFT: black; BACKGROUND-COLOR: transparent; WIDTH: 365pt; HEIGHT: 60pt; BORDER-TOP: black; BORDER-RIGHT: black&quot; class=xl66 height=80 width=486&gt;&lt;FONT style=&quot;BACKGROUND-COLOR: #ffff00&quot;&gt;use master&lt;BR&gt;go&lt;BR&gt;sp_msforeachdb 'Use ?;Select ''?'',* from information_schema.tables where table_name like ''nrmSalesActivations'''&lt;BR&gt;&lt;BR&gt; 
&lt;TABLE style=&quot;WIDTH: 401pt; BORDER-COLLAPSE: collapse&quot; border=0 cellSpacing=0 cellPadding=0 width=535&gt; 
&lt;COLGROUP&gt; 
&lt;COL style=&quot;WIDTH: 401pt; mso-width-source: userset; mso-width-alt: 19565&quot; width=535&gt; 
&lt;TBODY&gt; 
&lt;TR style=&quot;HEIGHT: 60pt&quot; height=80&gt; 
&lt;TD style=&quot;BORDER-BOTTOM: black; BORDER-LEFT: black; BACKGROUND-COLOR: transparent; WIDTH: 401pt; HEIGHT: 60pt; BORDER-TOP: black; BORDER-RIGHT: black&quot; class=xl65 height=80 width=535&gt;Search all database for table name.&lt;BR&gt;&lt;BR&gt; 
&lt;TABLE style=&quot;WIDTH: 401pt; BORDER-COLLAPSE: collapse&quot; border=0 cellSpacing=0 cellPadding=0 width=535&gt; 
&lt;COLGROUP&gt; 
&lt;COL style=&quot;WIDTH: 401pt; mso-width-source: userset; mso-width-alt: 19565&quot; width=535&gt; 
&lt;TBODY&gt; 
&lt;TR style=&quot;HEIGHT: 60pt&quot; height=80&gt; 
&lt;TD style=&quot;BORDER-BOTTOM: black; BORDER-LEFT: black; BACKGROUND-COLOR: transparent; WIDTH: 401pt; HEIGHT: 60pt; BORDER-TOP: black; BORDER-RIGHT: black&quot; class=xl65 height=80 width=535&gt; 
&lt;TABLE style=&quot;WIDTH: 365pt; BORDER-COLLAPSE: collapse&quot; border=0 cellSpacing=0 cellPadding=0 width=486&gt; 
&lt;COLGROUP&gt; 
&lt;COL style=&quot;WIDTH: 365pt; mso-width-source: userset; mso-width-alt: 17773&quot; width=486&gt; 
&lt;TBODY&gt; 
&lt;TR style=&quot;HEIGHT: 60pt&quot; height=80&gt; 
&lt;TD style=&quot;BORDER-BOTTOM: black; BORDER-LEFT: black; BACKGROUND-COLOR: transparent; WIDTH: 365pt; HEIGHT: 60pt; BORDER-TOP: black; BORDER-RIGHT: black&quot; class=xl66 height=80 width=486&gt;&lt;FONT style=&quot;BACKGROUND-COLOR: #ffff00; FONT-FAMILY: &quot;&gt;use master&lt;BR&gt;go&lt;BR&gt;sp_msforeachdb 'Use ?;Select ''?'',Table_name,Column_Name from information_schema.columns where table_name like ''adate'''&lt;BR&gt;&lt;BR&gt; 
&lt;TABLE style=&quot;WIDTH: 401pt; BORDER-COLLAPSE: collapse&quot; border=0 cellSpacing=0 cellPadding=0 width=535&gt; 
&lt;COLGROUP&gt; 
&lt;COL style=&quot;WIDTH: 401pt; mso-width-source: userset; mso-width-alt: 19565&quot; width=535&gt; 
&lt;TBODY&gt; 
&lt;TR style=&quot;HEIGHT: 60pt&quot; height=80&gt; 
&lt;TD style=&quot;BORDER-BOTTOM: black; BORDER-LEFT: black; BACKGROUND-COLOR: transparent; WIDTH: 401pt; HEIGHT: 60pt; BORDER-TOP: black; BORDER-RIGHT: black&quot; class=xl65 height=80 width=535&gt;Search all database for column names.&lt;BR&gt;&lt;BR&gt; 
&lt;TABLE style=&quot;WIDTH: 365pt; BORDER-COLLAPSE: collapse&quot; border=0 cellSpacing=0 cellPadding=0 width=486&gt; 
&lt;COLGROUP&gt; 
&lt;COL style=&quot;WIDTH: 365pt; mso-width-source: userset; mso-width-alt: 17773&quot; width=486&gt; 
&lt;TBODY&gt; 
&lt;TR style=&quot;HEIGHT: 105pt&quot; height=140&gt; 
&lt;TD style=&quot;BORDER-BOTTOM: black; BORDER-LEFT: black; BACKGROUND-COLOR: transparent; WIDTH: 365pt; HEIGHT: 105pt; BORDER-TOP: black; BORDER-RIGHT: black&quot; class=xl66 height=140 width=486&gt;&lt;FONT style=&quot;BACKGROUND-COLOR: #ffff00; FONT-FAMILY: &quot;&gt;SELECT name AS &quot;Name&quot;, &lt;BR&gt;&lt;SPAN style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;is_auto_create_stats_on AS &quot;Auto Create Stats&quot;,&lt;BR&gt;&lt;SPAN style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;is_auto_update_stats_on AS &quot;Auto Update Stats&quot;,&lt;BR&gt;&lt;SPAN style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;is_read_only AS &quot;Read Only&quot; &lt;BR&gt;FROM sys.databases&lt;BR&gt;WHERE database_ID &amp;gt; 4;&lt;BR&gt;GO&lt;BR&gt;&lt;BR&gt; 
&lt;TABLE style=&quot;WIDTH: 401pt; BORDER-COLLAPSE: collapse&quot; border=0 cellSpacing=0 cellPadding=0 width=535&gt; 
&lt;COLGROUP&gt; 
&lt;COL style=&quot;WIDTH: 401pt; mso-width-source: userset; mso-width-alt: 19565&quot; width=535&gt; 
&lt;TBODY&gt; 
&lt;TR style=&quot;HEIGHT: 105pt&quot; height=140&gt; 
&lt;TD style=&quot;BORDER-BOTTOM: black; BORDER-LEFT: black; BACKGROUND-COLOR: transparent; WIDTH: 401pt; HEIGHT: 105pt; BORDER-TOP: black; BORDER-RIGHT: black&quot; class=xl65 height=140 width=535&gt;All tables in all database for which autocreate stats and update stats are enabled.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/P&gt;</description>
            <pubDate>Wed, 12 Oct 2011 10:00:11 +0100</pubDate>
        </item>
        <item>
            <title>SQL Server 2008 Missing Indexes</title>
            <link>http://rajs.yolasite.com/whats-new/sql-server-2008-missing-indexes</link>
            <description>Have ever wondered/concerned what columns are being used mostly. Which tables are queried mostly? whats the number of hits on table? and other concerns related to performance of server.&lt;BR&gt;&lt;BR&gt;When it comes to performance tuning we all think of Clustered Index, table partitions, Non Clustered Index, Data retention policy, relationships. In addition to above concern below is list of information I have found in my way of performance tuning.&lt;BR&gt;&lt;BR&gt;By reading articles from internet that there are two ways of improving performance of Production server.&lt;BR&gt;&lt;BR&gt;1) Creating TempDB file for each core processor on server&lt;BR&gt;&lt;BR&gt;2) Don't change default configuration of Database options, unless knowing what you are doing.&lt;BR&gt;&lt;BR&gt;3) Below script from Microsoft is handy in identifying indexed in already setup and running production environment.&lt;BR&gt;&lt;BR&gt;&amp;nbsp; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;SELECT migs.group_handle,Migs.user_seeks,migs.avg_user_impact, mid.*&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;FROM sys.dm_db_missing_index_group_stats AS migs&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;INNER JOIN sys.dm_db_missing_index_groups AS mig&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;&lt;SPAN style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;ON (migs.group_handle = mig.index_group_handle)&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;INNER JOIN sys.dm_db_missing_index_details AS mid&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;&lt;SPAN style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;ON (mig.index_handle = mid.index_handle) order by user_seeks desc&lt;BR&gt;&lt;BR&gt;4) Using Activity Monitor in SQL Server 2008 give fair information on Server load, CPU Usage.&lt;BR&gt;5) Standard reports like server dashboard provides information on Server utilization, but not expensive queries.&lt;BR&gt;&lt;BR&gt;In course of time there is one flaw, all queries are not visible in Activity monitor. Using DMV helps in this case. I still need to work on query using DMV to list all active queries.&lt;BR&gt;&lt;BR&gt;6) One of Database option is Auto Update Statistics, its good to leave this option enabled. Based on frequency and status of stats it would get updated.&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Sp that helps to update all statistics. I recomend running it after creating tempdb files if you have not got one.&lt;BR&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;Update Statistics in Database&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Consolas; COLOR: black; FONT-SIZE: 10pt&quot;&gt;EXEC sp_updatestats&lt;/P&gt; 
&lt;P style=&quot;MARGIN: 0in; FONT-FAMILY: Calibri; FONT-SIZE: 11pt&quot;&gt;&lt;BR&gt;&lt;BR&gt;&amp;nbsp;&lt;/P&gt;</description>
            <pubDate>Wed, 12 Oct 2011 09:52:38 +0100</pubDate>
        </item>
        <item>
            <title>Windows 7 cannot load Userprofile</title>
            <link>http://rajs.yolasite.com/whats-new/windows-7-cannot-load-userprofile</link>
            <description>Hi,&lt;br&gt;&lt;span class=&quot;yui-non&quot;&gt;If you ever find any difficulty with Windows 7 login with error message: Windows cannot load User profile.&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;span class=&quot;yui-non&quot;&gt;Trick is to just follow instructions on this link. It helped me fix issues on my computer. Hopefully if you every get into this issue, this might get fixed.&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;span class=&quot;yui-non&quot;&gt;Link:&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://social.answers.microsoft.com/Forums/en-US/w7security/thread/9d5c317b-5e16-42ae-9a86-f8ae85761803?prof=required&quot; class=&quot;&quot;&gt;http://social.answers.microsoft.com/Forums/en-US/w7security/thread/9d5c317b-5e16-42ae-9a86-f8ae85761803?prof=required&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;span class=&quot;yui-non&quot;&gt;Regards,&lt;/span&gt;&lt;br&gt;&lt;span class=&quot;yui-non&quot;&gt;Rajesh&lt;/span&gt;&lt;br&gt;</description>
            <pubDate>Tue, 11 Jan 2011 02:58:10 +0100</pubDate>
        </item>
        <item>
            <title>2005 SSAS Range Operator</title>
            <link>http://rajs.yolasite.com/whats-new/2005-ssas-range-operator</link>
            <description>Hi,&lt;br&gt;&lt;br&gt;&lt;span class=&quot;yui-non&quot;&gt;In SSAS 2005 MDX we have Range function. This function is very good for any data which is sequential and good for some in some&amp;nbsp;scenario&amp;nbsp;like Date range.&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;span class=&quot;yui-non&quot;&gt;Unfortunately&amp;nbsp;we can't use the same for Amount data like &amp;gt;=50 and &amp;lt;=100. When you have such requirement, I would suggest using Exists function instead of Range operation. In addition using Exists will help using same hierarchy twice once for Min and second for Max.&lt;/span&gt;&lt;br&gt;&lt;br&gt;Will update this post soon with more details.&lt;br&gt;&lt;br&gt;&lt;span class=&quot;yui-non&quot;&gt;Keep reading,&lt;/span&gt;&lt;br&gt;&lt;span class=&quot;yui-non&quot;&gt;Raj&lt;/span&gt;&lt;br&gt;&lt;span class=&quot;yui-non&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;br&gt;</description>
            <pubDate>Wed, 15 Dec 2010 15:17:24 +0100</pubDate>
        </item>
    </channel>
</rss>
