you still need CSP.ini and CSP.conf, right?
- Log in to post comments
you still need CSP.ini and CSP.conf, right?
From InterSystems Ensemble you can also use the Java Gateway:
http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY…
Try reading this post. It might help.
https://community.intersystems.com/post/tips-tricks-sql-excel
I can reproduce. Like someone said before, I get one message going from the business service to the MPI manager and then a second one, exactly the same, from the MPI manager to the HSPI operation. Nothing strange.
I came up with this using the SAMPLES database:
SELECT Description, TicketsSold, Total, (TicketsSold/Total) as Percentage FROM
(
SELECT TOP 15 Description, TicketsSold, SUM(TicketsSold) as Total
FROM Cinema.Film
ORDER BY TicketsSold DESC
)
Of course, Security has to be taken into account !