How can I track when data is exported from an instance?

ners
Giga Contributor

Hi,

Is there any way to track if a user is exporting data from an instance? The transaction logs give me lots of information but I'm struggling to pinpoint when the function of exporting to .csv, .xls or pdf is happening.

Appreciate any help...

1 ACCEPTED SOLUTION

Albert13
Kilo Sage

You can look in the event logs, sysevent table.  The event name is attachment.read, Param1 will tell you the file name and filter Param2 to sys_poll.  After that if you'really curious you can use the created and created by to match against the sys_attachment table to get the file.

 

 

find_real_file.png

View solution in original post

2 REPLIES 2

Albert13
Kilo Sage

You can look in the event logs, sysevent table.  The event name is attachment.read, Param1 will tell you the file name and filter Param2 to sys_poll.  After that if you'really curious you can use the created and created by to match against the sys_attachment table to get the file.

 

 

find_real_file.png

ners
Giga Contributor

Thanks Albert,

That's worked perfectly for what I need