This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
body {background-color: #EEE;} | |
.emubox { | |
border: 3px solid green; | |
padding: 10px; | |
} | |
.container{ |
This file contains 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
select distinct event_data.StrValue | |
from (select distinct event.EventID | |
from event inner join viewevents.dbo.event_data | |
on event_data.EventID = ViewEvents.dbo.event.EventID | |
where EventType = 'BROKER_USERLOGGEDIN' and | |
Time >= '2017-05-01' and | |
event_data.StrValue NOT LIKE '10.%' and | |
event_data.StrValue NOT LIKE '172.1%' and | |
event_data.StrValue NOT LIKE '192.168.%' and | |
and event_data.Name = 'ClientIPAddress') t inner join ViewEvents.dbo.event_data on t.EventID = ViewEvents.dbo.event_data.EventID |