User-1919799416 posted
Is there any way to compare two csv files with LogParser and save the results to a new csv?
I found this code for comparing of data from one CSV exists in another, but how would I check if the data is different?
SELECT
SamAccountName,
LastLogonTimeStamp,
WhenCreated,
PasswordNeverExpires,
AccountExpires,
Description
INTO
finalnew.csv
FROM
new.csv
WHERE
SamAccountName NOT IN
(SELECT SamAccountName
FROM master.csv)