Function to Join CahcedPlan, Query Plan and Sql_text

The cache plan handle can be found by querying select * from sys.dm_exec_cached_plans How do I get the sql text and Query Plan for this plan handle? create function returnSQL(@planhandle varbinary(max)) returns table As return select sql.text,pc.usecounts,pc.cacheobjtype,pc.objtype,pc.size_in_bytes, Pq.query_plan From Sys.dm_exec_sql_text(@planhandle) as sql cross join Sys.dm_exec_query_plan(@planhandle) as pq join Sys.dm_exec_cached_plans as pc on pc.plan_handle = @planhandle; […]

HTML 5

HTML 5 is a language for structuring and presenting content for the World Wide Web, a core technology of the internet – According to WIKIPEDIA to know more visit @ http://en.wikipedia.org/wiki/HTML5. HTML 5 is nothing but a combination of new markup and Javascript APIs. To understand new markup and Javascript APIs please visit http://diveintohtml5.org/table-of-contents.html#semantics http://dev.w3.org/html5/html4-differences/#apis […]

Hide Yellow Status Bar Sharepoint 2010

How do we hide yellow status bar in SharePoint 2010 ? Open V4.Master file in Sharepoint desginer 2010 and search for <div id=”s4-statusbarcontainer”> <div id=”pageStatusBar” class=”s4-status-s1″> </div> </div> <div> after commenting <!– <div id=”s4-statusbarcontainer”> <div id=”pageStatusBar” class=”s4-status-s1″> </div> –> Just commont these <div tag , and now you don’t see any yellow status bar under […]

Fast Search Server2010 Installation and Configuration – Step by Step

Fast Search Server 2010 provides extensive search capabilities to Sharepoint 2010, complete information on Fast Search Server is here http://technet.microsoft.com/en-us/enterprisesearch/ee441234 Let’s see how we can install and configure Fast Search Server on Sharepoint 2010 , download fastsearchserver binaries from MSDN (if you are a msdn subscriber). Step 1 (Installing pre-requisites): Install Software pre-requisites, Extra the […]

Sharepoint 2010 Content Type Hubs

We will see how to create a Content Type Hub and publish content types to different webapplications, In Sharepoint 2007 when we create a custom content type for a particular web applications let say “Customer content type” for Customer Webapplication we cannot reuse the same “CustomerContentType” for a different application like Sales etc., In Sharepoint […]