2014-05-30

Guitar - Guitar effects processor (pedal) to amp, 4-cable method


  1. Cable 1: Guitar's output -> Pedal's* input
  2. Cable 2: Pedal's output -> Amp's return
  3. Cable 3: Pedal's loop send -> Amp's input
  4. Cable 4: Pedal's loop return -> Amp's loop send


* Pedal: Guitar Effects Processor.
** Guitar effects processor (pedal) to amp, four-cable method.

Windows - wmic is not recognized as an internal or external command

This error was preventing SQL Server 2012 Data Quality Services (DQS) from installing/setting up on my Windows 7 computer.

All you have to do is add this to your environmental variable PATH: C:\Windows\System32\wbem.

PATH=C:\Windows\System32\wbem;etc...

2014-05-27

TSQL - Current connections

SELECT
       *
FROM
       sys.dm_exec_connections
;