Top 5 Recent Entries
How to Force Drop a Busy SQL Server Database: SINGLE USER vs. OFFLINE
How to safely drop a SQL Server database when it is locked by active connections, using the SINGLE USER and OFFLINE methods to resolve "database is currently in use" errors.
Location: Databases | SQL Server
Find and Recreate a Computed Column in SQL Server
How to locate a SQL Server computed column, retrieve its formula, and add it to another database as persisted or non-persisted.
Location: Databases | SQL Server
How to Search a SQL Server Database for a Column or Object Name
Six practical ways to search SQL Server for a column, alias, procedure reference, view, function, trigger, or computed column.
Location: Databases | SQL Server
SQL Server Compare Two Tables: How to Find Missing Records Efficiently
How to use LEFT JOIN and NOT EXISTS in SQL to compare tables and find missing records.
Location: Databases | SQL Server
Formatting File Sizes Dynamically in C#.NET (Bytes to KB, MB, GB)
How to convert raw byte values from databases or file systems into human-readable formats (KB, MB, GB) in C#.NET and ASP.NET.
Location: ASP.NET | C#