go to post Luis Angel Pére... · Jan 10, 2024 Take a look to this answer to a similar question: https://community.intersystems.com/post/using-ssh-connect-iris#comment-1...
go to post Luis Angel Pére... · Jan 8, 2024 Have you tried to import the project into a version lower than 2018.1.4? Maybe the gap between 2012 and 2018 is too large in compatibility terms.
go to post Luis Angel Pére... · Jan 8, 2024 Have you checked Open Exchange? https://openexchange.intersystems.com/?search=cache%20log&sort=r
go to post Luis Angel Pére... · Jan 5, 2024 That rings me a bell with something similar that happened to a customer, but in his case was a jdbc connection to a SQL server database configured with the stay connected to -1. The database closed the connection and IRIS received a similar error.
go to post Luis Angel Pére... · Jan 5, 2024 And about SELECT queries: What can I say? IRIS defeats all of them!
go to post Luis Angel Pére... · Jan 5, 2024 I've created a new branch on GitHub project to include Oracle tests...I'm not going to merge it to the main branch because Oracle docker image consumes a lot of memory and requires to modify the Docker Desktop configuration, but if anyone is interested on it here is the branch published: https://github.com/intersystems-ib/workshop-py-performance/tree/oracle Here is the comparative graph with Oracle included: As you can see IRIS and Oracle are equivalents in terms of performance.
go to post Luis Angel Pére... · Jan 3, 2024 Objectscript variables are not accessible from JavaScript, objectscript is executed on the server and JavaScript is executed on the client. My suggestion is, create a hidden html table from objectscript and read the values using JavaScript to create the array for the graph.
go to post Luis Angel Pére... · Jan 2, 2024 As a history student, I love this one: https://www.theguardian.com/science/2023/oct/12/researchers-use-ai-to-re...
go to post Luis Angel Pére... · Jan 2, 2024 You can see the language of the article in the upper left side of the window, click on it and a list of language will be deployed, select the language to translate the article and a new window will be shown with 2 options, translate and request translate, select the first and you will be able to translate the article.
go to post Luis Angel Pére... · Dec 27, 2023 Log compression? I don't recall that the logs are compressed, I know that Journals are compressed since 2022.1 and streams can be compressed too, but I don't know anything about log compression. Someone to enlighten us?
go to post Luis Angel Pére... · Dec 22, 2023 Well, I did something similar to create a Firebase connector, I created my own inbound adapter and define a business services to use it, after that I configured the interval in the business service and that's all! You can review the article that I wrote about it: https://community.intersystems.com/post/connecting-intersystems-iris-and... For your case the interval would be 86400 seconds to execute the inbound adapter task once each day. If you have any doubt don't hesitate to ask me.
go to post Luis Angel Pére... · Dec 22, 2023 Check this page: https://www.baeldung.com/ops/root-user-password-docker-container#2-using...
go to post Luis Angel Pére... · Dec 21, 2023 Have you checked ^LOCKTAB utility? https://docs.intersystems.com/iris20233/csp/docbook/DocBook.UI.Page.cls?...
go to post Luis Angel Pére... · Dec 14, 2023 Permissions must not be assigned automatically to the users when you create the FHIR server, it doesn't make sense to allow any user to access and modify the data from the server. You can create an specific role for FHIR access and assign it to the specific users.
go to post Luis Angel Pére... · Dec 12, 2023 Please, review your iris.key file and look for under ISC.IAM section the license_expiration_date info, if it's expired you have to open a case to WRC requesting a new Kong license as @Enrico Parisi said
go to post Luis Angel Pére... · Dec 12, 2023 Yeah, probably is your best option. Anyway, I think that you could add the pieces of the base64 field as values of the Base64EncodedFile list removing the (1) in my code: Do stream.Rewind() While (stream.AtEnd = 0) { // Not sure about the len Set len = 3641144 do target.SetValueAt(stream.Read(.len), "LetterAttachment(1).Base64EncodedFile", "append") } The problem of this is that you couldn't include more documents attached because all the list would belong to just one document.
go to post Luis Angel Pére... · Dec 12, 2023 I was reviewing the documentation and I think that the only option available is to split your base64 by the MAXSTRING limit and append all the pieces that you get using SetValueAt defining the action as append: method SetValueAt(pValue As %String, pPropertyPath As %String, pAction As %String = "set", pKey As %String = "") as %Status It could be something like: Do stream.Rewind() While (stream.AtEnd = 0) { // Not sure about the len Set len = 3641144 do target.SetValueAt(stream.Read(.len), "LetterAttachment(1).Base64EncodedFile(1)", "append") }