using SQL stored procedures in KEPServer datalogger
Hello community,
I started playing around with KEPServerEX recently (latest release: 6.16).
Datalogger is super simple to configure for basic purposes. Now, I am trying to do some advanced escenarios where data needs to be saved using a stored procedure. Is this possible to accomplish?
Before stored procedures, I tried using a dummy SQL view (MSSSQL) with a "INSTEAD OF INSERT" trigger in order to mock the idea to write to a single table but that SQL trigger view is not being fired through Datalogger...
The purpose of all this is to have a single Log Group that writes to different tables based on a condition that I define. A simple example that passes information to a SP would be:
@action=10, @p1="Hello" -> would write to table "Table1".
@action=15, @p1="World" -> would write to table "Table2".
Cheers,

