03-10-2016 09:26 AM - edited 03-01-2019 09:20 AM
I'm looking to pull information from the logs on anything that was "modified" or "changed" in the last month and put it to a flat file so I have this information for our year end auditing. We have just upgraded to 6.2. Any help would be appreciated - thanks
03-10-2016 09:32 AM
We have this issue as well, looking forward to responses. Thank you.
03-15-2016 06:32 AM
Hi all,
Here's a simple query against the Admiral database: msglog and jobmst tables, and please feel free to make any adjustments to fit your reporting needs.
SELECT jobmst.jobmst_prntname, jobmst.jobmst_name, msglog.* FROM msglog
JOIN jobmst ON jobmst.jobmst_id = msglog.jobmst_id
WHERE msglog_text LIKE '%modified%'
AND msglog_crtdt <= getdate()-30 -- looks back 30 days
ORDER BY msglog_crtdt
Regards,
Derrick Au
03-16-2016 07:42 AM
Thank you - that worked.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide