Posts

Showing posts from September, 2009

Truncate/Shirnk ldf File in Sql Server2005

The following Sql Statements will clear .ldf file into normal size. Declare @logfile_id int Backup Log < > with No_Log Select @logfile_id = max(fileid) from dbo.sysfiles where name like '%log%' DBCC Shrinkfile (@logfile_id, truncateonly) My 10GB Database ldf came back to 2 MB. :-)

Microsoft Ajax 4 Preview 5: The DataView Control

http://weblogs.asp.net/infinitiesloop/archive/2009/09/10/microsoft-ajax-4-preview-5-the-dataview-control.aspx Dataview Control Complete Example: http://weblogs.asp.net/jimwang/archive/2008/11/05/working-with-ado-net-data-services-in-ajax.aspx

What is Windows Azure?

Good Article from SivaPrasad ... http://www.dotnetspark.com/kb/702-windows-azure-faq-part-1.aspx You can find lot of Sample Videos of SivaPrasad on Questpond.com http://www.questpond.com/demo.html Sharepoint Workflows using Designer: http://www.dotnetspark.com/kb/532-8-steps-to-create-workflows-using-sharepoint.aspx Sharepoint Basics By Siva Prasad: You can find five useful links from this web page. http://www.dotnetspark.com/kb/515-sharepoint-workflow-basics.aspx Differences between WCF & ASMX: http://www.keithelder.net/blog/archive/2008/10/17/WCF-vs-ASMX-WebServices.aspx Basics of WPF Databinding: http://msdn.microsoft.com/en-us/library/ms752347.aspx Sharepoint Six Series of FAQs ... Its almost explains Sharepoint  Model. http://www.codeproject.com/KB/aspnet/SharePoint.aspx