Browse by Tags
All Tags »
Database (
RSS)
crosspost from http://blogs.msdn.com/rextang for the long waiting, at 8/6 PST time, SQL Server 2008 finally RTMed! checkout press release here: http://www.microsoft.com/presspass/press/2008/aug08/08-06SQLServer2008PR.mspx download place here: http://msdn...
crosspost from http://blogs.msdn.com/rextang [via http://www.mssqlonline.com/?p=14 ] when you want to force a detach of sqlexpress mdf file, while there are still other processes currently using it (or normally when there were still connections remain...
crosspost from http://blogs.msdn.com/rextang [via http://www.mssqlonline.com/?p=14 ] when you want to force a detach of sqlexpress mdf file, while there are still other processes currently using it (or normally when there were still connections remain...
crosspost from http://blogs.msdn.com/rextang by setting asp.net application to save session state into SQL Server database, not only can scale application out with multiple web servers, but also provided a way to investigate session usage. Saving session...
crosspost from http://blogs.msdn.com/rextang Here is some conversion functions in SQL Server... To convert between int and hex values, by referring to this post : SELECT 'Int -> Hex' SELECT CONVERT(VARBINARY(8), 16777215) SELECT 'Hex ->...