Reputation: 565
I need to export Admin Alerts from DNN's database.
Which table contains this?
Upvotes: 1
Views: 848
Reputation: 21
All the logs for DNN are placed in EventLog table, you need to run a direct database query to access eventlog records
Upvotes: 2
Reputation: 35514
It is the table EventLog
. But keep in mind that since DNN 7 (I think) the logs are automatically removed. In earlier versions the default settings would be to keep all log items, so the table EventLog would sometimes contain millions of records.
So if you want to keep certain logitems for export you need to modify the settings in "Admin > Log Viewer > Edit Log Settings". You'll see a row of log types. You can edit the one you need to change the settings.
Upvotes: 1