You can use External data sources for this. There is an example in the topic. The difference is that in your case you need to add a stored procedure definition (see the attached screenshot).
To execute the stored procedure you can use the following script:
Marius Gidu, the view is created on SQL level. For example, in MS SQL
Code
CREATE VIEW view_name AS
SELECT table.id, table.value, ...
FROM some_table table
The table with precalculated data is an ordinary SQL table where you can update data that you can calculate when in the source table some changes are made.
The rest is done same as in the example .
Hope, this helps.
Pages:1
Users browsing this topic (guests: 4, registered: 0, hidden: 0)