go to post Jose Ruperez · Apr 19, 2017 From InterSystems Ensemble you can also use the Java Gateway:http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...
go to post Jose Ruperez · Nov 2, 2016 Try reading this post. It might help.https://community.intersystems.com/post/tips-tricks-sql-excel
go to post Jose Ruperez · Oct 13, 2016 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.
go to post Jose Ruperez · Oct 12, 2016 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.FilmORDER BY TicketsSold DESC)