Created
October 14, 2013 16:25
-
-
Save anonymous/6978291 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sessions: | |
Load | |
... | |
upper([Authenticated user]) AS [Authenticated user], | |
... | |
FROM $(LogPath)\SESSIONS*.LOG (utf8, txt, delimiter is '\t', embedded labels); | |
LEFT JOIN (Sessions) | |
LOAD | |
'AUSTRIA\' & upper(NT_USER) AS [Authenticated user], | |
// Vorname & '|' & Nachname as Full_Name | |
trim(upper(Vorname)) & ' | ' & trim(upper(Nachname)) as Full_Name | |
FROM | |
QVD\VWL_User.qvd | |
(qvd); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment