Rexiology@MSDN

Nothing but Microsoft Technologies...

January, 2008

Posts
  • Rexiology@MSDN

    .NET Framework Source Code now Available...

    • 1 Comments
    [via ScottGu ] Available source code for now: NET Base Class Libraries (including System, System.CodeDom, System.Collections, System.ComponentModel, System.Diagnostics, System.Drawing, System.Globalization, System.IO, System.Net, System.Reflection, System...
  • Rexiology@MSDN

    asp.net: checking session size in SQL Server ASPState DB...

    • 2 Comments
    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 state in SQL Server database will be slower...
  • Rexiology@MSDN

    T-SQL: Convert Hex String to VarBinary...

    • 7 Comments
    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 -> Int' SELECT CONVERT(INT, 0xFFFFFF) To convert a VarBinary...
Page 1 of 1 (3 items)