My Pick for 2018 Best App to Download Videos from Any Website

First off, let me say that I'm never paid to promote anything, so what I say is the gospel according to Rick. Sometimes I join an affiliate program so that maybe someday I'll see some green, but so far, I haven't seen a dime so please, know that you can rely on what I'm telling you. Now... I've had a love-hate relationship with my pick for the 2018 Best App For Downloading VIdeos from Websites and it is...

Obtain an Exclusive Lock to Rename a SQL Server Database

Tested on: SQL Server 2016 Developer Edition Accurate as of: January, 2018Use this script to rename a database when the SQL Server database could not be exclusively locked to perform the operation. [code language="sql"] -- First, set the database to single user mode ALTER DATABASE CodeSnippets SET SINGLE_USER WITH ROLLBACK IMMEDIATE -- Now we will … Continue reading Obtain an Exclusive Lock to Rename a SQL Server Database

SQL Server Admin: Identifying Active Transactions

Tested on: SQL Server 2016 Developer Edition Accurate as of: January, 2018One way to identify active tractions, is using DBCC OPENTRAN. DBCC OPENTRAN helps to identify active transactions that may be preventing log truncation. DBCC OPENTRAN displays information about the oldest active transaction and the oldest distributed and nondistributed replicated transactions, if any, within the … Continue reading SQL Server Admin: Identifying Active Transactions