You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Queries/TeraCopy_Windows.sql

18 lines
467 B
SQL

-- https://www.stark4n6.com/2018/11/teracopy-forensic-analysis-part-1.html
-- https://www.stark4n6.com/2018/11/teracopy-forensic-analysis-part-2.html
SELECT
name, -- dB stored at C:\Users\<USERNAME>\AppData\Roaming\Teracopy\History
datetime(julianday(started)) AS OP_START,
CASE operation
WHEN 1 THEN 'Copy'
WHEN 2 THEN 'Move'
WHEN 3 THEN 'Test'
WHEN 6 THEN 'Delete'
END AS OP_TYPE,
source,
target,
files,
size
FROM List
ORDER BY OP_START