Quickly Remove USB Drive
Instead of opening the Safely Remove Hardware Window and stop USB devices, you can just go to your system tray and look for the...
How to Shutdown PC Remotely
Using the Windows Command Shutdown.Exe, you can turn off your PC remotely. Here's the syntax for shutdown.exe;
Usage: shutdown
No...
How to Fix Chain Linkage Mismatch Errors
To fix "Chain Linkage Mismatch" error, execute this script in your Query Analyzer;
Use DBName
GO
ALTER DATABASE database_name SET SINGLE_USER
GO
DBCC CHECKDB('DBName', REPAIR_REBUILD)
GO
After the repair, you have...
How to attach a database without the MDF file.
1: Make a new database with same name, and which uses the same files as the old one on the new server.
2: Stop SQL...