Bookmark
book mark for my future reference
-- Query to identify the missing indexes in t-sql of sql server -- from the dynamic views BEGIN -- Do not lock anything, and do not get held up by any locks. SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED SELECT TOP 20 st.text AS [SQL] , cp.cacheobjtype , cp.objtype , DB_NAME(st.dbid)AS [DatabaseName] , cp.usecounts AS [Plan usage] , qp.query_plan FROM sys.dm_exec_cached_plans cp CROSS APPLY sys.dm_exec_sql_text(cp.pla... st CROSS APPLY sys.dm_exec_query_plan(cp.p... qp WHERE CAST(qp.query_plan...
A good article on JSON in MSDN site http://msdn2.microsoft.com/
submain.com is offering free download of their VB.Net / C# coding guidelines, a 100+ page ebook. More info at http://submain.com/blog/Fre
This is available on www.programmersheaven.com site. This book is free and available online. Chapters Introduction C# Language Fundamentals Classes and Objects Inheritance & Polymorphism Structures, Enumeration, Garbage Collection & Nested Classes Abstract Classes & Interfaces Arrays, Collections & String Manipulation Exception Handling Delegates & Events WinForms & Windows Applications More Windows Controls & Standard Dialog Boxes Data Access using ADO.Net Multithreading...
.NET Book Zero: What the C or C++ Programmer Needs to Know about C# and the .NET Framework This is available at Charles Petzold web site. You can download it here
ScottGu pointed this in his blog and i found this nice. You can read all here. I wanted to log here in my blog so that i will never forget the url. :)
A nice compilation of syntax comparison of two languages (C# and VB.NET) is provided at http://www.harding.edu/USER... (Information via dotnetjunkies blog)