Curious if anyone would know the the correct syntax for the below statement to show all event id's. The way I've written it below it only shows 540 (logon's), is there way for me to use the below code to show ALL event ID's?
"select
date,time,evtid,status,username,ip from
\\myserver\logs\logfile.csv where ip is not
null order by date, time, evtid, status, username, ip asc
if I use the "select * statement i'm unable to use the "group by" or "order by" clause because they do not match what is in the "select" clause. Is there a way around this?