Questions tagged [intersystems-iris]

InterSystems IRIS is a complete cloud-first data platform which includes a multi-model transactional data management engine, an application development platform, and interoperability engine, and an open analytics platform.

InterSystems IRIS provides a set of APIs to operate with transactional persistent data simultaneously: key-value, relational, object, document, multidimensional. Data can be managed by SQL, Java, node.js, .NET, C++, Python, and native server-side ObjectScript language. InterSystems IRIS includes Interoperability engine and modules to build AI solutions. InterSystems IRIS provides features for horizontal scalability (sharding, ECP) and provides High Availability features, Business intelligence, transaction support, and backup.
It is commercial software but with Free Community version which could be downloaded from: https://download.intersystems.com

Official website: https://www.intersystems.com/products/intersystems-iris/

Developers Community: https://community.intersystems.com/?filter=articles

App Store: https://openexchange.intersystems.com/

42 questions
0
votes
1 answer

How to correctly execute a query that contains a procedure and has no return in Objectscript/Intersystems IRIS

I am trying to execute a stored procedure from my Operation, the way I have the most satisfatory result was by the following call: Set tResult = ##Class(EnsLib.SQL.GatewayResultSet).%New() Set tQuery = "EXEC MY_PROC @name = 'Jhon', @profession =…
0
votes
1 answer

%ALL namespace is not appearing in available namespace list

I have created %ALL namespace to map with two existing namespaces to use class globally but I am not able to select %ALL namespace as it is not appearing in the available namespace list. How to create objects in %ALL namespace? Thanks
0
votes
1 answer

Web Terminal is not appearing in management portal

I am running IRIS from docker container and I am not getting Web Terminal Option in management portal. What to do for Web Terminal to be appear in management portal? Thanks
0
votes
1 answer

What is the difference between $Increment and $Sequence functions?

What is the difference between $Increment and $Sequence functions and when to use one over the other? Thanks
0
votes
0 answers

How can we pass X509 Certificate upon calling FHIR API?

We need to pass X509 Certificate while calling FHIR API. How can we achieve the desired ? Thanks
0
votes
1 answer

How to delete class from cache upon deleting from visual studio?

I have created new class in VSCode and upon saving it also saved in Cache DB but when I am deleting from VSCode it is not deleting from Cashe DB. How can I remove both class together? Thanks
0
votes
1 answer

What is the use of class date/time property

What is the difference of class normal and date/time property and how to use in the script and what is the use of MINVAL and MAXVAL parameters? Thanks
user15581360
0
votes
1 answer

Does InterSystems IRIS support one-to-one relationships?

Does InterSystems IRIS support one-to-one relationships in the object model? I referred to the documentation, but it says only something about one-to-many and parent-child relationship types.
Evgeny Shvarov
  • 468
  • 5
  • 17
0
votes
1 answer

Splitting an IRIS db to multiple drives

I'm looking for a way to have an IRIS db distributed over several (hw) drives. Without touching the internal data structures (e.g. mapping) ! Are there any options in file systems to achieve this "splitting" or "appending" ?
0
votes
1 answer

Passing params to function in global, INTERSYSTEM CACHE

I have a problem. I can't find a way to pass parameters to the function, inside teh Global: set ^SERIES(1)="Nombre de Serie#Humor#10#Do ResultadoSerie^KDAobjetos(respuesta)" ..... CargaMenu1 ; New Sql,Statement,status,resultSet,resultado,mensaje Set…
DMM
  • 11
  • 1
0
votes
2 answers

How can we stop journalling on InterSystems IRIS instance?

Doing DISABLE^%NOJRN pauses journalling for the process. I need to stop/pause journalling for the whole instance. Is it possible?
Evgeny Shvarov
  • 468
  • 5
  • 17
0
votes
1 answer

InterSystems Cache: How to store macro name in a variable then evaluate it

How can I store a macro name in a variable and then later use it? For example: Set myVariable = "AssertEquals" Do $$$myVariable(...) OR Set myVariable = "$$$AssertEquals" Do myVariable(...) Thought I could do something like the following but…
1 2
3