You can check the process running for each namespace and the CPU time:

And using de PID you can identify in your Operative System (Windows or Linux) the process to check the memory used.

Have you tried to merge the pdf using Embedded Python? In IRIS 2023 is already available, you only require to install the pypdf library in your instance to use it.

You can find an example of pdf merge using python here.

Maybe the error is on the declaration of the table, use the parameter NODELIMITEDIDS for the declaration:

CREATE FOREIGN SERVERserver-name FOREIGN DATA WRAPPER jdbc CONNECTION'mysqlconnection' NODELIMITEDIDS

This is a personal opinion but I think that it means that the restoring of the journal didn't affect all the databases of the system located in different folders.

Hi @Martin Staudigel you only can include DTD in the XSD if you define it using specific flags.

The solution is to create a new class to import the schema in XSD programatically. This is an example of the code:

Class XML.SchemaReader Extends%Persistent

{
ClassMethod ImportClasses(fileName As%String = "C:\Temp\example.xsd") As%Status
{
#include %occInclude
#include %occSAX#dim sReader as%XML.Utils.SchemaReader = ##class(%XML.Utils.SchemaReader).%New()
		#dim features as Filero.DataType.String
		set sReader.SAXFlags = $$$SAXFULLDEFAULT-$$$SAXVALIDATIONREUSEGRAMMARset sReader.MakePersistent = 0set sReader.MakeRelationships = 0set sReader.GenerateXMLNILNOOBJECT = 1set sReader.GenerateXMLNIL = 1set sReader.KeepEmptyClasses = 1set features("BINARYASSTREAM") = 1quit sReader.Process(fileName,"ImportedScheme",.features)
}
}

This code will create a package "ImportedScheme" in your IRIS

As the creator of the idea, you have all my support! The localized versions are really confusing with literal translations that have no sense.

If you execute the bat file from the command line of Windows...does it work? Maybe the PATH to the java bin folder is not accessible from the Ensemble user.

Try removing the Tiempo de espera and... Could you show the popup when you click on the magnifying glass of Llamadas? Just to be sure that it had correctly detected the calls.

Try to put together all the calls followed by the sync, all of them inside the scope and at the end, after the sync, the catchall.

The problem with web applications is that sometimes the behaviour is a bit "stange", it's possible that the DTL page would be cached on explorer's memory and this makes it to work with errors.

Record Map is used to parse rows from CSV files into Objectscript objects, you can use DTLs or by code directly to get the fields from the HL7 message and save into a string variable. Something like:

set myString = request.GetValueAt("PID:3.4.1")

In this case request is an Enslib.HL7.Message variable.